@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #FB5C04;
  --primary-tint:   rgba(251,92,4,0.12);
  --primary-dark:   #D94D00;
  --accent:         #079135;
  --accent-tint:    rgba(7,145,53,0.10);
  --canvas:         #F4EFE6;
  --canvas-deep:    #EDE8DD;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3D3730;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --shadow-card:    0 2px 18px -4px rgba(31,27,22,0.10);
  --shadow-float:   0 18px 40px -10px rgba(31,27,22,0.22);
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 152px);
  --content-max:    1240px;
  --wide-max:       1400px;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   GLOBAL SMOOTH SCROLL + SCROLL OFFSET
   ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

/* ============================================================
   UNIVERSAL IMAGE CAP (MANDATORY)
   ============================================================ */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img,
.page-header-bg, .about-feature > img:first-of-type,
.about-hero-bg, .page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}

section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HEADING ANCHOR RESET
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Low-opacity grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 1;
}

a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(42px, 6vw, 88px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

em { font-style: italic; }

p { line-height: 1.65; }

.eyebrow,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.info-card-eyebrow,
.cta-eyebrow,
.contact-info-label,
.availability-label,
.footer-col-label,
.footer-col-title,
.footer-col-head {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.wide-container {
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

/* ============================================================
   SCROLL BAR / PROGRESS
   ============================================================ */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  width: 0%; height: 3px;
  background: var(--primary);
  transition: width 0.1s linear;
}

#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.15s linear;
}

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 3px; width: 0%;
  background: var(--primary);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(31,27,22,0.08);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}
.nav-pages ul,
ul#navLinks {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-pages a,
#navLinks a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover,
#navLinks a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"],
#navLinks a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(0.92);
}
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta-label { font-size: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .top-nav { padding-inline: 20px; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul,
  ul#navLinks { flex-direction: column; gap: 4px; width: 100%; }
  .nav-pages a,
  #navLinks a { font-size: 17px; padding: 10px 0; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, filter 150ms;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary,
.btn-primary-lg {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px -4px rgba(251,92,4,0.35);
}
.btn-primary:hover, .btn-primary-lg:hover {
  color: #fff;
  filter: brightness(0.93);
  box-shadow: 0 12px 28px -6px rgba(251,92,4,0.4);
}
.btn-primary-lg { font-size: 16px; padding: 18px 36px; }

.btn-ghost {
  background: rgba(244,239,230,0.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(244,239,230,0.28);
  color: #fff;
  text-decoration: none;
}

.btn-outline,
.btn-outline-lg {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover, .btn-outline-lg:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}
.btn-outline-lg { font-size: 16px; padding: 18px 36px; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid var(--primary-tint);
  transition: border-color 150ms, gap 200ms;
}
.btn-service:hover {
  border-color: var(--primary);
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
}
.btn-service svg { width: 16px; height: 16px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 30px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: filter 150ms, transform 200ms ease-out;
  box-shadow: 0 6px 20px -4px rgba(251,92,4,0.35);
}
.btn-submit:hover { filter: brightness(0.93); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }

/* ============================================================
   CHIPS + PILLS
   ============================================================ */
.trust-chip,
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(251,92,4,0.12);
  color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: none;
  white-space: nowrap;
}
.trust-chip svg, .trust-pill svg { width: 16px; height: 16px; flex-shrink: 0; }

.about-chip, .service-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,92,4,0.10);
  color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}
.about-chip svg { width: 14px; height: 14px; flex-shrink: 0; }

.about-chips,
.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ============================================================
   MOUNTED PRINT — the unique design move
   ============================================================ */
.mounted-print,
.img-mount,
.card-photo-frame {
  position: relative;
  display: block;
}

.mounted-print img,
.img-mount img,
.card-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: inset 0 0 0 12px var(--canvas);
  outline: 12px solid var(--canvas);
  outline-offset: -12px;
  border-radius: var(--radius);
}

/* Apply mounted-print style to service card images via overlay technique */
.service-card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 12px var(--canvas);
  border-radius: var(--radius) var(--radius) 0 0;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.30) 0%,
    rgba(31,27,22,0.55) 50%,
    rgba(251,92,4,0.35) 100%
  );
}

