@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --sand: #E8D9C0;
  --terracotta: #C4714A;
  --terracotta-light: #D4876A;
  --sage: #7A8C6E;
  --sage-light: #9AAD8C;
  --forest: #3D5A3E;
  --earth: #6B4F3A;
  --charcoal: #2C2C2C;
  --text-muted: #7A7066;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }

p { line-height: 1.8; color: var(--text-muted); }

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.05em;
}



.nav-logo span {
  color: var(--terracotta);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--terracotta);
  color: white !important;
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--earth) !important;
  color: white !important;
}

.nav-cta::after { display: none !important; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 80% at 65% 50%, rgba(196, 113, 74, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(122, 140, 110, 0.12) 0%, transparent 60%);
}

.hero-circle {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand) 0%, rgba(196,113,74,0.15) 100%);
  opacity: 0.5;
}

.hero-circle-2 {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 550px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(196,113,74,0.25);
  opacity: 0.6;
}

.hero-img-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(45vw, 580px);
  aspect-ratio: 3/4;
  border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
  overflow: hidden;
  background: var(--sand);
}

.hero-img-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(10%) saturate(90%);
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--sand) 0%, var(--terracotta-light) 60%, var(--earth) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder svg {
  width: 60%;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--sage);
}

.hero h1 {
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--terracotta);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
}

.btn-primary:hover {
  background: var(--earth);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,113,74,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: white;
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  display: flex;
  gap: 3rem;
  z-index: 2;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--forest);
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── SECTION BASE ─── */
section { padding: 7rem 4rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '✦';
  font-size: 0.6rem;
}

/* ─── STRIPE ─── */
.stripe {
  background: var(--forest);
  color: var(--cream);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
}

.stripe-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,240,232,0.8);
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  flex-shrink: 0;
  padding-right: 4rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stripe-inner {
  overflow: hidden;
  flex: 1;
}

/* ─── ABOUT PREVIEW ─── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.about-img-grid .img-tall {
  grid-row: 1 / 3;
  aspect-ratio: 2/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand);
  margin-top: 2rem;
}

.about-img-grid .img-wide {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sage-light);
  opacity: 0.7;
}

.about-img-grid .img-sq {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--terracotta-light);
  opacity: 0.5;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

.about-content h2 { margin-bottom: 1.5rem; color: var(--forest); }
.about-content p { margin-bottom: 1.5rem; }

.feature-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ─── CLASSES GRID ─── */
.classes-section { background: var(--cream); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 { color: var(--forest); }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.class-card {
  background: var(--warm-white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.class-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.class-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.class-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.class-body { padding: 1.5rem; }

.class-body h3 {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.class-body p { font-size: 0.88rem; margin-bottom: 1.2rem; }

.class-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.class-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--forest); }

.testimonials-section .section-tag { color: var(--sage-light); }
.testimonials-section h2 { color: var(--cream); margin-bottom: 4rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
}

.quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--terracotta);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--cream);
  display: block;
}

.author-since {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
}

.stars {
  color: #F5C842;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--terracotta);
  padding: 5rem 4rem;
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.btn-white {
  background: white;
  color: var(--terracotta);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(245,240,232,0.7);
  padding: 5rem 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--terracotta); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,113,74,0.1) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 60%, rgba(122,140,110,0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 { color: var(--forest); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--terracotta); }
.breadcrumb-sep { opacity: 0.4; }

/* ─── ABOUT PAGE ─── */
.about-story {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.large-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  color: var(--forest);
  line-height: 1.3;
  position: relative;
  padding-left: 2rem;
}

.large-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--terracotta);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  overflow: hidden;
  background: var(--sand);
  border: 3px solid var(--cream);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--earth);
}

.team-card h3 {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
  display: block;
}

.team-card p { font-size: 0.88rem; }

/* ─── GALLERY ─── */
.gallery-grid {
  columns: 3;
  column-gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item-placeholder {
  width: 100%;
  aspect-ratio: var(--ar, 4/3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-placeholder {
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,90,62,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: white;
}

/* ─── CLASSES PAGE ─── */
.classes-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--sand);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  color: var(--charcoal);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

.schedule-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4rem;
  border-collapse: collapse;
}

.schedule-table th {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--sand);
}

.schedule-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(232,217,192,0.5);
  font-size: 0.9rem;
  vertical-align: middle;
}

.schedule-table tr:hover td { background: rgba(232,217,192,0.2); }

.level-badge {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.level-beginner { background: rgba(122,140,110,0.15); color: var(--sage); }
.level-intermediate { background: rgba(196,113,74,0.12); color: var(--terracotta); }
.level-advanced { background: rgba(61,90,62,0.12); color: var(--forest); }
.level-all { background: rgba(107,79,58,0.1); color: var(--earth); }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 { color: var(--forest); margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.contact-form {
  background: var(--cream);
  padding: 3rem;
  border-radius: 4px;
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,113,74,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── PAGE SECTIONS LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; }

.text-center { text-align: center; }

/* ─── FADE IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--warm-white);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 800;
  }

  .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.05em; }

  section { padding: 5rem 2rem; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 8rem 2rem 3rem; max-width: 100%; }
  .hero-img-wrap, .hero-circle, .hero-circle-2 { display: none; }
  .hero-stats { left: 2rem; gap: 2rem; }

  .about-preview, .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-grid { display: none; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .gallery-grid { columns: 2; }

  .form-row { grid-template-columns: 1fr; }

  .stripe { padding: 1.2rem 2rem; }

  .page-hero { padding: 7rem 2rem 3rem; }
}

@media (max-width: 550px) {
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}