@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Manrope:wght@300;400;500&display=swap');

:root {
  /* Palette: Dark Graphite, Warm Beige, Terracotta (Hue ~162 shifted to ~16 for warmth, but we will use a muted teal-green accent at 162 for the specific prompt request, balanced against the terracotta feel. Wait, prompt asks for "accent terracotta" AND "primary hue around 162". 162 is Green/Teal. To make this "stunning" and "luxury", I will treat the 162 as a deep, sophisticated Emerald/Forest Green to contrast with the Beige, or perhaps a muted Sage. Let's go with a Deep Emerald Green as the primary brand color, and Terracotta as the secondary action color. This creates a high-end "Jewel & Earth" palette. */
  
  --c-bg: #F9F8F6;        /* Warm Beige / Off-white */
  --c-surface: #FFFFFF;   /* Pure White for cards */
  --c-text-main: #1C1E1F; /* Dark Graphite */
  --c-text-muted: #5C6063;
  --c-primary: #1B4D3E;   /* Deep Emerald (Hue 162, dark/saturated) */
  --c-accent: #C86A45;    /* Terracotta */
  --c-line: #E5E2DD;      /* Soft divider */
  
  --f-serif: 'Cormorant Garamond', serif;
  --f-sans: 'Manrope', sans-serif;
  
  --s-padding-y: 120px;
  --s-padding-y-mobile: 80px;
  --s-gap: 40px;
  
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--c-bg);
  color: var(--c-text-main);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-text-main);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 32px; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }

p { margin-bottom: 24px; color: var(--c-text-muted); font-size: 1.05rem; }
p.lead { font-size: 1.25rem; line-height: 1.5; color: var(--c-text-main); max-width: 720px; }

.text-serif { font-family: var(--f-serif); }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; font-weight: 500; }

/* --- Layout & Container --- */
/* THE MANDATORY CONTAINER */
.l-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

section {
  padding-block: var(--s-padding-y);
  position: relative;
}

@media (max-width: 768px) {
  section { padding-block: var(--s-padding-y-mobile); }
}

/* --- Header & Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-block: 24px;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(249, 248, 246, 0.9);
  backdrop-filter: blur(10px);
  padding-block: 16px;
  border-bottom: 1px solid var(--c-line);
}

.site-header .l-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--c-text-main);
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-main);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-primary);
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--c-primary); }
.nav-link:hover::after { width: 100%; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 900px) {
  .nav-list { display: none; } /* Simplified for this output */
  .mobile-toggle { display: block; }
}

/* --- Hero Component --- */
.hero-zone {
  padding-top: 180px; /* Account for fixed header */
  padding-bottom: 100px;
  background-color: var(--c-bg);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--c-primary);
}

.hero-img-wrapper {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 4px;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.hero-img-wrapper:hover img { transform: scale(1.05); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--c-primary);
  color: #FFF;
}

.btn-primary:hover {
  background-color: var(--c-text-main);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--c-text-main);
  color: var(--c-text-main);
}

.btn-outline:hover {
  background-color: var(--c-text-main);
  color: #FFF;
}

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

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--c-surface);
  padding: 40px;
  border: 1px solid var(--c-line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: var(--c-primary);
}

.feature-num {
  font-family: var(--f-serif);
  font-size: 3rem;
  color: var(--c-accent);
  margin-bottom: 16px;
  opacity: 0.8;
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding-block: 60px;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
}

/* --- CTA Band --- */
.cta-zone {
  background-color: var(--c-primary);
  color: #FFF;
  text-align: center;
}

.cta-zone h2 { color: #FFF; }
.cta-zone p { color: rgba(255,255,255,0.8); }

.cta-btn {
  background-color: #FFF;
  color: var(--c-primary);
  margin-top: 24px;
}
.cta-btn:hover {
  background-color: var(--c-accent);
  color: #FFF;
}

/* --- FAQ List --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-line);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  padding-bottom: 24px;
  color: var(--c-text-muted);
  display: block; /* In real app, toggle this */
}

/* --- Footer --- */
.site-footer {
  background-color: var(--c-text-main);
  color: #FFF;
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 { color: #FFF; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 300px; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: 24px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-link:hover { color: #FFF; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-wrapper { height: 400px; order: -1; margin-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-nav { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 40px; }
}
html{-webkit-text-size-adjust:100%}
body{margin:0}
*{box-sizing:border-box}
img,svg,video{max-width:100%;height:auto}
