:root {
  --navy:       hsl(220, 50%, 22%);
  --navy-light: hsl(220, 45%, 35%);
  --gold:       hsl(38, 80%, 50%);
  --gold-light: hsl(38, 75%, 60%);
  --cream:      hsl(40, 30%, 97%);
  --cream-dark: hsl(40, 25%, 94%);
  --border:     hsl(40, 20%, 88%);
  --text-dark:  hsl(220, 30%, 15%);
  --text-muted: hsl(220, 15%, 45%);
  --text-body:  hsl(220, 20%, 30%);
  --shadow-sm:  0 4px 20px -4px hsl(220 50% 22% / 0.08);
  --shadow-md:  0 10px 40px -10px hsl(220 50% 22% / 0.18);
  --shadow-lg:  0 20px 60px -15px hsl(220 50% 22% / 0.40);
  --r-sm: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.container--full { width: 100%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  box-shadow: 0 4px 20px -4px hsl(220 50% 22% / 0.40);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -6px hsl(220 50% 22% / 0.50);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid hsl(220 50% 22% / 0.25);
  background: transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.btn-outline:hover { transform: translateY(-2px); border-color: var(--navy); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 4px 20px -4px hsl(38 80% 50% / 0.5);
  transition: transform 0.3s ease;
}

.btn-gold:hover { transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid hsl(40 30% 97% / 0.3);
  background: transparent;
  transition: transform 0.3s ease;
}

.btn-outline-white:hover { transform: translateY(-2px); }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Hero sequence — 0.12s increments */
.d-0 { --delay: 0s; }
.d-1 { --delay: 0.12s; }
.d-2 { --delay: 0.24s; }
.d-3 { --delay: 0.36s; }
.d-4 { --delay: 0.48s; }
.d-5 { --delay: 0.6s; }

/* Card stagger — 0.1s increments */
.d-c1 { --delay: 0.1s; }
.d-c2 { --delay: 0.2s; }
.d-c3 { --delay: 0.3s; }

.mb-md { margin-bottom: 1.25rem; }

.field-error {
  display: block;
  font-size: 0.75rem;
  color: hsl(0, 72%, 51%);
  margin-top: 0.375rem;
  min-height: 1rem;
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: hsl(0, 72%, 51%);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: none;
}

.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.hero-anim-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 0.7s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp    { to { opacity: 1; transform: none; } }
@keyframes fadeRight { to { opacity: 1; transform: none; } }

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

#header.scrolled {
  background-color: hsl(40 30% 97% / 0.97);
  box-shadow: 0 4px 20px -4px hsl(220 50% 22% / 0.10);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) { .header-inner { height: 5rem; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 2.5rem; width: auto; object-fit: contain; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.025em;
  color: var(--navy);
}

.logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

.header-cta { display: none; }

@media (min-width: 768px) {
  .header-cta { display: flex; align-items: center; }
  .header-cta .btn-primary { padding: 0.625rem 1.25rem; }
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--r-sm);
  color: var(--navy);
  transition: background-color 0.2s;
}

.menu-btn:hover { background-color: hsl(220 50% 22% / 0.06); }

@media (min-width: 768px) { .menu-btn { display: none; } }

#mobile-menu {
  background-color: var(--cream);
  box-shadow: 0 10px 40px -10px hsl(220 50% 22% / 0.15);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

#mobile-menu.open { max-height: 500px; }

.mobile-nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn-primary {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 70% 50%, hsl(220 50% 22% / 0.04) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, hsl(38 80% 50%), transparent 70%);
  opacity: 0.1;
}

.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: hsl(38 80% 50% / 0.12);
  color: hsl(38, 85%, 40%);
  border: 1px solid hsl(38 80% 50% / 0.25);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: hsl(220 50% 22% / 0.07);
  color: var(--navy);
}

.hero-badge svg { color: var(--gold); flex-shrink: 0; }

.hero-ctas { display: flex; flex-direction: column; gap: 1rem; }

@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.stats-card {
  display: none;
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) { .stats-card { display: block; } }

.stats-card::before {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, white, transparent);
  opacity: 0.1;
}

.stats-card::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent);
  opacity: 0.1;
}

.stats-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: 2rem;
  position: relative;
}

.stats-list { display: flex; flex-direction: column; gap: 2rem; position: relative; }
.stat-item { display: flex; align-items: center; gap: 1.25rem; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label { font-size: 0.875rem; font-weight: 500; color: var(--cream); opacity: 0.8; }

.stats-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(40 30% 97% / 0.1);
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.6;
  position: relative;
}

.mobile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) { .mobile-stats { display: none; } }

.mobile-stat {
  text-align: center;
  padding: 1rem;
  border-radius: var(--r-md);
  background-color: hsl(220 50% 22% / 0.06);
}

