:root {
  --bg-primary: #FDFAF4;
  --bg-secondary: #F5F0E8;
  --bg-surface: #EDE8DC;
  --color-forest: #1C2B1E;
  --color-sage: #7A9E7E;
  --color-clay: #C4785A;
  --color-gold: #D4A853;
  --color-taupe: #8C8478;
  --text-primary: #1C2B1E;
  --text-secondary: #4A5548;
  --text-muted: #8C8478;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-soft: 0 4px 24px rgba(28, 43, 30, 0.08);
  --shadow-card: 0 8px 40px rgba(28, 43, 30, 0.12);
  --shadow-hover: 0 16px 56px rgba(28, 43, 30, 0.18);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1320px;
  --section-pad-desktop: 120px;
  --section-pad-tablet: 80px;
  --section-pad-mobile: 60px;
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: var(--section-pad-desktop) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-sage);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--color-clay);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.75;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition-base);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--color-forest);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(28, 43, 30, 0.25);
}

.btn-primary:hover {
  background: #243528;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28, 43, 30, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(28, 43, 30, 0.25);
}

.btn-secondary:hover {
  border-color: var(--color-sage);
  color: var(--color-forest);
  transform: translateY(-2px);
  background: rgba(122, 158, 126, 0.06);
}

.btn-light {
  background: var(--white);
  color: var(--color-forest);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-base);
}

.site-header.scrolled {
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(28, 43, 30, 0.08);
  padding: 16px 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-forest);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 7px;
  height: 7px;
  background: var(--color-sage);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-sage);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-forest);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-forest);
  transition: var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--color-sage);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(253, 250, 244, 0.96) 0%,
    rgba(253, 250, 244, 0.88) 40%,
    rgba(253, 250, 244, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 158, 126, 0.12);
  border: 1px solid rgba(122, 158, 126, 0.3);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 28px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--color-sage);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-forest);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-clay);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-sage));
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 28px 0;
  background: var(--color-forest);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(253, 250, 244, 0.65);
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--color-clay);
  border-radius: 50%;
}

/* ─── INTRO / ABOUT PREVIEW ─── */
.intro-section {
  background: var(--bg-primary);
}

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

.intro-image-wrap {
  position: relative;
}

.intro-image-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.intro-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--bg-primary);
  box-shadow: var(--shadow-card);
}

.intro-stat-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.intro-stat-badge .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-forest);
  line-height: 1;
}

.intro-stat-badge .stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.intro-text .section-subtitle {
  max-width: 100%;
}

.intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  background: rgba(122, 158, 126, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
}

.pillar-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pillar-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── SERVICES ─── */
.services-section {
  background: var(--bg-secondary);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-clay));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(122, 158, 126, 0.15);
}

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

.service-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(28, 43, 30, 0.08);
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.15), rgba(196, 120, 90, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-forest);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-sage);
  text-transform: uppercase;
  transition: gap var(--transition-base);
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  width: 14px;
  height: 14px;
}

/* ─── VALUES / PHILOSOPHY ─── */
.values-section {
  background: var(--color-forest);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.values-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 120, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.values-left .section-label {
  color: rgba(122, 158, 126, 0.8);
}

.values-left .section-label::before {
  background: rgba(122, 158, 126, 0.5);
}

.values-left .section-title {
  color: var(--bg-primary);
}

.values-left .section-subtitle {
  color: rgba(253, 250, 244, 0.6);
}

.values-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: rgba(253, 250, 244, 0.05);
  border: 1px solid rgba(253, 250, 244, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: var(--transition-base);
}

.value-card:hover {
  background: rgba(253, 250, 244, 0.08);
  border-color: rgba(122, 158, 126, 0.3);
  transform: translateY(-4px);
}

.value-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.83rem;
  color: rgba(253, 250, 244, 0.55);
  line-height: 1.7;
}

/* ─── PROCESS ─── */
.process-section {
  background: var(--bg-primary);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header .section-label,
.process-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.process-header .section-label {
  justify-content: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-sage), var(--color-clay), transparent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-forest);
  border: 2px solid transparent;
  transition: var(--transition-base);
  position: relative;
  z-index: 1;
}

