/* ==========================================================
   Peak Stride Performance — styles.css
   Palette: black, deep gold, dark forest green
   Type:    Italiana / Cormorant Garamond display, Inter body
   ========================================================== */

:root {
  --ink:        #0d1410;        /* near-black with green undertone */
  --ink-soft:   #1a2520;
  --green:      #1f3a2e;        /* deep forest */
  --green-deep: #14271e;
  --green-mid:  #2c4a3a;
  --gold:       #c9a04a;        /* warm antique gold */
  --gold-deep:  #a8842f;
  --gold-light: #e2c585;
  --cream:      #f4ede0;
  --paper:      #faf7f0;
  --bone:       #ece4d2;
  --line:       rgba(13, 20, 16, 0.12);
  --line-light: rgba(244, 237, 224, 0.18);

  --display:    'Italiana', 'Cormorant Garamond', serif;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', -apple-system, system-ui, sans-serif;

  --maxw: 1280px;
  --pad:  clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--gold-deep); }

/* ============ NAVIGATION ============ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 160, 74, 0.15);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.nav-links a:not(.nav-cta):hover { color: var(--gold-light); }
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.65rem 1.25rem !important;
  color: var(--gold-light) !important;
  transition: all .3s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: all .3s ease;
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(13, 20, 16, 0.98);
    padding: 2rem var(--pad);
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform .4s ease;
    border-bottom: 1px solid rgba(201, 160, 74, 0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem var(--pad) 4rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 160, 74, 0.08), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(31, 58, 46, 0.5), transparent 60%),
    linear-gradient(180deg, #0a100c 0%, #0d1410 50%, #0a100c 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.63 0 0 0 0 0.29 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  animation: heroFade 1.2s ease both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-eyebrow .line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-questions {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.5vw, 3.4rem);
  line-height: 1.18;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.q-lead {
  display: block;
  color: var(--cream);
}

.hero-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: left;
  display: grid;
  gap: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: rgba(244, 237, 224, 0.88);
  line-height: 1.55;
}

.hero-list li {
  position: relative;
  padding-left: 2.25rem;
}
.hero-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-bridge {
  margin: 3rem 0;
}

.hero-bridge-line {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-slogan {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
  font-weight: 400;
}
.hero-slogan em {
  color: var(--gold);
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 2.25rem;
  cursor: pointer;
  transition: all .35s ease;
  border: 1px solid transparent;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 237, 224, 0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 1.35rem 3rem;
  font-size: 0.82rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.6);
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50%      { opacity: 1; }
  100%     { transform: translateY(200%); opacity: 0; }
}

/* ============ SECTION SHARED ============ */
.section {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green-mid);
}
.section-marker .marker-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 120px;
}
.section-marker.light { color: var(--gold-light); }
.section-marker.light .marker-line { background: rgba(244, 237, 224, 0.25); }

h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ============ MISSION ============ */
.section-mission {
  padding-top: clamp(5rem, 10vw, 8rem);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.mission-headline {
  position: sticky;
  top: 6rem;
}

.mission-headline h2 {
  margin-bottom: 2.5rem;
}

.horseshoe {
  width: 70px;
  height: 70px;
  color: var(--gold-deep);
  opacity: 0.7;
}

.mission-body p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.mission-body .lead {
  font-size: clamp(1.25rem, 1.7vw, 1.45rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.mission-body strong {
  color: var(--green);
  font-weight: 600;
}

.mission-body blockquote {
  margin-top: 2.5rem;
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--gold);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.4;
  color: var(--green);
  font-style: italic;
}

@media (max-width: 760px) {
  .mission-grid { grid-template-columns: 1fr; }
  .mission-headline { position: static; }
}

/* ============ PILLARS BAND ============ */
.pillars {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem var(--pad);
  position: relative;
  overflow: hidden;
}

.pillars::before, .pillars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.pillars::before { top: 0; }
.pillars::after { bottom: 0; }

.pillars-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.pillar {
  text-align: center;
  padding: 1rem 2rem;
}
.pillar-num {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-text {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}

.pillar-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.5;
}
@media (max-width: 600px) {
  .pillar-divider { display: none; }
  .pillars-inner { gap: 1.5rem; }
}

/* ============ ABOUT ============ */
.section-about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-image-stack {
  position: relative;
  padding-bottom: 3rem;
}

.about-image-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(13, 20, 16, 0.35);
}
.about-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.about-image-main:hover img { transform: scale(1.04); }

.about-image-accent {
  position: absolute;
  bottom: -1rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(13, 20, 16, 0.4);
  border: 6px solid var(--paper);
}
.about-image-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  background: var(--ink);
  color: var(--gold);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  transform: rotate(-4deg);
  box-shadow: 0 10px 25px rgba(13, 20, 16, 0.3);
  border: 1px solid var(--gold);
  z-index: 2;
}
.about-stamp span:first-child {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.stamp-year {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.about-content h2 {
  margin-bottom: 0.5rem;
}

.about-tagline {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-content p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-content strong {
  color: var(--green);
  font-weight: 600;
}

.credentials {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--bone);
  border-left: 3px solid var(--gold);
}
.credentials h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.credentials ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.credentials li {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}
.cred-tick {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.95rem;
  width: 1rem;
  flex-shrink: 0;
}
.credentials em {
  color: var(--green-mid);
  font-style: italic;
  font-size: 0.95rem;
}

.about-close {
  font-style: italic !important;
  color: var(--green) !important;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { max-width: 500px; margin: 0 auto 2rem; }
}

/* ============ SERVICES ============ */
.section-services {
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  position: relative;
}
.section-services > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-services > .section-marker,
.section-services > .services-intro,
.section-services > .service-feature,
.section-services > .services-subheader,
.section-services > .services-sub-note,
.section-services > .services-grid,
.section-services > .coming-soon,
.section-services > .approach {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section-services h2 { color: var(--cream); }
.section-services h3 { color: var(--cream); }
.section-services h4 { color: var(--cream); }

.services-intro {
  margin-bottom: 4rem;
  max-width: 760px;
}
.services-intro h2 em { color: var(--gold); }
.services-intro p {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: rgba(244, 237, 224, 0.78);
}

/* Service Feature Card */
.service-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  padding: 3rem;
  margin-bottom: 5rem;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  border: 1px solid rgba(201, 160, 74, 0.25);
  position: relative;
  overflow: hidden;
}
.service-feature::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 160, 74, 0.12), transparent 70%);
  pointer-events: none;
}

