:root {
  /* Colors - Premium Light Theme */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --accent-primary: #0f766e; /* Elegant Teal/Emerald */
  --accent-primary-hover: #115e59;
  --accent-gold: #c29a5b; /* Gold/Sand */
  
  --border-color: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 20px 48px rgba(15, 23, 42, 0.1);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #e2e8f0;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand, .eyebrow {
  font-family: "Outfit", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 4px;
}

/* Typography */
.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 12px;
}

p {
  margin: 0 0 20px;
  color: var(--text-muted);
}

.text-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--text-muted);
}

/* Header & Nav */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 80px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 16px clamp(24px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text-main);
  line-height: 1;
}

.brand-wordmark {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 44px;
  padding: 0 2px;
}

.brand-wordmark-primary {
  display: none;
}

.brand-wordmark-compact {
  display: flex;
  gap: 1px;
}

.brand-letter {
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-letter-accent {
  color: var(--accent-gold);
}

.brand-i {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  width: 9px;
  height: 29px;
  margin: 0 2px;
  color: var(--accent-gold);
  transition: color 0.25s ease;
}

.brand-i span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 4.2px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.brand:hover .brand-i {
  color: var(--accent-primary);
}

@media (min-width: 1200px) {
  .brand-wordmark-primary {
    display: flex;
  }

  .brand-wordmark-compact {
    display: none;
  }

  .brand-wordmark-primary .brand-letter {
    font-size: 1.7rem;
  }

  .brand-wordmark-primary .brand-i {
    width: 10px;
    height: 32px;
  }

  .brand-wordmark-primary .brand-i span {
    font-size: 4.6px;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a:not(.button) {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.site-nav a:not(.button):hover {
  color: var(--accent-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  color: var(--text-main);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: 0.3s ease;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--text-main);
  color: var(--bg-surface);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.button-primary:hover {
  background: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.25);
  color: #fff;
}

.button-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.button-secondary:hover {
  border-color: var(--text-main);
  transform: translateY(-2px);
}

/* Layout */
.container {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
}

section {
  padding: 120px 0;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 148px 0 76px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-content {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  column-gap: 64px;
  row-gap: 0;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.9rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.hero-content > :not(.hero-media) {
  grid-column: 1;
}

.hero-content .hero-media {
  grid-column: 2;
  grid-row: 1 / span 5;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.hero-tags li {
  padding: 8px 18px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-media:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-body);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item strong {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 12px;
  font-family: "Outfit", sans-serif;
}

.stat-item strong small {
  font-size: 0.45em;
  font-weight: 700;
  white-space: nowrap;
}

.stat-item > span {
  color: var(--text-muted);
  font-weight: 500;
}

/* Services Section */
.services-section {
  background: #eef5f3;
  border-block: 1px solid rgba(15, 23, 42, 0.04);
}

.services-section .section-header {
  max-width: none;
  margin: 0 0 48px;
  text-align: left;
}

.services-section .eyebrow {
  position: relative;
  padding-left: 18px;
}

.services-section .eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  transform: translateY(-50%);
}

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

@media (min-width: 1180px) {
  .services-grid.layout-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-section .section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
    column-gap: clamp(56px, 8vw, 128px);
    align-items: end;
  }

  .services-section .eyebrow,
  .services-section h2 {
    grid-column: 1;
  }

  .services-section .text-lead {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin: 0 0 4px;
  }
}

.service-card {
  background: var(--bg-surface);
  padding: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 118, 110, 0.24);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-toggle {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 152px;
  padding: 32px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.service-card-toggle:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: -3px;
  background: rgba(15, 118, 110, 0.05);
}

.service-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #f8f5ef;
  color: var(--accent-primary);
}

.service-symbol svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.service-card-heading {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--accent-primary);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-card > p {
  position: relative;
  z-index: 1;
  max-height: 0;
  margin: 0;
  padding: 0 32px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}

.service-card.is-active {
  border-color: rgba(15, 118, 110, 0.26);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) scale(1.012);
}

.service-card.is-active::after {
  transform: scaleX(1);
}

.service-card.is-active .service-card-icon {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: rotate(45deg);
}

.service-card.is-active > p {
  max-height: 240px;
  padding: 0 32px 32px;
  opacity: 1;
  transform: translateY(0);
}

/* Process Section */
.process-section {
  background: var(--bg-surface-alt);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 40px;
}

@media (min-width: 1025px) {
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--text-main);
  color: var(--bg-surface);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px var(--bg-surface-alt);
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

/* Philosophy Section */
.philosophy-section {
  background: var(--bg-surface);
}

.philosophy-section .section-header {
  max-width: 820px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  margin-bottom: 48px;
}

.philosophy-section .text-lead {
  max-width: 740px;
  margin-bottom: 0;
}

.philosophy-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.philosophy-quote {
  margin: 0;
  padding: 32px 0 32px 40px;
  border-left: 3px solid var(--accent-gold);
  border-radius: 0;
}

.philosophy-quote p {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin: 0;
}

/* Story Section */
.story-section {
  background: var(--text-main);
  color: var(--bg-surface);
  padding: 120px 0;
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-copy h2 {
  color: #fff;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.story-copy .story-punchline {
  margin-top: 28px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.booking-widget {
  min-width: 0;
}

/* Team Section */
.team-section {
  background: var(--bg-body);
}

.team-section .section-header {
  max-width: 820px;
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 48px;
  text-align: left;
}

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

.team-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-card-media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-surface-alt);
}

.team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  transition: transform 0.45s ease;
}

.team-card:hover .team-card-media img {
  transform: scale(1.035);
}

.team-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 26px;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 7px;
}

.team-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.team-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.team-card-phone svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.team-card-phone:hover {
  color: var(--accent-primary);
}

/* References Section (Cases) */
.cases-section {
  background: var(--bg-surface);
}

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

.case-card, .quote-card {
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.case-card {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
}

.case-card span {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-surface-alt);
  color: var(--accent-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.quote-card {
  background: var(--accent-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
}

.quote-card strong {
  display: block;
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Booking Section */
.booking-section {
  background: var(--bg-surface);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.booking-content {
  padding-top: 48px;
}

.contact-lines {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-lines a, .contact-lines span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

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

.calendar-card {
  background: var(--bg-body);
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  min-height: 660px;
  display: flex;
  flex-direction: column;
}

.calendar-card iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: none;
  border-radius: var(--radius-sm);
}

.calendar-fallback {
  align-self: center;
  margin: 14px 0 2px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.calendar-fallback:hover {
  color: var(--accent-primary);
}

/* Inquiry form */
.inquiry-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
  margin-top: 8px;
  padding: 48px;
  background: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-heading h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #fff;
}

.form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.inquiry-form form {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

.form-field label span {
  color: var(--accent-gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-main);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 124px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--accent-primary);
}

.form-consent a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  margin-top: 22px;
  width: 100%;
  background: var(--accent-gold);
  color: var(--text-main);
  border-color: var(--accent-gold);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-success,
.form-error {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-success {
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent-primary);
}

.form-error {
  background: rgba(180, 55, 55, 0.1);
  color: #9f3030;
}

.form-local-notice {
  background: rgba(194, 154, 91, 0.14);
  color: var(--text-muted);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg-body);
}

.thank-you-card {
  width: min(100%, 580px);
  padding: clamp(32px, 7vw, 72px);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thank-you-card h1 {
  margin: 12px 0;
}

.thank-you-card p {
  margin-bottom: 28px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 40px;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--accent-gold);
}

.back-to-top {
  font-weight: 600 !important;
  color: #fff !important;
}

.disclaimer-text {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(380px, calc(100% - 48px));
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-hover);
  padding: 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-content h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .button {
  padding: 9px 12px;
  font-size: 0.82rem;
  flex: 1;
}

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

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Utilities */
.is-hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-inner {
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 640px;
  }

  .hero-media {
    order: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }

  .hero-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
  }

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

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

  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-content {
    padding-top: 0;
  }

  .inquiry-form {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
  }

  .form-heading h3 {
    color: var(--text-main);
  }

  .form-heading p,
  .form-consent {
    color: var(--text-muted);
  }

  .form-field label {
    color: var(--text-main);
  }

  .form-submit {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-quotes {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-section {
    padding: 88px 0;
  }

  .story-panel {
    gap: 40px;
  }

  .story-copy {
    order: 1;
  }

  .story-media {
    order: 2;
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .case-grid, .story-panel, .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner {
    bottom: 16px;
    right: 16px;
    width: min(380px, calc(100% - 32px));
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 24px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    padding: 12px 24px;
  }

  .brand-wordmark {
    height: 40px;
  }

  .brand-letter {
    font-size: 1.55rem;
  }

  .brand-i {
    height: 28px;
  }

  .brand-i span {
    font-size: 4px;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 20px;
    display: block;
    color: var(--text-main);
    background:
      radial-gradient(circle at 18% 86px, rgba(194, 154, 91, 0.34), transparent 36%),
      radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.11), transparent 42%),
      linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    width: min(100% - 48px, 1180px);
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
  }

  .hero-media {
    order: 4;
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    transform: none;
    z-index: 1;
    overflow: hidden;
    margin-top: 24px;
  }

  .hero-media:hover {
    transform: none;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(7, 13, 31, 0.22) 100%);
  }

  .hero-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 20%;
  }

  .hero-content {
    order: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero .eyebrow {
    align-self: flex-start;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-size: 0.72rem;
    line-height: 1.25;
    text-align: left;
  }

  .hero h1 br {
    display: none;
  }

  .hero h1 {
    color: var(--text-main);
    font-size: clamp(2rem, 8.3vw, 2.36rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .hero .text-lead {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.46;
    margin: 0;
    max-width: 100%;
  }

  .hero-actions {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-tags {
    order: 5;
    display: none;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
  }

  .stats-section {
    background:
      linear-gradient(180deg, #e2e8f0 0%, #eef3f8 88px, #f8fafc 168px, #f8fafc 100%);
    padding-top: 48px;
    padding-bottom: 56px;
    position: relative;
    z-index: 2;
  }

  .stats-grid {
    gap: 14px;
    grid-auto-rows: 176px;
  }

  .stat-item {
    min-height: 176px;
    padding: 22px 12px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat-item strong {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
    white-space: nowrap;
  }

  .stat-item strong small {
    font-size: 0.37em;
  }

  .stat-item > span {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-section .section-header,
  .philosophy-section .section-header,
  .team-section .section-header {
    margin-bottom: 38px;
  }

  .services-section .eyebrow {
    padding-left: 16px;
  }

  .philosophy-section .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0;
    line-height: 1.35;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    width: auto;
    padding: 16px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .service-card-toggle {
    min-height: 112px;
    padding: 22px 24px;
    column-gap: 14px;
  }

  .service-symbol {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .service-symbol svg {
    width: 18px;
    height: 18px;
  }

  .service-card-heading {
    padding: 0;
    font-size: 1.2rem;
  }

  .service-card.is-active {
    transform: none;
  }

  .service-card.is-active > p {
    max-height: 240px;
    padding: 0 24px 26px;
  }

  .calendar-card {
    min-height: 690px;
    padding: 10px;
  }

  .calendar-card iframe {
    min-height: 650px;
  }

  .inquiry-form {
    margin-top: 20px;
    padding: 22px 18px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .philosophy-quote {
    padding: 8px 0 8px 24px;
  }

}
