/* ============================================================
   Waterfront Unlimited — design system (light / premium / warm-amber)
   Type: DM Serif Display + DM Sans
   Palette keyed to logo: amber #FFAC00 / gold #FFCA06 / sand #FFE18D
   Signature: the logo's three-band wave mark, reused as an accent
   ============================================================ */

:root {
  --ink:        #1C160E;   /* deep warm espresso text */
  --ink-soft:   #5A5043;   /* muted body */
  --canvas:     #FCFAF6;   /* near-white warm paper */
  --paper:      #FFFFFF;
  --sand:       #F5ECDD;   /* light warm fill */
  --sand-2:     #E7DAC4;   /* divider / border */
  --sand-3:     #EFE4D2;   /* footer fill */

  --amber:      #F2A007;
  --amber-deep: #C97A06;
  --gold:       #FBC02D;
  --sand-band:  #FFE18D;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 6px;

  --f-display: "DM Serif Display", Georgia, serif;
  --f-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(28,22,14,.05), 0 6px 18px -8px rgba(28,22,14,.14);
  --shadow-md: 0 18px 50px -16px rgba(28,22,14,.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body); color: var(--ink); background: var(--canvas);
  line-height: 1.62; font-size: 17px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 1.07; letter-spacing: -.01em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---- wave-mark accent (the real logo mark) ---- */
.eyebrow {
  font-family: var(--f-body); font-weight: 600; font-size: 12.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--amber-deep);
  display: inline-flex; align-items: center; gap: 11px;
}
.strata { height: 22px; width: auto; flex: none; display: block; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-body);
  font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: var(--sand-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-deep); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(252,250,246,.88);
  backdrop-filter: saturate(150%) blur(10px); border-bottom: 1px solid var(--sand-2);
}
.nav { display: flex; align-items: center; gap: 28px; height: 80px; }
.nav__logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav__logo img { height: 38px; width: auto; max-width: none; object-fit: contain; }
.nav__menu { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.nav__link { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); padding: 8px 0; }
.nav__link:hover { color: var(--ink); }
.has-drop { position: relative; }
.has-drop > .nav__link::after { content: "›"; margin-left: 5px; display: inline-block; transform: rotate(90deg); font-size: 12px; opacity: .55; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--paper); border: 1px solid var(--sand-2); border-radius: 10px;
  box-shadow: var(--shadow-md); padding: 10px; min-width: 250px; opacity: 0; visibility: hidden;
  transition: .18s ease; display: grid; gap: 2px;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { font-size: 14px; padding: 9px 12px; border-radius: 6px; color: var(--ink-soft); }
.drop a:hover { background: var(--sand); color: var(--ink); }
.nav__cta { margin-left: 2px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; margin-left: auto; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }
.mnav { display: none; }

/* =========================================================
   HERO — full-bleed photo, text overlaid
   ========================================================= */
.hero { position: relative; isolation: isolate; min-height: clamp(560px, 82vh, 780px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(16,12,6,.86) 0%, rgba(16,12,6,.46) 38%, rgba(16,12,6,.04) 66%),
    linear-gradient(to right, rgba(16,12,6,.52) 0%, rgba(16,12,6,0) 55%);
}
.hero__inner { width: 100%; padding-block: clamp(46px, 8vw, 86px); }
.hero__text { max-width: 640px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(42px, 7vw, 82px); margin-top: 18px; color: #fff; }
.hero__lead { margin-top: 20px; font-size: clamp(17px, 1.6vw, 20px); color: rgba(255,255,255,.9); max-width: 46ch; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255,255,255,.42); color: #fff; }
.hero .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* =========================================================
   STATS — uniform, aligned row
   ========================================================= */
.stats { background: var(--paper); border-top: 1px solid var(--sand-2); border-bottom: 1px solid var(--sand-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(34px,4vw,52px) clamp(18px,2.5vw,34px); border-left: 1px solid var(--sand-2); }
.stat:first-child { border-left: 0; }
.stat__n { font-family: var(--f-display); font-size: clamp(38px, 4vw, 52px); line-height: 1; color: var(--amber-deep); }
.stat__l { margin-top: 14px; font-size: 14px; color: var(--ink-soft); min-height: 3em; line-height: 1.45; }

/* =========================================================
   SECTION scaffolding
   ========================================================= */
.section { padding-block: clamp(64px, 9vw, 116px); }
.section--sand { background: var(--sand); }
.section__head { max-width: 62ch; margin-bottom: clamp(34px,5vw,52px); }
.section__head h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 16px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.lead { color: var(--ink-soft); font-size: 18px; margin-top: 16px; max-width: 58ch; }

/* services — photo cards */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.svc {
  position: relative; border-radius: 12px; overflow: hidden; min-height: 330px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .2s ease;
}
.svc:hover { transform: translateY(-3px); }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.svc::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,15,8,.86) 0%, rgba(20,15,8,.34) 48%, rgba(20,15,8,.06) 100%); }
.svc__body { position: relative; z-index: 2; padding: 26px; }
.svc__body h3 { font-size: 25px; }
.svc__body p { font-size: 14.5px; color: rgba(255,255,255,.85); margin-top: 6px; }
.svc__more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--gold); transition: gap .18s ease; }
.svc:hover .svc__more { gap: 12px; }