.service-feature-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  align-self: center;
}

.service-feature-content h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--cream);
}
.service-feature-content p {
  color: rgba(244, 237, 224, 0.85);
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.service-feature-content ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.service-feature-content li {
  position: relative;
  padding-left: 2rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(244, 237, 224, 0.92);
}
.service-feature-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 720px) {
  .service-feature { grid-template-columns: 1fr; padding: 2rem; gap: 1.5rem; }
  .service-feature-label { writing-mode: horizontal-tb; transform: none; }
}

.services-subheader {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.subheader-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 160, 74, 0.35);
}

.services-sub-note {
  color: rgba(244, 237, 224, 0.65) !important;
  font-style: italic;
  margin-bottom: 2.5rem;
  font-family: var(--serif);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.service-card {
  background: rgba(244, 237, 224, 0.03);
  border: 1px solid rgba(244, 237, 224, 0.12);
  padding: 2.25rem 2rem;
  transition: all .4s ease;
  position: relative;
}
.service-card:hover {
  background: rgba(244, 237, 224, 0.06);
  border-color: rgba(201, 160, 74, 0.5);
  transform: translateY(-4px);
}

.service-card-num {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h4 {
  margin-bottom: 0.65rem;
}

.service-tagline {
  color: rgba(244, 237, 224, 0.65) !important;
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 1.25rem;
  font-size: 1rem !important;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.service-card li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(244, 237, 224, 0.85);
  line-height: 1.55;
}
.service-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1.2;
}

.service-card-wide { grid-column: span 2; }

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
}

/* Coming Soon */
.coming-soon {
  margin: 5rem auto;
}

.coming-soon-header {
  text-align: center;
  margin-bottom: 3rem;
}
.cs-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 160, 74, 0.1);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}
.coming-soon-header h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cs-card {
  border: 1px dashed rgba(201, 160, 74, 0.4);
  padding: 2.5rem 2rem;
  background: rgba(201, 160, 74, 0.03);
}
.cs-card h4 {
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}
.cs-sub {
  font-size: 0.85rem;
  color: rgba(244, 237, 224, 0.55);
  font-style: italic;
}
.cs-benefits {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cs-benefits li {
  position: relative;
  padding-left: 1.75rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: rgba(244, 237, 224, 0.82);
}
.cs-benefits li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.cs-conditions {
  border-top: 1px solid rgba(244, 237, 224, 0.12);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
.cs-conditions-label {
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.75rem !important;
  font-weight: 500;
}
.cs-conditions ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.cs-conditions li {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: rgba(244, 237, 224, 0.78);
  padding-left: 1.25rem;
  position: relative;
}
.cs-conditions li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

@media (max-width: 720px) {
  .coming-soon-grid { grid-template-columns: 1fr; }
}

/* Approach */
.approach {
  text-align: center;
  margin: 5rem auto 0;
  max-width: 760px;
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 160, 74, 0.25);
  border-bottom: 1px solid rgba(201, 160, 74, 0.25);
}
.approach h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.approach p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: rgba(244, 237, 224, 0.85);
}
.approach em {
  color: var(--gold);
  font-style: italic;
}

/* ============ GALLERY ============ */
.section-gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 1.5rem;
}

.g-item {
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px -15px rgba(13, 20, 16, 0.3);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.g-item:hover img { transform: scale(1.06); }

.g-item-1 { grid-column: span 7; grid-row: span 2; }
.g-item-2 { grid-column: span 5; grid-row: span 1; }
.g-item-3 { grid-column: span 5; grid-row: span 1; }

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .g-item-1, .g-item-2, .g-item-3 {
    grid-column: span 1; grid-row: span 1;
  }
}

/* ============ CONTACT ============ */
.section-contact {
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 160, 74, 0.1), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(31, 58, 46, 0.4), transparent 60%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}

.section-contact h2 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.section-contact h2 em { color: var(--gold); }

.contact-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: rgba(244, 237, 224, 0.78);
  max-width: 600px;
  margin: 0 auto 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  border: 1px solid rgba(244, 237, 224, 0.15);
  padding: 2.5rem 1.75rem;
  background: rgba(244, 237, 224, 0.02);
  transition: all .35s ease;
}
.contact-card:hover {
  border-color: rgba(201, 160, 74, 0.5);
  background: rgba(244, 237, 224, 0.04);
}

.contact-card-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-card-value {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.45;
}
.contact-card-value a {
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 160, 74, 0.3);
  transition: all .3s ease;
}
.contact-card-value a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(244, 237, 224, 0.55);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
  font-style: italic;
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  background: #060a08;
  color: rgba(244, 237, 224, 0.6);
  padding: 3rem var(--pad) 2.5rem;
  border-top: 1px solid rgba(201, 160, 74, 0.15);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  height: 60px;
  width: auto;
  opacity: 0.95;
}
.footer-slogan {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.footer-meta {
  text-align: right;
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.footer-tag {
  font-style: italic;
  font-size: 0.75rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

/* ============ FADE-UP ON SCROLL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