.hero-booking-ribbon {
  position: absolute;
  top: calc(var(--header-height) + 20px);
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  background: rgba(244,239,230,0.15);
  border: 1px solid rgba(244,239,230,0.4);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(60px, 8vh, 120px) clamp(24px, 4vw, 48px) clamp(80px, 10vh, 128px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.85);
  margin: 0;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
  margin: 0;
}
.hero-title em {
  font-style: italic;
  color: var(--canvas);
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 450;
  line-height: 1.5;
  color: rgba(244,239,230,0.85);
  max-width: 52ch;
  margin: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  list-style: none;
  padding: 0;
}
.hero-trust-chips .trust-chip {
  background: rgba(251,92,4,0.18);
  color: rgba(244,239,230,0.95);
  border: 1px solid rgba(244,239,230,0.20);
  backdrop-filter: blur(4px);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-section {
  background: var(--ink);
}

.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(244,239,230,0.15);
  border-bottom: 1px solid rgba(244,239,230,0.15);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--ink);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1.3vw, 16px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.70);
  line-height: 1.2;
}
.marquee-item span {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas-deep);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 28px clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-header {
  margin-bottom: clamp(40px, 5vh, 64px);
}
.section-header h2 { margin-top: 12px; }

.section-head { margin-bottom: clamp(36px, 4vh, 56px); }

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.eyebrow-line::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 64px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.section-surface { background: var(--surface); }

/* ============================================================
   SERVICES SECTION (BENTO GRID)
   ============================================================ */
.services-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.services-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 280px;
  gap: 12px;
}

/* Flagship card spans 2 columns */
.service-card.bento-flagship {
  grid-column: span 2;
  grid-row: span 1;
}

/* Position non-flagship cards explicitly */
.bento-grid > .service-card:not(.bento-flagship):nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-grid > .service-card:not(.bento-flagship):nth-child(3) { grid-column: 1; grid-row: 2; }
.bento-grid > .service-card:not(.bento-flagship):nth-child(4) { grid-column: 2; grid-row: 2; }
.bento-grid > .service-card:not(.bento-flagship):nth-child(5) { grid-column: 3; grid-row: 2; }

.bento-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.bento-bottom > .service-card { grid-column: 1; }
.bento-bottom > div { grid-column: 2; display: flex; flex-direction: column; justify-content: center; padding: 32px; background: var(--canvas-deep); border-radius: var(--radius); gap: 12px; }
.bento-bottom > div p { line-height: 1.6; color: var(--ink-mid); }

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  background: var(--ink);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
  text-decoration: none;
}

.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
  max-height: none !important;
}
.service-card:hover > img { transform: scale(1.04); }

/* Mounted print frame on service cards */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 10px rgba(244,239,230,0.12);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,27,22,0.75) 0%, transparent 60%);
  z-index: 1;
}

.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 20px 22px;
}
.service-card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.service-card-index {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.service-card-desc {
  font-size: 13px;
  color: rgba(244,239,230,0.80);
  margin-bottom: 8px;
  line-height: 1.4;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.80);
}
.service-card-link svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 220px 220px;
  }
  .service-card.bento-flagship { grid-column: span 2; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(5) { grid-column: 2; grid-row: 3; }
  .bento-bottom { grid-template-columns: 1fr; }
  .bento-bottom > .service-card { grid-column: 1; min-height: 220px; }
  .bento-bottom > div { grid-column: 1; }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .service-card.bento-flagship { grid-column: 1; min-height: 280px; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(2) { grid-column: 1; grid-row: auto; min-height: 220px; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(3) { grid-column: 1; grid-row: auto; min-height: 220px; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(4) { grid-column: 1; grid-row: auto; min-height: 220px; }
  .bento-grid > .service-card:not(.bento-flagship):nth-child(5) { grid-column: 1; grid-row: auto; min-height: 220px; }
}

/* ============================================================
   GALLERY SECTION (INDEX PAGE)
   ============================================================ */
.gallery-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.gallery-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 520px;
  background: var(--ink);
}
.gallery-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
}
.gallery-feature::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 12px var(--surface);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
}