.mobile-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.mobile-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

.services {
  padding: 5rem 0;
  background-color: #fff;
}

@media (min-width: 1024px) { .services { padding: 7rem 0; } }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-subtitle {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
}

.services-grid { display: grid; gap: 1.5rem; }

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

.service-card {
  background-color: #fff;
  border-radius: var(--r-xl);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: hsl(38 80% 50% / 0.3);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(38 80% 50% / 0.08);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { color: var(--gold); }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-items { display: flex; flex-direction: column; gap: 0.5rem; }

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-body);
}

.service-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.services-cta-box {
  margin-top: 3.5rem;
  text-align: center;
  border-radius: var(--r-xl);
  padding: 2rem;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border: 1px solid var(--border);
}

.services-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.services-cta-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.whyus {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

@media (min-width: 1024px) { .whyus { padding: 7rem 0; } }

.whyus .section-label  { color: var(--gold-light); }
.whyus .section-title  { color: #fff; }
.whyus .section-subtitle { color: #fff; opacity: 0.75; }

.whyus-grid { display: grid; gap: 1.5rem; }

@media (min-width: 640px)  { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: repeat(4, 1fr); } }

.whyus-card {
  text-align: center;
  padding: 1.75rem;
  border-radius: var(--r-xl);
  background-color: hsl(40 30% 97% / 0.07);
  border: 1px solid hsl(40 30% 97% / 0.12);
  transition: background-color 0.3s, transform 0.3s;
}

.whyus-card:hover {
  background-color: hsl(40 30% 97% / 0.12);
  transform: translateY(-4px);
}

.whyus-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(38 80% 50% / 0.15);
  margin: 0 auto 1.25rem;
  transition: transform 0.3s;
}

.whyus-card:hover .whyus-icon { transform: scale(1.1); }
.whyus-icon svg { color: var(--gold-light); }

.whyus-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.whyus-desc { font-size: 0.875rem; line-height: 1.7; color: #fff; opacity: 0.7; }

.about {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

@media (min-width: 1024px) { .about { padding: 7rem 0; } }

.about-grid { display: grid; gap: 4rem; align-items: center; }

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1rem; }

.about-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.about-highlights { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

.highlight-item svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.about-stats { display: flex; flex-direction: column; gap: 1.5rem; }

.about-stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--r-xl);
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.about-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label { font-size: 1rem; font-weight: 600; color: var(--text-dark); }

.about-stat-line {
  width: 2.5rem;
  height: 2px;
  border-radius: 2px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.values { padding: 5rem 0; background-color: #fff; }

@media (min-width: 1024px) { .values { padding: 7rem 0; } }

.values-grid { display: grid; gap: 2rem; }

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

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.value-card:hover { transform: translateY(-4px); }

.value-line {
  width: 3rem;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 1.5rem;
  transition: width 0.3s;
}

.value-card:hover .value-line { width: 5rem; }

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  margin: 0 auto 1.5rem;
  transition: transform 0.3s;
}

.value-card:hover .value-icon { transform: scale(1.1); }
.value-icon svg { color: #fff; }

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.value-desc { font-size: 0.875rem; line-height: 1.7; color: var(--text-muted); }

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

@media (min-width: 1024px) { .cta-section { padding: 6rem 0; } }

.cta-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .cta-container { padding: 0 1.5rem; } }

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  box-shadow: 0 20px 60px -15px hsl(220 50% 22% / 0.5);
}

@media (min-width: 1024px) { .cta-box { padding: 4rem; } }

.cta-box::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, white, transparent);
  opacity: 0.1;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, var(--gold), transparent);
  opacity: 0.15;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: hsl(38 80% 50% / 0.18);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.cta-text {
  font-size: 1rem;
  color: #fff;
  opacity: 0.75;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

.contact { padding: 5rem 0; background-color: #fff; }

@media (min-width: 1024px) { .contact { padding: 7rem 0; } }

.contact-grid { display: grid; gap: 2.5rem; }

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(220 50% 22% / 0.08);
  flex-shrink: 0;
}

.contact-icon svg { color: var(--navy); }
.contact-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 2px; }
.contact-value { font-size: 0.875rem; font-weight: 500; color: var(--navy); }
.contact-value a { color: var(--navy); }
.contact-value a:hover { text-decoration: underline; }

