/* ============================================================
   ChemE Construction Inc. — site styles
   Design tokens derived from the Claude Design source.
   ============================================================ */

:root {
  --navy:      #15243B;
  --navy-2:    #1E3252;
  --navy-line: #2A3D58;
  --ink:       #1B2430;
  --ink-2:     #28323F;
  --orange:    #DB7A2C;
  --orange-dk: #C2691F;
  --orange-lt: #F0B47A;
  --cream:     #FBFAF7;
  --sand:      #F4EFE6;
  --sand-2:    #F0EBE2;
  --line:      #E9E5DC;
  --line-2:    #E5E2DB;
  --muted:     #5A6573;
  --muted-2:   #46505E;
  --gold:      #9A8C72;
  --gold-2:    #B07B3A;
  --green:     #1F8A5B;

  --sans: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif:'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1200px;
  --shadow-card: 0 10px 28px rgba(21,36,59,0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); }

.wrap        { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap--1080  { max-width: 1080px; }
.wrap--1100  { max-width: 1100px; }
.wrap--980   { max-width: 980px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}
.eyebrow--orange { color: var(--orange); }
.eyebrow--sand   { color: var(--gold); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; line-height: 1;
  padding: 15px 26px; border-radius: 9px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s, transform .15s, box-shadow .15s;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(219,122,44,0.3); }
.btn--primary:hover { background: var(--orange-dk); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); }
.btn--outline-dark { background: #fff; color: var(--navy); border-color: #D7D2C7; }
.btn--outline-dark:hover { border-color: var(--navy); }
.btn--outline-light { background: transparent; color: #fff; border-color: #3A4D69; }
.btn--outline-light:hover { border-color: #fff; }
.btn--block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; font-family: var(--sans); }

.topbar { background: var(--navy); color: #C9D2E0; font-size: 13px; letter-spacing: 0.01em; }
.topbar__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar__areas { display: inline-flex; align-items: center; gap: 8px; }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; }
.topbar__right { display: inline-flex; align-items: center; gap: 20px; }
.topbar__right .nowrap { white-space: nowrap; }
.topbar a { color: #C9D2E0; text-decoration: none; }
.topbar a:hover { color: #fff; }

.masthead { background: #fff; border-bottom: 1px solid var(--line-2); box-shadow: 0 1px 2px rgba(21,36,59,0.04); }
.masthead__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; gap: 5px; text-decoration: none; }
.brand img { height: 48px; width: auto; display: block; }
.brand__tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; padding-left: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 13px; font-size: 15px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; border-radius: 6px;
}
.nav__link:hover { color: var(--orange); }
.nav__caret { font-size: 10px; opacity: 0.55; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav__link.has-caret.is-active::after { right: 24px; }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 10px;
  box-shadow: 0 16px 40px rgba(21,36,59,0.16); padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .14s, transform .14s, visibility .14s;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  padding: 10px 12px; font-size: 14.5px; color: var(--ink-2);
  text-decoration: none; border-radius: 7px;
}
.dropdown a:hover { background: var(--sand); color: var(--navy); }

.masthead__cta { display: flex; align-items: center; gap: 14px; }
.callbox { display: inline-flex; flex-direction: column; align-items: flex-end; text-decoration: none; line-height: 1.1; }
.callbox__label { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.callbox__num { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); margin-top: 2px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line-2); background: #fff;
  border-radius: 8px; cursor: pointer; color: var(--navy); font-size: 20px;
}

/* mobile panel */
.mobile-nav { display: none; border-top: 1px solid var(--line-2); background: #fff; padding: 10px 18px 18px; }
.mobile-nav.open { display: block; }
.mobile-nav a { text-decoration: none; }
.mobile-nav__top { display: block; padding: 12px 8px; font-size: 16px; font-weight: 600; color: var(--navy); border-bottom: 1px solid #F0EDE6; }
.mobile-nav__group { padding: 12px 8px 6px; font-size: 16px; font-weight: 600; color: var(--navy); }
.mobile-nav__sub { display: block; padding: 8px 8px 8px 22px; font-size: 15px; color: var(--muted); }
.mobile-nav__sub.last { padding-bottom: 14px; border-bottom: 1px solid #F0EDE6; }
.mobile-nav__actions { display: flex; gap: 12px; margin-top: 16px; }
.mobile-nav__actions .btn { flex: 1; padding: 13px; font-size: 15px; }

@media (max-width: 960px) {
  .nav, .masthead__cta, .topbar__areas { display: none !important; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   Generic sections / bands
   ============================================================ */
.band--navy { background: var(--navy); color: #fff; }
.band--sand { background: var(--sand); border-bottom: 1px solid #E9E1D2; }
.band--white { background: #fff; border-top: 1px solid #ECE7DD; border-bottom: 1px solid #ECE7DD; }

.section { padding: 72px 0; }
.section--tight { padding: 56px 0; }

.breadcrumb { font-family: var(--mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: #9A7B45; margin-bottom: 14px; }
.breadcrumb a { color: #9A7B45; text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-dk); }

.page-hero { padding: 60px 0 56px; }
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 52px); line-height: 1.05; font-weight: 600;
  color: var(--navy); margin: 0 0 20px; letter-spacing: -0.01em;
}
.page-hero p { font-size: 18px; line-height: 1.65; color: var(--muted-2); margin: 0; max-width: 720px; }

/* ============================================================
   Home
   ============================================================ */
.hero { max-width: var(--wrap); margin: 0 auto; padding: 72px 24px 64px; }
.hero__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 56px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; background: var(--sand-2);
  border: 1px solid #E4DAC8; border-radius: 30px; padding: 7px 15px; margin-bottom: 24px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; }
.pill span:last-child { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.13em; text-transform: uppercase; color: #8A6B3F; font-weight: 600; }
.hero h1 { font-size: clamp(38px, 5vw, 58px); line-height: 1.05; font-weight: 600; color: var(--navy); margin: 0 0 22px; letter-spacing: -0.01em; }
.hero__lead { font-size: 18px; line-height: 1.65; color: var(--muted-2); margin: 0 0 32px; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.check { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--muted-2); }
.check__tick { color: var(--green); font-weight: 700; }
.hero__media { position: relative; }
.hero__frame { border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(21,36,59,0.18); aspect-ratio: 4/3; }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__card {
  position: absolute; left: -14px; bottom: -22px; background: #fff; border: 1px solid var(--line-2);
  border-radius: 13px; box-shadow: 0 18px 40px rgba(21,36,59,0.16); padding: 16px 20px; max-width: 280px;
}
.hero__card-name { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.hero__card-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; align-items: center; }
.split h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; font-weight: 600; margin: 16px 0 18px; }
.split p { font-size: 16.5px; line-height: 1.7; margin: 0; max-width: 520px; }
.band--navy .split p { color: #C2CCDB; }

.statgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--navy-2); border: 1px solid var(--navy-line); border-radius: 12px; padding: 22px; }
.stat__n { font-family: var(--serif); font-size: 34px; font-weight: 600; color: #fff; }
.stat__l { font-size: 13.5px; color: #9FACC0; margin-top: 4px; }

.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; font-weight: 600; color: var(--navy); margin: 14px 0 0; }
.section-head--center { display: block; text-align: center; }
.link-arrow { font-size: 15px; font-weight: 600; color: var(--orange); text-decoration: none; white-space: nowrap; }
.link-arrow:hover { color: var(--orange-dk); }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.svc-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; padding: 24px; text-decoration: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(21,36,59,0.1); border-color: #DCD4C4; }
.svc-card__num { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 14px; }
.svc-card__name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.svc-card__desc { font-size: 14px; line-height: 1.6; color: var(--muted); flex: 1; }
.svc-card__cta { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-top: 16px; }

.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feat {
  display: block; position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4/3; text-decoration: none;
}
.feat img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.feat:hover img { transform: scale(1.05); }
.feat__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,20,34,0.82) 0%, rgba(12,20,34,0.1) 48%, transparent 70%); }
.feat__body { position: absolute; left: 20px; right: 20px; bottom: 18px; color: #fff; }
.feat__tag { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: 5px; }
.feat__title { display: block; font-family: var(--serif); font-size: 21px; font-weight: 600; }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.trust { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 28px 24px; }
.trust__mark { width: 40px; height: 40px; border-radius: 9px; background: var(--sand-2); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.trust__title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.trust__desc { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* CTA panel */
.cta-panel { background: var(--navy); border-radius: 20px; padding: clamp(36px, 5vw, 64px); }
.cta-panel--split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: center; overflow: hidden; }
.cta-panel--center { text-align: center; }
.cta-panel--sand { background: var(--sand); border: 1px solid #E9E1D2; }
.cta-panel h2 { font-size: clamp(26px, 3.6vw, 42px); line-height: 1.1; font-weight: 600; color: #fff; margin: 14px 0 16px; }
.cta-panel--sand h2 { color: var(--navy); }
.cta-panel p { font-size: 16.5px; line-height: 1.65; color: #C2CCDB; margin: 0; max-width: 520px; }
.cta-panel--center p { margin: 0 auto 28px; }
.cta-panel--sand p { color: var(--muted-2); }
.cta-panel__actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-panel--center .cta-panel__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Services list page
   ============================================================ */
.svc-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px 48px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.svc-row__head { max-width: 300px; }
.svc-row__num { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 10px; }
.svc-row__head h2 { font-size: 25px; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.svc-row__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 600; color: var(--orange); text-decoration: none; }
.svc-row__link:hover { color: var(--orange-dk); }
.svc-row__body { grid-column: span 2; min-width: 0; }
.svc-row__body p { font-size: 16px; line-height: 1.72; color: var(--muted-2); margin: 0; max-width: 660px; }

/* ============================================================
   Gallery index
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.cat {
  display: block; position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 3/4; text-decoration: none;
}
.cat img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.cat:hover img { transform: scale(1.05); }
.cat__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,20,34,0.85), rgba(12,20,34,0.05) 55%); }
.cat__body { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.cat__count { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: 6px; }
.cat__title { display: block; font-family: var(--serif); font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.cat__sub { display: block; font-size: 14px; color: #D4DAE3; }

.note-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px; }
.note-card h2 { font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 10px; }
.note-card p { font-size: 16px; line-height: 1.7; color: var(--muted-2); margin: 0; max-width: 760px; }

/* ============================================================
   Project galleries (bathroom / decks / porches)
   ============================================================ */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip { font-size: 13px; color: #6B5B3D; background: #FBF1E2; border: 1px solid #EAD6B5; border-radius: 20px; padding: 6px 13px; }

.projects { display: flex; flex-direction: column; gap: 40px; }
.project { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(20px, 3vw, 32px); }
.project h2 { font-size: 24px; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.project__desc { font-size: 15.5px; line-height: 1.7; color: var(--muted-2); margin: 0 0 24px; max-width: 780px; }
.project__main { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }

.shot { display: block; padding: 0; border: 0; background: #000; cursor: pointer; position: relative; overflow: hidden; border-radius: 12px; width: 100%; font: inherit; }
.shot--main { aspect-ratio: 4/3; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot__badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; }
.shot__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 11px; background: linear-gradient(to top, rgba(12,20,34,0.8), transparent); color: #fff; font-size: 13px; text-align: left; }

.project__details { margin-top: 20px; }
.project__details-label { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.shot--detail { aspect-ratio: 1/1; border-radius: 10px; }
.shot--detail .shot__cap { padding: 18px 9px 7px; font-size: 11px; line-height: 1.3; }

/* deck SOP panel */
.sop { background: var(--navy); border-radius: 18px; padding: clamp(28px, 4vw, 44px); color: #fff; }
.sop h2 { font-size: clamp(26px, 3.2vw, 34px); font-weight: 600; margin: 14px 0 14px; }
.sop > p { font-size: 16px; line-height: 1.7; color: #C2CCDB; margin: 0 0 26px; max-width: 680px; }
.sop__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.sop__item { display: flex; align-items: flex-start; gap: 11px; background: var(--navy-2); border: 1px solid var(--navy-line); border-radius: 11px; padding: 16px; }
.sop__item .tick { color: var(--orange); font-weight: 700; font-size: 16px; line-height: 1.3; }
.sop__item span:last-child { font-size: 14.5px; line-height: 1.5; color: #E0E7F0; }

/* ============================================================
   About
   ============================================================ */
.motto { background: var(--navy); border-radius: 20px; padding: clamp(36px, 5vw, 56px); text-align: center; }
.motto__quote { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 50px); font-weight: 600; color: #fff; line-height: 1.1; margin: 18px 0 14px; }
.motto__sub { font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: #9FACC0; margin: 0; }

.about-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.about-cols h2 { font-size: 28px; font-weight: 600; color: var(--navy); margin: 14px 0 14px; }
.about-cols p { font-size: 16px; line-height: 1.72; color: var(--muted-2); margin: 0; }

.bio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; align-items: start; }
.bio-grid > p { font-size: 16.5px; line-height: 1.78; color: var(--muted-2); margin: 0; }

.timeline { display: flex; flex-direction: column; }
.tl { display: flex; gap: 18px; }
.tl__rail { display: flex; flex-direction: column; align-items: center; }
.tl__dot { width: 13px; height: 13px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; margin-top: 5px; box-shadow: 0 0 0 4px var(--sand); }
.tl__line { width: 2px; flex: 1; background: #E4DDCE; min-height: 34px; }
.tl__body { padding-bottom: 26px; }
.tl__year { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--orange); }
.tl__title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--navy); margin: 3px 0 4px; }
.tl__desc { font-size: 14px; line-height: 1.55; color: var(--muted); }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.pillar__mark { width: 42px; height: 42px; border-radius: 9px; background: var(--sand-2); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.pillar h3 { font-size: 19px; font-weight: 600; color: var(--navy); margin: 0 0 8px; }
.pillar p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============================================================
   Reviews
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; }
.review__stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--orange); font-size: 18px; }
.review__quote { flex: 1; font-size: 15.5px; line-height: 1.7; color: var(--ink-2); margin: 0; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sand-2); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; }
.review__name { font-size: 14px; font-weight: 600; color: var(--navy); }
.review__where { font-size: 13px; color: var(--muted); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.info-card h2 { font-size: 20px; font-weight: 600; color: var(--navy); margin: 0 0 18px; }
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; text-decoration: none; }
.info-ic { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 10px; background: var(--sand-2); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.info-k { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.info-v { font-size: 16px; color: var(--ink-2); line-height: 1.5; }
.info-v--big { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.info-v--break { word-break: break-word; font-size: 15px; }

.hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.hours-row .d { color: var(--muted); }
.hours-row .t { font-weight: 600; color: var(--navy); }
.hours-row .t.closed { color: #9AA3AF; }
.hours-note { font-family: var(--mono); font-size: 11.5px; color: var(--gold); margin-top: 4px; }

.map-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.map-card iframe { display: block; width: 100%; height: 360px; border: 0; }
.map-card__foot { padding: 18px 22px; border-top: 1px solid #ECE7DD; }
.map-card__foot a { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--orange); text-decoration: none; }
.map-card__foot a:hover { color: var(--orange-dk); }

.contact-links { margin-top: 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.clink { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-radius: 14px; padding: 26px; text-decoration: none; }
.clink--navy { background: var(--navy); color: #fff; }
.clink--navy:hover { background: var(--navy-2); }
.clink--white { background: #fff; border: 1px solid var(--line); color: var(--navy); }
.clink--white:hover { border-color: var(--orange); }
.clink__t { display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.clink__s { display: block; font-size: 14px; margin-top: 4px; }
.clink--navy .clink__s { color: #AEB9CA; }
.clink--white .clink__s { color: var(--muted); }
.clink__arrow { font-size: 22px; }
.clink--white .clink__arrow { color: var(--orange); }

/* ============================================================
   Forms (quote / feedback)
   ============================================================ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 4vw, 40px); }
.form-card h2 { font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.form-note { font-size: 14px; color: #7A8492; margin: 0 0 28px; }
.req { color: var(--orange); }

.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.field-grid--csz { grid-template-columns: 2fr 1fr 1fr; }
.field { margin-top: 20px; }
.field:first-child { margin-top: 0; }
.field > label, .field-grid label, fieldset legend { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }

.che-field {
  width: 100%; padding: 12px 14px; font-size: 15px; font-family: var(--sans);
  color: var(--ink); background: #fff; border: 1px solid #D7D2C7; border-radius: 9px;
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.che-field:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(219,122,44,0.15); }
.che-field::placeholder { color: #A6ACB4; }
textarea.che-field { resize: vertical; min-height: 120px; }

fieldset { border: 0; padding: 0; margin: 0; }
fieldset legend { margin-bottom: 10px; padding: 0; }
.rating-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.rating-opt { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #D7D2C7; border-radius: 9px; padding: 10px 16px; cursor: pointer; font-size: 14.5px; color: var(--ink-2); background: #fff; }
.rating-opt:hover { border-color: var(--orange); }
.rating-opt input { accent-color: var(--orange); width: 16px; height: 16px; }
.ratings { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.form-success { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 48px 36px; text-align: center; }
.form-success__ic { width: 62px; height: 62px; border-radius: 50%; background: #E7F4EC; color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; }
.form-success h2 { font-size: 28px; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.form-success p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 auto; max-width: 520px; }
.form-success a { color: var(--orange); font-weight: 600; text-decoration: none; }
.is-hidden { display: none !important; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(9,15,26,0.92); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lb-btn { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; line-height: 1; }
.lb-close { top: 20px; right: 24px; width: 46px; height: 46px; font-size: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 24px; }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 24px; }
.lb-fig { margin: 0; max-width: 1000px; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-fig img { max-width: 100%; max-height: 74vh; object-fit: contain; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-cap { color: #E7EAEF; font-size: 15px; text-align: center; display: flex; flex-direction: column; gap: 5px; }
.lb-counter { font-family: var(--mono); font-size: 12px; color: #8C99AD; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy); color: #AEB9CA; font-family: var(--sans); }
.site-footer__inner { max-width: var(--wrap); margin: 0 auto; padding: 56px 24px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-logo { display: inline-flex; background: #fff; border-radius: 9px; padding: 9px 13px; margin-bottom: 16px; }
.footer-logo img { height: 40px; width: auto; display: block; }
.site-footer p { font-size: 14px; line-height: 1.7; margin: 0 0 16px; max-width: 280px; }
.footer-motto { display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); font-weight: 600; }
.footer-col h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #7F8DA3; margin: 0 0 16px; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-contact a { color: #CDD6E3; text-decoration: none; font-size: 14.5px; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.footer-contact .muted { color: #8B97AB; }
.footer-contact .addr { color: #CDD6E3; line-height: 1.6; }
.footer-contact .btn { margin-top: 6px; align-self: flex-start; padding: 11px 16px; font-size: 14px; }
.footer-hours { display: flex; flex-direction: column; gap: 7px; font-size: 14px; margin-bottom: 18px; }
.footer-hours > div { display: flex; justify-content: space-between; gap: 16px; }
.footer-hours .on { color: #fff; }
.footer-hours .off { color: #8B97AB; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-tag { font-size: 12px; background: var(--navy-2); color: #CDD6E3; padding: 5px 11px; border-radius: 20px; }
.footer-bar { margin-top: 48px; border-top: 1px solid #28384F; padding: 22px 0; display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; }
.footer-bar span { font-size: 13px; color: #7F8DA3; }

@media (max-width: 640px) {
  .field-grid--csz { grid-template-columns: 1fr; }
}
