﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #f5f2ea;
  --bg-soft: #faf8f3;
  --paper: #ffffff;
  --ink: #12191c;
  --ink-soft: #495356;
  --dark: #0f1213;
  --dark-soft: #1b2224;
  --gold: #d7ad45;
  --gold-2: #b98b23;
  --line: #ddd6c8;
  --radius: 16px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-soft);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-2);
}

.eyebrow.on-dark {
  color: #ecd28d;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 4.25rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  margin-bottom: 14px;
}

h3 {
  font-size: clamp(1.06rem, 1.3vw, 1.36rem);
}

p {
  margin: 0;
  line-height: 1.64;
  color: var(--ink-soft);
}

.section {
  padding: clamp(54px, 8vw, 98px) 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(22px, 3.4vw, 36px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: #101314;
}

.btn-primary:hover {
  background: #e3bd5b;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  color: #ecd28d;
  border-color: #ecd28d;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  transition: background 0.24s ease, border-color 0.24s ease;
}

.site-header.scrolled {
  background: rgba(245, 242, 234, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(9px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 17px;
}

.desktop-nav a {
  color: #f3eee2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 600;
}

.site-header.scrolled .desktop-nav a {
  color: #172022;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(15, 18, 19, 0.28);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 92;
}

.menu-toggle span {
  width: 16px;
  height: 1.6px;
  border-radius: 2px;
  background: #fff;
}

.site-header.scrolled .menu-toggle {
  border-color: #adb4b5;
  background: #f2efe8;
}

.site-header.scrolled .menu-toggle span {
  background: #12191b;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  width: min(var(--container), calc(100% - 1rem));
  transform: translate(-50%, -10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.22s ease, visibility 0.2s ease;
  border: 1px solid rgba(236, 210, 140, 0.24);
  background: rgba(11, 14, 15, 0.97);
  border-radius: 12px;
  z-index: 91;
}

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5f0e4;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 80vh;
  transform: translate(-50%, 0);
}

.hero {
  position: relative;
  min-height: min(760px, 100vh);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
      rgba(10, 13, 14, 0.85) 28%,
      rgba(10, 13, 14, 0.48) 53%,
      rgba(10, 13, 14, 0.25) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 102px;
}

.hero-content h1 {
  max-width: 14ch;
}

.hero-content h1,
.hero-content p,
.hero-content .eyebrow {
  color: #f4f0e6;
}

.hero-content .eyebrow {
  color: #ecd28d;
}

.hero-content p {
  margin-top: 16px;
  max-width: 60ch;
}

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

.about {
  background: var(--paper);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 44%) 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.card-media {
  margin: 0;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #ddd5c3 10%, #f8f6f1 72%);
  border: 1px solid #dfd7c7;
  padding: 14px;
}

.about-media img {
  width: 100%;
  height: 550px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(0, 0, 0, 0.04);
}

.about-copy ul {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-copy li {
  position: relative;
  padding-left: 22px;
  color: #2f3739;
}

.about-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.tracks {
  background: #f8f5ef;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.track-card {
  background: #fff;
  border: 1px solid #e2dbc9;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.track-card:hover {
  transform: translateY(-3px);
  border-color: #d6ae4f;
}

.track-card .media {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  background: #dfe4de;
}

.track-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.track-card h3 {
  padding: 11px 12px 8px;
}

.track-card p {
  padding: 0 12px 13px;
  font-size: 0.92rem;
}

.services {
  background: #f2eee5;
  border-top: 1px solid #e1dacb;
  border-bottom: 1px solid #e1dacb;
}

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

.service-card {
  background: #fff;
  border: 1px solid #dfd7c6;
  border-radius: 12px;
  padding: 18px;
}

.service-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  background: #f3e2b5;
  color: #6f5415;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  margin-bottom: 10px;
  font-size: 0.94rem;
}

.service-card a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #805f1a;
  font-weight: 700;
}

.specialties {
  background: var(--paper);
}

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

.specialty-card {
  background: #f8f5ef;
  border: 1px solid #e2dacb;
  border-radius: 12px;
  overflow: hidden;
}

.specialty-card .media {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  background: #d7ded6;
}

.specialty-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.specialty-copy {
  padding: 13px 13px 16px;
}

.specialty-copy p {
  margin-top: 7px;
}

.why-us {
  background: #f7f4ed;
}

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

.why-grid article {
  background: #fff;
  border: 1px solid #e2dbc9;
  border-radius: 12px;
  padding: 18px;
}

.why-grid p {
  margin-top: 8px;
}

.featured {
  background: #faf8f2;
}

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

.featured-card {
  background: #fff;
  border: 1px solid #e2dbc9;
  border-radius: 12px;
  padding: 14px;
}

.featured-card .media {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #dfe3db;
  margin-bottom: 12px;
}

.featured-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-card p {
  margin: 8px 0 11px;
}

.featured-card a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #7b5b14;
  font-weight: 700;
}

.confidence {
  position: relative;
  overflow: hidden;
}

.confidence-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.confidence-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 11, 0.66), rgba(8, 10, 11, 0.8));
}

.confidence-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.confidence-inner h2,
.confidence-inner p {
  color: #f2ede2;
}

.confidence-inner p {
  margin: 0 auto 20px;
  max-width: 62ch;
}

.testimonial {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.08fr;
  gap: 18px;
  align-items: start;
}

.inline-link {
  display: inline-block;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #7b5a17;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.quote-card {
  background: #f3efe5;
  border: 1px solid #e3dbc9;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(13, 16, 17, 0.1);
}

.quote-card p {
  color: #313a3c;
  margin-bottom: 16px;
}

.quote-card strong {
  display: block;
  font-size: 0.92rem;
}

.quote-card span {
  font-size: 0.84rem;
  color: #716552;
}

.faq {
  background: #f3f0e8;
  border-top: 1px solid #e0d8c7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid #ddd5c3;
  border-radius: 10px;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: #202729;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-content p {
  padding: 0 14px 14px;
}

.faq-item.open .faq-content {
  max-height: 220px;
}

.site-footer {
  background: var(--dark);
  color: #efe9de;
  padding: 46px 0 20px;
}

.site-footer p {
  color: #d9d2c3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  border-bottom: 1px solid rgba(217, 210, 195, 0.23);
  padding-bottom: 22px;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.footer-grid nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #efe5ce;
}

.footer-areas {
  padding: 14px 0 8px;
}

.footer-areas p {
  color: #d9d2c3;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-areas strong {
  color: #efe5ce;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-top: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.82rem;
}

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 14px;
  }

  .mobile-menu {
    display: block;
  }

  .tracks-grid,
  .services-grid,
  .specialties-grid,
  .why-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {

  .split-grid,
  .testimonial-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-top: 110px;
    max-width: 100%;
  }
}

@media (max-width: 640px) {

  .tracks-grid,
  .services-grid,
  .specialties-grid,
  .why-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.55rem, 9vw, 2rem);
  }

  .hero-content {
    max-width: 100%;
    padding-right: 12px;
  }

  .hero-content h1,
  .hero-content p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 52px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .header-inner {
    min-height: 70px;
  }

  .logo-link img {
    width: 148px;
    height: auto;
  }

  .mobile-menu {
    width: min(1120px, 94vw);
  }

  .footer-grid nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 1rem);
  }

  .service-card,
  .featured-card,
  .quote-card,
  .why-grid article {
    padding: 14px;
  }
}