.gallery-feature-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(31,27,22,0.65) 0%, transparent 55%);
}

.gallery-feature-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-feature-body h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 52px);
  max-width: 20ch;
}
.gallery-feature-body h2 em { font-style: italic; }

@media (max-width: 640px) {
  .gallery-feature { min-height: 360px; }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--ink-mid);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .project-grid { grid-template-columns: 1fr; }
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.project-card.card-featured {
  grid-column: span 1;
}

.card-photo-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--canvas-deep);
}
.card-photo-frame > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  box-shadow: inset 0 0 0 10px var(--surface);
  outline: 10px solid var(--surface);
  outline-offset: -10px;
}

.card-num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(244,239,230,0.9);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.card-cat {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.card-body {
  padding: 18px 20px 20px;
}
.card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(17px, 2vw, 22px);
  margin-bottom: 8px;
  line-height: 1.15;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.card-location svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }

.card-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.55;
}

.gallery-empty {
  display: none;
  text-align: center;
  padding: 64px 20px;
  color: var(--muted);
  font-size: 16px;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.reviews-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.reviews-inner > .eyebrow { margin-bottom: 10px; }
.reviews-inner > h2 { margin-bottom: 16px; }

.reviews-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 48px;
}

.google-rating-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 20px;
}

.rating-stars {
  display: flex;
  gap: 3px;
}
.rating-stars svg {
  width: 22px; height: 22px;
  color: #F59E0B;
  fill: currentColor;
}

.rating-number {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}

.rating-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.rating-cta { margin-top: 4px; }
.rating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.rating-cta a:hover { text-decoration: underline; }

/* Review card grid (if present) */
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { color: #F59E0B; fill: currentColor; width: 18px; height: 18px; }
.review-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 16px;
  color: var(--ink);
}
.review-attribution {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.85;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.faq-inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.faq-inner > h2 { margin-bottom: 48px; }

.faq-list { margin-top: 0; }

details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

details summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { display: none; }

.faq-chevron {
  width: 20px !important; height: 20px !important;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms ease-out, color 150ms;
}
details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 0 22px;
  line-height: 1.65;
  color: var(--ink-mid);
  font-size: 16px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.contact-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form-side > .eyebrow { margin-bottom: 10px; }
.contact-form-side > h2 { margin-bottom: 32px; }
.contact-intro {
  color: var(--ink-mid);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form { width: 100%; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field.full,
.form-submit.full { grid-column: span 2; }

.form-field,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea, select {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251,92,4,0.12);
}
textarea {
  min-height: 130px;
  resize: vertical;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A7268' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.contact-info-block {
  padding: 20px 0;
}
.contact-info-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}
.contact-info-value a { color: var(--ink); font-weight: 500; }
.contact-info-value a:hover { color: var(--primary); }

.contact-divider {
  height: 1px;
  background: var(--border);
}

.contact-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px;
}

.contact-image {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.contact-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: inset 0 0 0 10px var(--canvas);
  outline: 10px solid var(--canvas);
  outline-offset: -10px;
  border-radius: var(--radius);
}

/* contact info card (contact.html) */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin-bottom: 8px;
}
.info-card-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}

.info-items { display: flex; flex-direction: column; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
}

.info-divider {
  height: 1px;
  background: var(--border);
}

.info-icon {
  width: 40px; height: 40px;
  background: var(--primary-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }

.info-item-body { flex: 1; }
.info-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-item-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.info-item-value a { color: var(--ink); font-weight: 500; }
.info-item-value a:hover { color: var(--primary); }

.info-availability {
  background: var(--primary-tint);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
}
.availability-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}
.availability-text {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-submit.full { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(72px, 10vh, 120px);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(251,92,4,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  position: relative; z-index: 1;
}
.cta-banner-inner > .eyebrow { color: rgba(244,239,230,0.60); }
.cta-banner-inner h2,
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--canvas);
  margin: 12px 0 16px;
  max-width: 20ch;
}
.cta-banner-inner h2 em,
.cta-title em { font-style: italic; color: var(--primary); }

