:root {
  --primary: #1f7a8c;
  --bg: #eef7f8;
  --ink: #0c2a30;
  --accent: #f4a259;
  --paper: #ffffff;
  --line: #bde0e5;
  --mute: #3a636d;
  --teal-lt: #e0f3f6;
  --r: 14px;
  --display: 'Rubik', system-ui, sans-serif;
  --body: 'Rubik', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1160px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); line-height: 1.08; }
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; }
h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 700; }
h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
p { color: var(--mute); }
.lead { font-size: clamp(15px, 1.4vw, 18px); color: var(--mute); max-width: 46ch; }

.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.eyebrow--teal { color: var(--primary); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(238, 247, 248, .93); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 19px; }
.brand__wave { color: var(--primary); font-size: 20px; }
.nav__links { display: flex; gap: 22px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 8px; transition: transform .15s, opacity .15s; }
.btn:hover { transform: translateY(-2px); opacity: .9; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--primary { background: var(--primary); }
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: var(--teal-lt); opacity: 1; }
.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }

/* HERO */
.hero { padding-top: clamp(40px, 5vw, 64px); }
.hero__gallery { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: stretch; }
.gallery-main { position: relative; }
.gallery-main img { width: 100%; height: clamp(300px, 38vw, 460px); object-fit: cover; border-radius: var(--r); display: block; }
.gallery-badge { position: absolute; top: 18px; left: 18px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px; letter-spacing: .04em; }
.gallery-side { display: flex; flex-direction: column; gap: 14px; min-width: 180px; }
.gallery-stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.gallery-stat strong { font-family: var(--display); font-size: 24px; font-weight: 800; color: var(--primary); display: block; margin-bottom: 4px; }
.gallery-stat span { font-size: 12.5px; color: var(--mute); }
.hero__text { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; padding: clamp(28px, 4vw, 48px) 0; }
.hero__left .eyebrow { margin-bottom: 10px; }
.hero__right { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

/* PICKUP */
.pickup { background: var(--ink); padding: clamp(52px, 6vw, 80px) 0; }
.pickup__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.pickup__text h2 { color: #fff; margin-bottom: 16px; }
.pickup__text .lead { color: rgba(255,255,255,.68); margin-bottom: 28px; }
.pickup__text .eyebrow--teal { color: var(--accent); }
.pickup__steps { display: flex; flex-direction: column; gap: 14px; }
.ps { display: flex; align-items: flex-start; gap: 14px; }
.ps__n { background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 9px; border-radius: 6px; white-space: nowrap; }
.ps__t { font-size: 14px; color: rgba(255,255,255,.7); }
.pickup__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.pickup-card__head { font-size: 18px; font-weight: 700; color: #fff; }
.pickup__card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pickup__card li { font-size: 14px; color: rgba(255,255,255,.7); padding-left: 18px; position: relative; }
.pickup__card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pickup .btn--primary { background: var(--accent); color: var(--ink); }

/* SECTION */
.section { padding: clamp(52px, 6vw, 80px) 0; }
.section--light { background: var(--paper); }
.section__head { max-width: 52ch; margin-bottom: 36px; }
.section__head p { margin-top: 10px; }

/* TYPES */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.type-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; min-height: 200px; }
.type-card--accent { background: var(--primary); border-color: var(--primary); }
.type-card--accent h3 { color: #fff; }
.type-card--accent p { color: rgba(255,255,255,.75); }
.type-card p { font-size: 14px; flex: 1; margin-top: 6px; }
.type-badge { align-self: flex-start; margin-top: 14px; background: rgba(31, 122, 140, .1); color: var(--primary); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.type-badge--light { background: rgba(255,255,255,.2); color: #fff; }

/* PROCESS */
.process { background: var(--teal-lt); padding: clamp(52px, 6vw, 80px) 0; }
.process__wrap h2 { margin-bottom: 36px; }
.process__row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: start; }
.p-stage { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.p-stage__icon { font-size: 28px; margin-bottom: 12px; }
.p-stage p { font-size: 13.5px; margin-top: 6px; }
.p-stage__arrow { color: var(--primary); font-size: 22px; font-weight: 700; display: flex; align-items: center; padding-top: 28px; }

/* PRICE TABLE */
.price-table { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.price-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row--head { background: var(--primary); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .05em; }
.price-row--head span { color: #fff; }
.price-row:not(.price-row--head):not(.price-row--note) span:first-child { color: var(--ink); font-weight: 500; }
.price-row:not(.price-row--head) span { font-size: 14.5px; color: var(--mute); }
.price-row:not(.price-row--head) span:nth-child(2) { color: var(--primary); font-weight: 700; }
.price-row--note { background: rgba(31,122,140,.06); }
.price-row--note span:first-child { color: var(--mute); font-size: 13px; }
.price-row--note span:nth-child(2) { color: var(--primary); font-weight: 700; }

/* CONTACT */
.contact { padding: clamp(52px, 6vw, 80px) 0; }
.contact__panel { background: linear-gradient(135deg, var(--primary) 0%, #0d5a68 100%); border-radius: calc(var(--r) + 8px); padding: clamp(32px, 4vw, 52px); display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.contact__panel h2 { color: #fff; margin-bottom: 12px; }
.contact__panel p { color: rgba(255,255,255,.75); margin-bottom: 6px; }
.contact__detail { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9) !important; }
.contact__actions { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }

/* FOOTER */
.foot { background: var(--ink); color: rgba(255,255,255,.55); padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

@media (max-width: 900px) {
  .hero__gallery { grid-template-columns: 1fr; }
  .gallery-side { flex-direction: row; }
  .hero__text { grid-template-columns: 1fr; }
  .pickup__inner { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .process__row { grid-template-columns: 1fr 1fr; }
  .p-stage__arrow { display: none; }
  .nav__links { display: none; }
  .contact__panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .types-grid { grid-template-columns: 1fr; }
  .gallery-side { flex-direction: column; }
  .process__row { grid-template-columns: 1fr; }
  .contact__actions { flex-direction: row; flex-wrap: wrap; }
}