.contact-hours {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.contact-hours-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.contact-hours p { font-size: 0.875rem; color: #fff; opacity: 0.8; }

.contact-hours-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(40 30% 97% / 0.1);
  font-size: 0.75rem;
  color: #fff;
  opacity: 0.6;
}

.contact-panel {
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.contact-tabs-wrap { padding: 2rem 2rem 0; }

.tabs-nav {
  display: flex;
  background-color: var(--border);
  border-radius: var(--r-md);
  padding: 4px;
  margin-bottom: 2rem;
}

.tab-btn {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.tab-btn.active {
  background-color: #fff;
  color: var(--navy);
  box-shadow: 0 1px 4px hsl(220 50% 22% / 0.1);
}

.tab-content { display: none; padding: 0 2rem 2rem; }
.tab-content.active { display: block; }

.form-row { display: grid; gap: 1.25rem; }

@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { margin-bottom: 1.25rem; }
.form-row .form-group { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(220, 30%, 25%);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-family: inherit;
  background-color: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
}

.form-textarea { resize: none; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23556' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.2s;
  margin-top: 1.25rem;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -6px hsl(220 50% 22% / 0.4);
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-result {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.form-result.show { display: flex; }

.result-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.result-icon.success { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.result-icon.error   { background-color: hsl(0 84% 60% / 0.1); }

.result-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.result-text { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

footer {
  background: linear-gradient(180deg, hsl(220, 50%, 15%), hsl(220, 55%, 10%));
}

.footer-main { padding: 4rem 0; }

.footer-grid { display: grid; gap: 2.5rem; }

@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo img { height: 2.5rem; width: auto; filter: brightness(0) invert(1); }

.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: #fff; }
.footer-logo-sub  { font-size: 0.625rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); }

.footer-tagline { font-size: 0.875rem; line-height: 1.7; color: #fff; opacity: 0.6; margin-bottom: 1.5rem; }

.footer-contacts { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact { display: flex; align-items: center; gap: 0.75rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }
.footer-contact a,
.footer-contact span { font-size: 0.75rem; color: #fff; opacity: 0.6; transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 0.9; }

.footer-col-title { font-size: 0.875rem; font-weight: 600; color: var(--gold-light); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { font-size: 0.75rem; color: #fff; opacity: 0.55; transition: opacity 0.2s; }
.footer-link:hover { opacity: 0.9; }

.footer-cta-text { font-size: 0.75rem; color: #fff; opacity: 0.55; line-height: 1.6; margin-bottom: 1.25rem; }

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transition: transform 0.3s;
}

.btn-footer-cta:hover { transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid hsl(40 30% 97% / 0.08); }

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0;
}

@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }

.footer-copy { font-size: 0.75rem; color: #fff; opacity: 0.4; }

.footer-legal { display: flex; align-items: center; gap: 1rem; }

.footer-legal-link { font-size: 0.75rem; color: #fff; opacity: 0.4; transition: opacity 0.2s; }
.footer-legal-link:hover { opacity: 0.7; }

.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(40 30% 97% / 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.legal-back:hover { color: var(--gold); }
.legal-sep { color: var(--border); }
.legal-page-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

.legal-body {
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 640px) { .legal-body { padding: 4rem 1.5rem; } }

.legal-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.legal-content { font-size: 0.875rem; line-height: 1.8; color: hsl(220, 20%, 30%); }
.legal-section { margin-bottom: 2.5rem; }

.legal-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.legal-content ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.legal-content ul li { margin-bottom: 0.25rem; }
.legal-content a { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 2rem);
  max-width: 42rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px hsl(220 50% 22% / 0.35);
  padding: 1rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

#cookie-banner.show { display: flex; }

.cookie-text {
  font-size: 0.8125rem;
  color: #fff;
  opacity: 0.85;
  flex: 1;
  line-height: 1.5;
}

.cookie-text a { color: var(--gold-light); text-decoration: underline; }

.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

.cookie-btn-decline {
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.7;
  border: 1.5px solid hsl(40 30% 97% / 0.3);
  background: transparent;
  transition: opacity 0.2s;
}

.cookie-btn-decline:hover { opacity: 1; }

.cookie-btn-accept {
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  transition: opacity 0.2s;
}

.cookie-btn-accept:hover { opacity: 0.9; }

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 42rem;
  background: linear-gradient(135deg, #1a2d5a, #2d4a8a);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(26, 45, 90, 0.4);
  padding: 1rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

#cookie-banner.show { display: flex; }

#cookie-banner p {
  font-size: 0.8125rem;
  color: #fff;
  opacity: 0.85;
  flex: 1;
  line-height: 1.5;
  margin: 0;
}

#cookie-banner a { color: #d4a845; text-decoration: underline; }

.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

.cookie-btn-decline {
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.75;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn-decline:hover { opacity: 1; }

.cookie-btn-accept {
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a2d5a;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn-accept:hover { opacity: 0.9; }

.legal-date {
  font-size: 0.75rem;
  color: hsl(220, 15%, 55%);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}