/* trust badges */
.badges { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,24px); }
.badge { padding: 26px; background: var(--paper); border: 1px solid var(--sand-2); border-radius: 10px; }
.badge h3 { font-family: var(--f-body); font-weight: 700; font-size: 16px; }
.badge p { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.badge .strata { margin-bottom: 16px; height: 26px; }

/* featured */
.feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,4vw,56px); align-items: center; }
.feature__media img { border-radius: 12px; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-md); }
.feature__body h2 { font-size: clamp(28px,3.6vw,44px); margin-top: 14px; }
.feature__body p { color: var(--ink-soft); margin-top: 18px; }
.feature__list { margin-top: 22px; display: grid; gap: 12px; }
.feature__list li { list-style: none; padding-left: 28px; position: relative; font-size: 15px; }
.feature__list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 13px; height: 11px;
  background: linear-gradient(var(--amber) 0 30%, transparent 30% 38%, var(--gold) 38% 66%, transparent 66% 74%, var(--sand-band) 74% 100%); }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px,2.5vw,26px); }
.quote { background: var(--paper); border: 1px solid var(--sand-2); border-radius: 12px; padding: 30px; display: flex; flex-direction: column; }
.quote__mark { font-family: var(--f-display); font-size: 54px; color: var(--gold); line-height: .5; height: 26px; }
.quote p { font-size: 16px; color: var(--ink); }
.quote__by { margin-top: auto; padding-top: 20px; font-size: 14px; }
.quote__by b { display: block; }
.quote__by span { color: var(--ink-soft); }

/* expectations */
.expect { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(20px,3vw,42px) clamp(28px,5vw,72px); }
.expect__item { border-top: 2px solid var(--ink); padding-top: 18px; }
.expect__item h3 { font-family: var(--f-body); font-weight: 700; font-size: 18px; }
.expect__item p { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }

/* service areas */
.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px;
  background: var(--paper); border: 1px solid var(--sand-2); border-radius: 10px;
  font-family: var(--f-display); font-size: 21px; transition: .18s ease; }
.area span { font-family: var(--f-body); font-size: 13px; font-weight: 600; color: var(--amber-deep); }
.area:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--sand-2); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-family: var(--f-display); font-size: 20px; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--amber-deep); font-family: var(--f-body); font-weight: 600; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 22px; color: var(--ink-soft); }

/* CTA band — light */
.cta-band { background: var(--sand); }
.cta-band__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta-band h2 { font-size: clamp(30px,4.2vw,48px); margin-top: 14px; max-width: 18ch; }
.cta-band p { color: var(--ink-soft); margin-top: 16px; max-width: 42ch; }
.form-ph { background: var(--paper); border: 1px dashed var(--sand-2); border-radius: 12px; padding: 30px; color: var(--ink-soft); font-size: 14px; }
.form-ph b { color: var(--amber-deep); display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

/* =========================================================
   FOOTER — light
   ========================================================= */
.footer { background: var(--sand-3); color: var(--ink-soft); border-top: 1px solid var(--sand-2); padding-block: clamp(48px,7vw,80px) 26px; }
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--amber-deep); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(24px,4vw,48px); }
.footer__logo { height: 34px; width: auto; max-width: none; object-fit: contain; }
.footer__about { margin-top: 18px; font-size: 14px; max-width: 36ch; }
.footer h4 { font-family: var(--f-body); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; font-size: 14px; }
.footer__nap { font-size: 14px; display: grid; gap: 8px; }
.footer__nap b { color: var(--ink); font-weight: 600; }
.footer__map { margin-top: 14px; border-radius: 10px; overflow: hidden; border: 1px solid var(--sand-2); }
.footer__map iframe { width: 100%; height: 175px; border: 0; display: block; }
.footer__sister { grid-column: 1 / -1; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--sand-2); font-size: 14px; }
.footer__bottom { grid-column: 1/-1; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--sand-2); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-soft); }
.footer__bottom a { margin-left: 18px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .feature { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .areas { grid-template-columns: repeat(2,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--sand-2); }
}
@media (max-width: 760px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__logo img { height: 32px; }
  .svc-grid, .badges, .quotes, .expect, .areas { grid-template-columns: 1fr; }
  .svc { min-height: 260px; }
  .mnav.open { display: block; background: var(--canvas); border-bottom: 1px solid var(--sand-2); padding: 12px var(--gutter) 22px; }
  .mnav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--sand-2); font-size: 16px; color: var(--ink); }
  .mnav .btn { margin-top: 16px; width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; transition: none !important; } }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