.cta-banner-sub,
.cta-sub {
  font-size: 17px;
  color: rgba(244,239,230,0.72);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-banner-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-banner-phone,
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(244,239,230,0.85);
  text-decoration: none;
  padding: 16px 0;
}
.cta-banner-phone:hover,
.cta-phone-link:hover { color: var(--canvas); text-decoration: none; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0;
  max-height: none !important;
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(31,27,22,0.70) 0%, rgba(31,27,22,0.30) 100%);
}

.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 4vw, 48px);
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
}

.page-header-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.70);
  margin-bottom: 10px;
  display: block;
}

.page-header-inner h1 {
  color: var(--canvas);
  font-size: clamp(36px, 5.5vw, 80px);
  max-width: 18ch;
  margin-bottom: 10px;
}

.page-header-sub,
.page-sub {
  font-size: 16px;
  color: rgba(244,239,230,0.75);
  max-width: 52ch;
}

.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5.5vw, 80px);
  color: var(--canvas);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.page-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,239,230,0.70);
  display: block; margin-bottom: 10px;
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.services-detail-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.services-detail-header {
  max-width: 68ch;
  margin-bottom: clamp(56px, 8vh, 96px);
}
.services-detail-header .eyebrow-line { margin-bottom: 12px; }
.services-detail-header h1 {
  font-size: clamp(40px, 5.5vw, 88px);
  margin-bottom: 16px;
}
.services-detail-header p {
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.65;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 7vh, 88px);
  border-bottom: 1px solid var(--border);
}
.service-feature:last-of-type { border-bottom: none; }

.service-feature.reverse {
  direction: ltr;
}
.service-feature.reverse .service-feature-photo { order: 2; }
.service-feature.reverse .service-feature-body  { order: 1; }

.service-feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--canvas-deep);
  position: relative;
}
.service-feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  box-shadow: inset 0 0 0 12px var(--canvas);
  outline: 12px solid var(--canvas);
  outline-offset: -12px;
  border-radius: var(--radius);
}
.service-feature.section-surface .service-feature-photo img {
  box-shadow: inset 0 0 0 12px var(--surface);
  outline: 12px solid var(--surface);
}

.service-feature-body .eyebrow-line { margin-bottom: 12px; }
.service-feature-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.service-feature-body > p {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-feature-bullets {
  list-style: none; padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-feature-bullets li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.service-feature-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  min-width: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
}

.section-surface {
  background: var(--surface);
  margin-inline: calc(-1 * clamp(20px, 4vw, 48px));
  padding-inline: clamp(20px, 4vw, 48px);
}

@media (max-width: 900px) {
  .service-feature { grid-template-columns: 1fr; gap: 28px; }
  .service-feature.reverse .service-feature-photo { order: -1; }
  .service-feature.reverse .service-feature-body  { order: 1; }
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.about-story-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.about-story-portrait {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--canvas-deep);
}
.about-story-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  box-shadow: inset 0 0 0 12px var(--canvas);
  outline: 12px solid var(--canvas);
  outline-offset: -12px;
  border-radius: var(--radius);
}

.about-story-body {
  padding-top: clamp(8px, 2vh, 24px);
}
.about-story-body .section-eyebrow { margin-bottom: 12px; }
.about-story-body h2 {
  font-size: clamp(30px, 4vw, 56px);
  margin-bottom: 24px;
}
.about-story-body > p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.70;
  margin-bottom: 16px;
}

.about-story-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-portrait { aspect-ratio: 16/9; order: -1; }
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  background: var(--surface);
  padding-block: var(--section-py);
}

