:root {
  --bg: #f6f2e9;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 252, 246, 0.92);
  --text: #1a1714;
  --muted: #6f675d;
  --line: rgba(64, 52, 34, 0.10);
  --accent: #b67b31;
  --accent-strong: #8e5f1c;
  --accent-glow: rgba(182, 123, 49, 0.15);
  --shadow-sm: 0 4px 20px rgba(81, 66, 38, 0.06);
  --shadow: 0 16px 48px rgba(81, 66, 38, 0.10);
  --shadow-lg: 0 32px 80px rgba(81, 66, 38, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 300ms var(--ease);
  --scroll-shift: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  color: var(--text);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(233, 206, 159, 0.45), transparent 50%),
    radial-gradient(ellipse at 90% 5%, rgba(205, 223, 215, 0.35), transparent 40%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 60%, #ede5d9 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure { margin: 0; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── LAYOUT ─── */

.page-shell {
  position: relative;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 80px;
}

/* ─── HEADER ─── */

.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: var(--shadow-sm);
  animation: slideDown 600ms var(--ease) both;
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header:hover {
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition);
}

.brand:hover { opacity: 0.8; }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-text {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── TRUST BAR ─── */

.trust-bar {
  display: inline-block;
  padding: 6px 18px;
  margin: 14px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  animation: fadeIn 800ms var(--ease) 200ms both;
  transition: color var(--transition), box-shadow var(--transition);
}

.trust-bar:hover {
  color: var(--accent-strong);
  box-shadow: var(--shadow);
}

/* ─── NAV TOGGLE (hamburger) ─── */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── NAV ─── */

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.site-nav > a,
.nav-dropdown-trigger {
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
  transition: all var(--transition);
}

.site-nav > a:hover, .site-nav > a:focus-visible, .site-nav > a.is-active,
.nav-dropdown-trigger:hover, .nav-dropdown-trigger:focus-visible, .nav-dropdown-trigger.is-active {
  background: var(--accent-glow);
  color: var(--text);
  outline: none;
}

.nav-dropdown { position: relative; }

button.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(1px) rotate(-135deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.95);
  backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: translateY(1px) rotate(-135deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible {
  background: var(--accent-glow);
  color: var(--text);
  transform: translateX(3px);
  outline: none;
}

/* ─── SECTIONS ─── */

.section { padding: 60px 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.narrow { max-width: 620px; }

.section-heading h2 {
  font-size: clamp(2.16rem, 4.5vw, 3.6rem);
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── TYPOGRAPHY ─── */

.eyebrow {
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1, h2, .feature-copy h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  letter-spacing: -0.025em;
}

/* ─── HERO ─── */

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 0;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.34rem, 5vw, 3.78rem);
  line-height: 1.02;
  max-width: 14ch;
}

/* ─── HERO ROTATING WORD ─── */

.hero-rotate-wrap {
  display: block;
  position: relative;
  height: 1.1em;
  overflow: hidden;
}

.hero-rotate-word {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
  color: var(--accent-strong);
}

.hero-rotate-word.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero-rotate-word.exit {
  opacity: 0;
  transform: translateY(-60%);
}

.hero-subtitle {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.65;
  max-width: 34ch;
}

.hero-subtitle a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-subtitle a:hover {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-inline {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-banner-photo {
  overflow: hidden;
}

.hero-banner-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.hero-banner:hover .hero-banner-photo img {
  transform: scale(1.03);
}

/* ─── HERO SHOWCASE (3 cards below banner) ─── */

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-showcase-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 500ms var(--ease);
}

.hero-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-showcase-card img {
  height: 180px;
  transition: transform 1.2s var(--ease);
}

.hero-showcase-card:hover img {
  transform: scale(1.04);
}

.hero-showcase-card figcaption {
  padding: 12px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

/* Fade-up for showcase cards */
.hero-showcase-card.reveal {
  transform: translateY(28px) scale(0.97);
}

.hero-showcase-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ─── BUTTONS ─── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--text);
  color: #fdfaf5;
  box-shadow: 0 12px 32px rgba(26, 23, 20, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 40px rgba(26, 23, 20, 0.3);
  background: #2a2520;
}

.button-secondary {
  border: 1.5px solid rgba(26, 23, 20, 0.12);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 23, 20, 0.22);
}

/* ─── SERVICES OVERVIEW ─── */

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.services-overview-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}

.services-overview-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.services-overview-arrow {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  text-align: right;
}

.services-overview-card:hover .services-overview-arrow {
  opacity: 1;
  transform: translateX(0);
}

.services-overview-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.services-overview-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.services-overview-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.services-overview-card li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.services-overview-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 700;
}

/* ─── CLIENT CAROUSEL ─── */

.client-strip.section {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.client-carousel {
  position: relative;
  margin-top: 20px;
  padding: 0 48px;
  overflow: hidden;
}

.client-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 700ms var(--ease);
  will-change: transform;
}

.client-glass-card {
  min-width: calc((100% - 32px) / 3);
  flex-shrink: 0;
}

/* Arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 1.5rem;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-arrow:hover {
  background: var(--text);
  color: #fdfaf5;
  box-shadow: var(--shadow);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

/* Glass cards */
.client-glass-card {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.25) 100%
  );
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: box-shadow 500ms var(--ease), border-color 500ms var(--ease), transform 500ms var(--ease);
}

.client-glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(182, 123, 49, 0.2);
}

.client-glass-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.client-glass-card:hover img {
  transform: scale(1.05);
}