.process-step:hover .step-num {
  background: var(--color-forest);
  color: var(--bg-primary);
  border-color: var(--color-sage);
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--color-gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-surface);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--bg-primary);
  padding: var(--section-pad-desktop) 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--color-forest) 0%, #2d4a30 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.2) 0%, transparent 65%);
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196, 120, 90, 0.15) 0%, transparent 65%);
}

.cta-inner .section-label {
  color: rgba(122, 158, 126, 0.9);
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-label::before {
  background: rgba(122, 158, 126, 0.5);
}

.cta-inner .section-title {
  color: var(--bg-primary);
  max-width: 620px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.cta-inner .section-subtitle {
  color: rgba(253, 250, 244, 0.65);
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--color-forest);
  padding: 80px 0 40px;
}

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

.footer-brand .logo {
  color: var(--bg-primary);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(253, 250, 244, 0.55);
  line-height: 1.8;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(253, 250, 244, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 250, 244, 0.6);
  transition: var(--transition-base);
}

.social-link:hover {
  background: rgba(122, 158, 126, 0.2);
  color: var(--bg-primary);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 250, 244, 0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(253, 250, 244, 0.6);
  transition: color var(--transition-base);
}

.footer-col ul a:hover {
  color: var(--bg-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 250, 244, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(253, 250, 244, 0.35);
}

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

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(253, 250, 244, 0.35);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: rgba(253, 250, 244, 0.65);
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at right top, rgba(122, 158, 126, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-sage);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  max-width: 700px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--color-clay);
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.8;
}

/* ─── ABOUT PAGE ─── */
.about-story {
  background: var(--bg-primary);
}

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

.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.about-story-text h2 em {
  font-style: italic;
  color: var(--color-clay);
}

.about-story-text p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-image-secondary {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--bg-primary);
  box-shadow: var(--shadow-card);
}

.team-section {
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-info .team-role {
  font-size: 0.82rem;
  color: var(--color-sage);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.awards-section {
  background: var(--bg-primary);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.award-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.award-item:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.award-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: 8px;
}

.award-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.award-org {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CONTACT PAGE ─── */
.contact-section {
  background: var(--bg-primary);
  padding: 80px 0 var(--section-pad-desktop);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--color-clay);
}

.contact-info p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(122, 158, 126, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* ─── LEGAL PAGES ─── */
.legal-section {
  background: var(--bg-primary);
  padding: 60px 0 var(--section-pad-desktop);
}

.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-surface);
}

.legal-section-block {
  margin-bottom: 48px;
}

.legal-section-block h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-surface);
}

.legal-section-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 28px;
}

.legal-section-block p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-section-block ul {
  list-style: none;
  margin-bottom: 14px;
}

.legal-section-block ul li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.85;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal-section-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--color-sage);
  border-radius: 50%;
}

.legal-highlight-box {
  background: rgba(122, 158, 126, 0.08);
  border-left: 3px solid var(--color-sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.legal-highlight-box p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ─── FAQ (Rules page) ─── */
.faq-grid {
  max-width: 820px;
  margin: 60px auto 0;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 20px;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--color-forest);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-forest);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--color-forest);
}

.faq-item.open .faq-icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 12px 0;
  margin-bottom: 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb-list li a {
  color: var(--color-sage);
  transition: color var(--transition-base);
}

.breadcrumb-list li a:hover {
  color: var(--color-forest);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ─── UTILITY ─── */
.text-center {
  text-align: center;
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.divider {
  height: 1px;
  background: var(--bg-surface);
  margin: 48px 0;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--bg-surface);
  border-bottom: 1px solid var(--bg-surface);
  margin: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-forest);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.notice-bar {
  background: rgba(122, 158, 126, 0.1);
  border: 1px solid rgba(122, 158, 126, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.notice-bar svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-bar p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-green {
  background: rgba(122, 158, 126, 0.12);
  color: var(--color-sage);
}

.tag-clay {
  background: rgba(196, 120, 90, 0.1);
  color: var(--color-clay);
}

.tag-gold {
  background: rgba(212, 168, 83, 0.12);
  color: var(--color-gold);
}