.values-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: clamp(48px, 6vh, 80px);
  align-items: start;
}
.values-header h2 { font-size: clamp(30px, 4vw, 56px); }
.values-intro {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.70;
  padding-top: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 900px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.value-icon {
  width: 44px; height: 44px;
  background: var(--primary-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-icon svg { width: 22px; height: 22px; color: var(--primary); }

.value-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.value-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.60;
}

@media (max-width: 900px) {
  .values-header { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   JOURNEY / TIMELINE
   ============================================================ */
.journey {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.journey-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.journey-header {
  max-width: 56ch;
  margin-bottom: clamp(48px, 6vh, 80px);
}
.journey-header .section-eyebrow { margin-bottom: 8px; }
.journey-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.journey-sub {
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.65;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0;
  padding-top: 48px;
}

.timeline-dot {
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--canvas-deep);
  border: 2px solid var(--border-strong);
  transition: background 200ms, border-color 200ms;
}
.timeline-step.active .timeline-dot {
  background: var(--primary);
  border-color: var(--primary);
}
.timeline-step.active .timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
}

.timeline-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.timeline-step-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.60;
}

@media (max-width: 640px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-step { padding-top: 0; padding-left: 56px; min-height: 48px; }
  .timeline-dot { top: 0; left: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.75);
  padding-top: clamp(64px, 8vh, 96px);
}

.footer-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,239,230,0.10);
}

.footer-brand,
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand img,
.footer-brand-col img {
  max-height: 40px !important;
  max-width: 180px !important;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244,239,230,0.60);
  max-width: 32ch;
}

.footer-contact-item,
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(244,239,230,0.70);
}
.footer-contact-item svg,
.footer-contact-line svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--primary);
}
.footer-contact-item a,
.footer-contact-line a {
  color: rgba(244,239,230,0.70);
  text-decoration: none;
}
.footer-contact-item a:hover,
.footer-contact-line a:hover { color: var(--canvas); text-decoration: none; }

.footer-col h4,
.footer-col-title,
.footer-col-head,
.footer-col-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.45);
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(244,239,230,0.70);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover {
  color: var(--canvas);
  text-decoration: none;
}

.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--canvas);
  margin-bottom: 4px;
}
.footer-detail {
  font-size: 13px;
  color: rgba(244,239,230,0.60);
  line-height: 1.55;
}
.footer-detail a { color: rgba(244,239,230,0.60); }
.footer-detail a:hover { color: var(--canvas); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy,
.footer-bottom span,
.footer-bottom p {
  font-size: 13px;
  color: rgba(244,239,230,0.40);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand, .footer-brand-col { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: 1; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-cta,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(251,92,4,0.50);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-cta:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -10px rgba(251,92,4,0.55);
  color: #fff;
  text-decoration: none;
}
.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-cta svg,
.mobile-sticky-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

@media (min-width: 900px) {
  .mobile-call-pill,
  .mobile-cta-pill,
  .mobile-cta,
  .mobile-sticky-cta {
    display: none;
  }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 500ms cubic-bezier(0.22,1,0.36,1), transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms cubic-bezier(0.22,1,0.36,1), transform 500ms cubic-bezier(0.22,1,0.36,1);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger.visible > * {
  opacity: 1;
  transform: none;
}
.stagger.visible > *:nth-child(1)  { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { transition-delay: 560ms; }

/* ============================================================
   STATS (if used)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  font-family: 'DM Serif Display', serif;
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   SECTION ALTERNATION
   ============================================================ */
.services-section  { background: var(--canvas); }
.gallery-section   { background: var(--surface); }
.reviews-section   { background: var(--canvas); }
.faq-section       { background: var(--surface); }
.contact-section   { background: var(--canvas); }
.about-story       { background: var(--canvas); }
.values            { background: var(--surface); }
.journey           { background: var(--canvas); }

/* ============================================================
   MISC UTILITY
   ============================================================ */
.full { grid-column: span 2; }

@media (max-width: 640px) {
  .full { grid-column: 1; }
}

/* Scroll progress on gallery / about pages */
#scrollProgress,
#scrollBar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 3px; width: 0%;
  background: var(--primary);
  transition: width 0.1s linear;
}

/* ============================================================
   TABLES
   ============================================================ */
.services-table { width: 100%; border-collapse: collapse; }
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: var(--canvas);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price {
  background: var(--surface);
  color: var(--ink);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

/* ============================================================
   FLIP LAYOUT HELPER — order only, never mirror transform
   ============================================================ */
.flip > :first-child { order: 2; }
.flip > :last-child  { order: 1; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.img-mount { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.values-intro { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