.client-glass-card span {
  display: block;
  padding: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ─── SHARED PANELS ─── */

.about-copy, .service-card, .feature-band,
.contact-panel, .photo-card, .photo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

/* ─── ABOUT ─── */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 20px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.about-copy p, .service-card p, .contact-grid p {
  line-height: 1.75;
  color: var(--muted);
}

.about-copy p { font-size: 1.05rem; }

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(32, 29, 25, 0.06);
  font-size: 0.86rem;
  font-weight: 500;
  transition: all var(--transition);
}

.about-points span:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stats-row div {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-row div:last-child { border-right: none; }

.stats-row strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.stats-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.photo-card, .photo-panel {
  overflow: hidden;
  background: var(--surface-strong);
}

.photo-card img, .photo-panel img, .feature-photos img {
  transition: transform 1.2s var(--ease);
}

.photo-card:hover img, .photo-panel:hover img, .feature-photos img:hover {
  transform: scale(1.04);
}

.photo-panel { min-height: 340px; }

/* ─── TESTIMONIALS ─── */

.testimonial-grid {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.testimonial-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-right: none;
  transition: background 400ms var(--ease);
  position: relative;
}

.testimonial-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--line);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.5);
}

.testimonial-card header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.testimonial-card header strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-card header span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.testimonial-location {
  margin-top: 2px;
  font-size: 0.88rem !important;
  color: var(--accent-strong) !important;
}

.testimonial-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  font-style: normal;
}

.testimonial-stars {
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* ─── SERVICES ─── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.service-card {
  padding: 28px;
  transition: all var(--transition);
}

.service-card:hover, .service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(182, 123, 49, 0.25);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}

.service-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.01rem;
  font-weight: 700;
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.service-card:hover h3 { color: var(--accent-strong); }

/* ─── FEATURE BAND ─── */

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  padding: 24px;
  margin-top: 20px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 8px;
}

.feature-copy h3 {
  font-size: clamp(1.62rem, 3.5vw, 2.52rem);
}

.feature-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-photos img {
  min-height: 240px;
  border-radius: var(--radius-lg);
}

/* ─── CONTACT ─── */

.contact-panel {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75)),
    linear-gradient(135deg, rgba(230, 207, 157, 0.25), rgba(187, 214, 205, 0.2));
}

.compact { margin-bottom: 28px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.form-group input, .form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(182, 123, 49, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(111, 103, 93, 0.45);
}

.form-group textarea { resize: vertical; }

.contact-form .button {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

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

.contact-info a {
  color: var(--accent-strong);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-info a:hover { color: var(--accent); }

.contact-label {
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* ─── FOOTER ─── */

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 0 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 56px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  margin-top: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 30ch;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-cta {
  margin-top: 12px;
  font-size: 0.86rem;
  min-height: 42px;
  text-align: center;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ─── SERVICE PAGES ─── */

.service-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.service-page-hero .hero-copy { padding: 44px; }
.service-page-hero .hero-copy h1 { max-width: 100%; font-size: clamp(2.16rem, 5vw, 3.6rem); }
.service-page-hero .photo-panel { min-height: 400px; }

.service-page-content { padding: 32px 0; }

.service-page-content .feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: all var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(182, 123, 49, 0.2);
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-item p {
  line-height: 1.75;
  color: var(--muted);
  font-size: 0.92rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
}

.back-link:hover {
  color: var(--accent);
  transform: translateX(-3px);
}

/* ─── LEGACY PHOTO CARDS ─── */

.photo-card { position: absolute; }

.photo-card figcaption {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.84rem;
}

/* ─── ANIMATIONS ─── */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* ─── RESPONSIVE: tablet ─── */

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero-banner, .about-layout, .feature-band, .contact-grid,
  .contact-layout, .service-page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 16px;
    padding: 24px 0 40px;
  }

  .hero-banner-photo img { min-height: 280px; }
  .hero-showcase { grid-template-columns: 1fr; gap: 12px; }

  .stats-row { grid-template-columns: repeat(3, 1fr); }
}

/* ─── RESPONSIVE: mobile ─── */

@media (max-width: 720px) {
  .page-shell { width: min(calc(100% - 24px), var(--max-width)); }

  .site-header {
    position: sticky;
    top: 12px;
    flex-wrap: wrap;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    animation: fadeIn 500ms var(--ease) both;
  }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }

  .site-nav.is-open { display: flex; }

  .site-nav > a,
  .site-nav .nav-dropdown-trigger {
    text-align: left;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    padding: 12px 16px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: opacity var(--transition), max-height var(--transition), visibility var(--transition);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 4px 0 4px 12px;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { transform: none; opacity: 0; visibility: hidden; max-height: 0; }

  .nav-dropdown:hover.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within.is-open .nav-dropdown-menu { opacity: 1; visibility: visible; max-height: 400px; }

  .site-header, .hero-banner, .hero-showcase-card, .about-copy, .stats-row,
  .service-card, .feature-band, .contact-panel,
  .photo-card, .photo-panel, .feature-item {
    border-radius: var(--radius-lg);
  }

  .hero-copy, .about-copy, .stats-row div,
  .service-card, .feature-band, .contact-panel { padding: 24px; }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero-actions { flex-direction: column; }
  .button { width: 100%; }

  .hero-showcase-card img { height: 140px; }

  .client-glass-card { min-width: calc(100% - 0px); }
  .client-glass-card img { height: 200px; }
  .client-carousel { padding: 0 44px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.2rem; }

  .testimonial-grid,
  .service-grid, .feature-photos, .contact-grid, .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row div { border-right: none; border-bottom: 1px solid var(--line); }
  .stats-row div:last-child { border-bottom: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
}

/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
}
