html[data-lang="fr"] .en, html[data-lang="fr"] .de { display: none !important; }
html[data-lang="en"] .fr, html[data-lang="en"] .de { display: none !important; }
html[data-lang="de"] .fr, html[data-lang="de"] .en { display: none !important; }


.t { display: block; }

:root {
  --cream:             #f5f0e8;
  --parchment:         #ede5d4;
  --terracotta:        #a85c38;
  --terracotta-light:  #c0714a;
  --sage:              #4a5e40;
  --sage-dark:         #3a4e32;
  --stone:             #5a5048;
  --ink:               #1e1a16;
  --on-dark-primary:   #f0ebe0;
  --on-dark-secondary: #c8bfb0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; overflow-wrap: break-word; min-width: 0; }
html { font-size: 18px; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100vw;
}
img, svg { max-width: 100%; }

/* Subtle paper grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .45;
}

/* Language toggle */
.lang-switch {
  display: flex; align-items: center;
  background: rgba(30,26,22,.06);
  border: 1px solid rgba(30,26,22,.16);
  border-radius: 999px;
  padding: 3px; gap: 0;
  flex-shrink: 0;
}
.lang-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .42rem .9rem;
  border: none; border-radius: 999px;
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  transition: background .25s, color .25s;
  min-height: 36px; min-width: 44px;
}
.lang-btn.active { background: var(--terracotta); color: var(--cream) !important; }
.lang-btn:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; }

/* Navigation */
nav {
  position: relative; background: var(--cream);
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 3rem;
  gap: 1.5rem;
  box-shadow: 0 1px 0 rgba(30,26,22,.09);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; letter-spacing: .12em;
  color: var(--ink); text-decoration: none; transition: color .3s; flex-shrink: 0;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stone); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  font-size: 0.8rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terracotta); border: 1.5px solid var(--terracotta);
  padding: .6rem 1.5rem; text-decoration: none; transition: all .3s; min-height: 42px;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--terracotta); color: var(--cream) !important; }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
}
@media (max-width: 380px) {
  nav { padding: .8rem .9rem; gap: .75rem; }
  .nav-logo { font-size: 1.1rem; }
  .lang-btn { padding: .38rem .6rem; font-size: 0.68rem; min-width: 36px; }
}

/* Sticky nav on larger screens (where the full menu is shown) */
@media (min-width: 769px) {
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent; box-shadow: none;
    padding: 1.4rem 3rem;
    transition: background .4s, padding .4s, box-shadow .4s;
  }
  nav.scrolled {
    background: rgba(245,240,232,.94);
    backdrop-filter: blur(14px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 rgba(30,26,22,.09);
  }
  .nav-logo { color: var(--cream); }
  nav.scrolled .nav-logo { color: var(--ink); }
  .nav-links a { color: rgba(240,235,224,.9); }
  nav.scrolled .nav-links a { color: var(--stone); }
  .nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--terracotta); }
  .nav-cta { color: var(--cream); border-color: rgba(240,235,224,.55); }
  nav.scrolled .nav-cta { color: var(--terracotta); border-color: var(--terracotta); }
  .lang-switch { background: rgba(245,240,232,.12); border-color: rgba(245,240,232,.32); }
  nav.scrolled .lang-switch { background: rgba(30,26,22,.06); border-color: rgba(30,26,22,.16); }
  .lang-btn { color: rgba(240,235,224,.75); }
  nav.scrolled .lang-btn { color: var(--stone); }
}

/* Hero */
#hero {
  position: relative; min-height: 640px;
  min-height: max(640px, 100vh);
  min-height: max(640px, 100dvh);
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,26,22,.18) 0%, rgba(30,26,22,.04) 38%, rgba(30,26,22,.72) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('images/house.jpeg') center/cover no-repeat;
  filter: blur(4px) brightness(70%);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

.hero-content { position: relative; z-index: 2; padding: 0 3rem 5.5rem; max-width: 920px; }
.hero-label {
  font-size: 0.8rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(240,235,224,.92); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .8rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  animation: fadeUp .9s .2s both;
}
.hero-label::before { content: ''; width: 36px; height: 1px; background: var(--terracotta-light); flex-shrink: 0; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 7rem); font-weight: 500; line-height: 1.0;
  color: var(--cream); margin-bottom: .7rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  animation: fadeUp .9s .35s both;
}
.hero-title em { font-style: italic; color: #eecfa0; }
.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem); font-weight: 400;
  color: #f0ebe0; letter-spacing: .04em; margin-bottom: 2.8rem;
  text-shadow: 0 1px 7px rgba(0,0,0,.55);
  max-width: 600px;
  animation: fadeUp .9s .5s both;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; animation: fadeUp .9s .65s both; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--terracotta); color: var(--cream);
  font-size: 0.9rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  padding: 1.05rem 2.6rem; text-decoration: none; min-height: 50px;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: #8c4a2c; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid rgba(240,235,224,.7); color: #f0ebe0;
  font-size: 0.9rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  padding: 1.05rem 2.6rem; text-decoration: none; min-height: 50px;
  transition: all .3s;
}
.btn-ghost:hover { background: rgba(240,235,224,.15); transform: translateY(-2px); }

.hero-stats {
  position: absolute; right: 3rem; bottom: 5.5rem; z-index: 2;
  display: flex; flex-direction: column; gap: 1.8rem;
  animation: fadeLeft .9s .7s both;
}
.hero-stat { text-align: right; }
.hero-stat-value {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 500;
  line-height: 1; display: block; color: var(--on-dark-primary);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-stat-label {
  font-size: 0.75rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,235,224,.8); font-weight: 400;
}
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 768px) {
  #hero { min-height: calc(327.5px + 100vh / 3); }
  .hero-content { padding: 0 1.5rem 3.5rem; max-width: 100%; }
  .hero-stats { display: none; }
  .hero-title { font-size: clamp(2.3rem, 11vw, 4rem); }
  .hero-label { margin-bottom: 1rem; font-size: 0.72rem; }
  .hero-subtitle { margin-bottom: 2rem; }
  .hero-actions { gap: .8rem; flex-direction: column; }
  .btn-primary, .btn-ghost { padding: .9rem 1.8rem; font-size: 0.8rem; width: 100%; }
}

/* Shared section lables */
.section-label {
  font-size: 0.8rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: currentColor; flex-shrink: 0; }

/* Intro */
#intro {
  padding: 8rem 3rem; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.2;
  color: var(--ink); margin-bottom: 1.8rem;
}
.intro-text h2 em { font-style: italic; color: var(--terracotta); }
.intro-text p { font-size: 1.05rem; line-height: 1.85; color: var(--stone); margin-bottom: 1.3rem; }
.intro-visual { position: relative; }
.intro-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
}
.image-tag {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--sage-dark); color: var(--on-dark-primary);
  padding: 1.8rem 2.2rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic;
  line-height: 1.4; max-width: 190px;
  box-shadow: 0 12px 40px rgba(30,26,22,.18); z-index: 2;
}
.image-tag strong {
  display: block; font-style: normal; font-size: 0.75rem;
  font-family: 'Jost', sans-serif; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .45rem; color: rgba(240,235,224,.8); font-weight: 400;
}
@media (max-width: 900px) {
  #intro { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .image-tag { bottom: -1rem; right: -.5rem; }
}

/* Features */
#features { background: var(--ink); padding: 7rem 3rem; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 5rem; align-items: end;
}
.features-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.15;
  color: var(--on-dark-primary);
}
.features-header h2 em { font-style: italic; color: var(--terracotta-light); }
.features-header p { font-size: 1rem; line-height: 1.85; color: var(--on-dark-secondary); align-self: end; }
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(200,191,176,.12);
}
.feature-item {
  padding: 2.8rem 2.4rem;
  border-right: 1px solid rgba(200,191,176,.12);
  border-bottom: 1px solid rgba(200,191,176,.12);
  transition: background .35s; position: relative; overflow: hidden;
}
.feature-item:nth-child(3n) { border-right: none; }
.feature-item:nth-child(n+7) { border-bottom: none; }
.feature-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,113,74,.09), transparent);
  opacity: 0; transition: opacity .35s;
}
.feature-item:hover::before { opacity: 1; }
.feature-icon { font-size: 1.8rem; margin-bottom: 1.4rem; display: block; }
.feature-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; color: var(--on-dark-primary); margin-bottom: .8rem;
}
.feature-item p { font-size: 0.95rem; line-height: 1.75; color: var(--on-dark-secondary); }

@media (max-width: 900px) {
  #features { padding: 5rem 1.5rem; }
  .features-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(3n) { border-right: 1px solid rgba(200,191,176,.12); }
  .feature-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
}

/* Gallery */
#gallery { padding: 7rem 3rem; max-width: 1400px; margin: 0 auto; }
.gallery-heading { text-align: center; margin-bottom: 4rem; }
.gallery-heading .section-label { justify-content: center; }
.gallery-heading .section-label::before { display: none; }
.gallery-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: var(--ink);
}
.gallery-heading h2 em { font-style: italic; }
.gallery-note { font-size: 1rem; color: var(--stone); margin-top: 1.2rem; }
.gallery-note a { color: var(--terracotta); text-decoration: none; font-weight: 500; }
.gallery-note a:hover { text-decoration: underline; }
.gallery-mosaic {
  display: grid; grid-template-columns: repeat(12,1fr); gap: 1rem;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: 1/6;  aspect-ratio: 4/3; }
.gallery-item:nth-child(2) { grid-column: 6/9;  aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { grid-column: 9/13; aspect-ratio: 4/3; }
.gallery-item:nth-child(4) { grid-column: 1/5;  aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { grid-column: 5/10; aspect-ratio: 16/9; }
.gallery-item:nth-child(6) { grid-column: 10/13;aspect-ratio: 3/4; }
.gallery-item:nth-child(7) { grid-column: 1/6;  aspect-ratio: 4/3; }
.gallery-item:nth-child(8) { grid-column: 6/9;  aspect-ratio: 3/4; }
.gallery-item:nth-child(9) { grid-column: 9/13; aspect-ratio: 4/3; }
.gallery-item:nth-child(10) { grid-column: 1/4;  aspect-ratio: 3/4; }
.gallery-item:nth-child(11) { grid-column: 4/10; aspect-ratio: 16/9; }
.gallery-item:nth-child(12) { grid-column: 10/13; aspect-ratio: 3/4; }
.gallery-item:nth-child(13) { grid-column: 1/5;  aspect-ratio: 4/3; }
.gallery-item:nth-child(14) { grid-column: 5/10; aspect-ratio: 16/9; }
.gallery-item:nth-child(15) { grid-column: 10/13;aspect-ratio: 3/4; }
.gallery-item:nth-child(16) { grid-column: 1/6;  aspect-ratio: 4/3; }
.gallery-item:nth-child(17) { grid-column: 6/9;  aspect-ratio: 3/4; }
.gallery-item:nth-child(18) { grid-column: 9/13; aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .65s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.4rem 1rem;
  background: linear-gradient(to top, rgba(30,26,22,.82) 0%, rgba(30,26,22,.3) 65%, transparent 100%);
  font-size: 0.82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-dark-primary);
  transform: translateY(100%); transition: transform .35s ease;
}
.gallery-item:hover .gallery-label { transform: translateY(0); }
@media (max-width: 900px) {
  #gallery { padding: 5rem 1.5rem; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .gallery-item:nth-child(n) { grid-column: auto; aspect-ratio: 4/3; }
  .gallery-item:nth-child(1) { grid-column: 1/3; }
}

/* Gallery Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,12,9,.94);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
  padding: 4rem 5rem;
}
.lightbox.open {
  opacity: 1; visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
.lightbox-figure {
  position: relative; display: flex; flex-direction: column; align-items: center;
  max-width: 100%; max-height: 100%;
}
.lightbox-img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto;
  object-fit: contain; display: block;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}
.lightbox-caption { margin-top: 1.4rem; max-width: 640px; text-align: center; }
.lightbox-caption .gallery-label {
  position: static; transform: none; background: none; padding: 0;
  color: var(--on-dark-primary); font-size: 0.9rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: transparent; border: none; cursor: pointer;
  color: rgba(240,235,224,.85); transition: color .25s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--terracotta-light); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { display: block; }
.lightbox-close {
  top: 1.2rem; right: 1.5rem;
  min-width: 44px; min-height: 44px;
}
.lightbox-close svg { width: 24px; height: 24px; }
.lightbox-prev, .lightbox-next {
  top: 50%; transform: translateY(-50%);
  min-width: 56px; min-height: 56px;
}
.lightbox-prev svg, .lightbox-next svg { width: 34px; height: 34px; }
.lightbox-prev { left: .5rem; }
.lightbox-next { right: .5rem; }
@media (max-width: 700px) {
  .lightbox { padding: 4.5rem 1rem 2rem; }
  .lightbox-img { max-height: 62vh; }
  .lightbox-close { top: .6rem; right: .6rem; }
  .lightbox-close svg { width: 20px; height: 20px; }
  .lightbox-prev, .lightbox-next { min-width: 48px; min-height: 48px; }
  .lightbox-prev svg, .lightbox-next svg { width: 26px; height: 26px; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  .lightbox-caption .gallery-label { font-size: 0.8rem; }
}
body.lightbox-open { overflow: hidden; }

/* Specs */
#specs { background: var(--parchment); padding: 7rem 3rem; }
.specs-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start;
}
.specs-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500; line-height: 1.2;
  color: var(--ink); margin-bottom: 1.8rem;
}
.specs-left h2 em { font-style: italic; color: var(--terracotta); }
.specs-left > p { font-size: 1rem; line-height: 1.9; color: var(--stone); margin-bottom: 2.5rem; }
.specs-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.specs-highlights li {
  display: flex;
  gap: .85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--stone);
}
.specs-highlights li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: .58em;
}
.price-block { border-top: 1px solid rgba(30,26,22,.14); padding-top: 2rem; }
.price-label { font-size: 0.8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-bottom: .45rem; }
.price-value { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 500; color: var(--ink); line-height: 1; }
.price-value sup { font-size: 1.5rem; vertical-align: super; }
.price-note { font-size: 0.9rem; color: var(--stone); margin-top: .6rem; }
.specs-table { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(30,26,22,.12); }
.spec-cell {
  padding: 1.9rem 2rem;
  border-right: 1px solid rgba(30,26,22,.12); border-bottom: 1px solid rgba(30,26,22,.12);
  transition: background .3s;
}
.spec-cell:nth-child(2n) { border-right: none; }
.spec-cell:nth-last-child(-n+2) { border-bottom: none; }
.spec-cell:hover { background: rgba(168,92,56,.05); }
.spec-cell-label { font-size: 0.78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin-bottom: .5rem; }
.spec-cell-value { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; color: var(--ink); }
.spec-cell-sub { font-size: 0.88rem; color: var(--stone); margin-top: .25rem; }
@media (max-width: 900px) { #specs { padding: 5rem 1.5rem; } .specs-inner { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 600px) {
  .specs-table { grid-template-columns: 1fr; }
  .spec-cell { border-right: none; border-bottom: 1px solid rgba(30,26,22,.12); }
  .spec-cell:nth-last-child(-n+2) { border-bottom: 1px solid rgba(30,26,22,.12); }
  .spec-cell:last-child { border-bottom: none; }
}

/* Nature */
#nature { padding: 7rem 3rem; max-width: 1200px; margin: 0 auto; text-align: center; }
#nature .section-label { justify-content: center; color: var(--sage); }
#nature .section-label::before { background: var(--sage); }
#nature > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; color: var(--ink);
  margin-bottom: 1rem; line-height: 1.2;
}
#nature > h2 em { font-style: italic; color: var(--sage); }
#nature > p { font-size: 1.05rem; line-height: 1.9; color: var(--stone); max-width: 640px; margin: 0 auto 5rem; }
.nature-seasons { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-bottom: 5rem; }
.season-card {
  padding: 2.4rem 1.8rem; border: 1px solid rgba(30,26,22,.1);
  transition: border-color .3s, transform .3s; position: relative; overflow: hidden;
}
.season-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .35s; }
.season-spring::before  { background: linear-gradient(135deg, rgba(122,140,110,.1), transparent); }
.season-summer::before  { background: linear-gradient(135deg, rgba(192,113,74,.1), transparent); }
.season-autumn::before  { background: linear-gradient(135deg, rgba(184,154,94,.1), transparent); }
.season-winter::before  { background: linear-gradient(135deg, rgba(168,191,200,.1), transparent); }
.season-card:hover::before { opacity: 1; }
.season-card:hover { border-color: rgba(30,26,22,.18); transform: translateY(-5px); }
.season-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.season-name { font-size: 0.78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); margin-bottom: .5rem; }
.season-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: .7rem; }
.season-card p { font-size: 0.95rem; line-height: 1.75; color: var(--stone); }
.nature-quote {
  border-top: 1px solid rgba(30,26,22,.1); border-bottom: 1px solid rgba(30,26,22,.1);
  padding: 4rem 2rem; position: relative;
}
.nature-quote::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 9rem; line-height: .5;
  color: rgba(168,92,56,.12); position: absolute; top: 1.5rem; left: 2rem;
}
.nature-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem); font-style: italic; font-weight: 400;
  color: var(--ink); line-height: 1.55; max-width: 780px; margin: 0 auto 1.5rem;
}
.nature-quote cite { font-size: 0.85rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); font-style: normal; }
@media (max-width: 900px) { .nature-seasons { grid-template-columns: 1fr 1fr; gap: 1rem; } #nature { padding: 5rem 1.5rem; } }
@media (max-width: 480px) { .nature-seasons { grid-template-columns: 1fr; } }

/* Location */
#location { padding: 7rem 3rem; background: var(--ink); }
.location-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.location-img { aspect-ratio: 4/3; overflow: hidden; }
.location-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500; color: var(--on-dark-primary);
  margin-bottom: .6rem; line-height: 1.2;
}
.location-text h2 em { font-style: italic; color: var(--terracotta-light); }
.location-address {
  font-size: 0.88rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-dark-secondary); margin-bottom: 2rem; display: block;
}
.location-text > p { font-size: 1rem; line-height: 1.85; color: var(--on-dark-secondary); margin-bottom: 2.5rem; }
.location-text .section-label { color: var(--terracotta-light); }
.location-text .section-label::before { background: var(--terracotta-light); }
.nearby-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.nearby-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: .9rem; border-bottom: 1px solid rgba(200,191,176,.15);
  font-size: 1rem; color: var(--on-dark-secondary);
}
.nearby-list li:last-child { border-bottom: none; }
.nearby-place { color: var(--on-dark-primary); font-weight: 400; }
.nearby-dist {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500;
  color: #e8a070;
}
@media (max-width: 900px) { #location { padding: 5rem 1.5rem; } .location-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* Call to action */
#cta {
  padding: 9rem 3rem; text-align: center; position: relative;
  overflow: hidden; background: var(--parchment);
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(168,92,56,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(74,94,64,.1) 0%, transparent 60%);
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 500; color: var(--ink);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.cta-inner h2 em { font-style: italic; color: var(--terracotta); }
.cta-inner > p { font-size: 1.05rem; line-height: 1.85; color: var(--stone); margin-bottom: 3rem; }
.cta-actions { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.btn-sage {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 2px solid var(--sage); color: var(--sage-dark);
  font-size: 0.9rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  padding: 1.05rem 2.6rem; text-decoration: none; min-height: 50px; transition: all .3s;
}
.btn-sage:hover { background: var(--sage); color: var(--cream); }
.cta-contact { font-size: 0.9rem; color: var(--stone); margin: 54px 0 0 0; }
.cta-contact a { color: var(--terracotta); text-decoration: none; font-weight: 500; }
.cta-contact a:hover { text-decoration: underline; }

/* Contact form */
.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.contact-field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
}
.contact-field input,
.contact-field textarea {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(30,26,22,.2);
  padding: .85rem 1.1rem;
  width: 100%;
  resize: none;
  transition: border-color .25s, box-shadow .25s;
  /* no border-radius — keeps the sharp editorial feel */
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(90,80,72,.35);
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(168,92,56,.12);
}
.contact-field input:invalid:not(:placeholder-shown),
.contact-field textarea:invalid:not(:placeholder-shown) {
  border-color: #b04040;
}
.contact-form > .contact-field:last-of-type {
  position: absolute;
  left: -9836px;
}
.contact-submit {
  align-self: center;
  margin-top: .4rem;
}
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(74,94,64,.3);
  background: rgba(74,94,64,.06);
}
.contact-success.visible {
  display: flex;
}
.contact-success-icon {
  font-size: 1.8rem;
  color: var(--sage);
}
.contact-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-submit { align-self: stretch; }
}

/* Footer */
footer {
  background: var(--ink); padding: 3rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--on-dark-primary); letter-spacing: .1em; }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-secondary); text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: #e8a070; }
.footer-copy { font-size: 0.82rem; color: var(--on-dark-secondary); opacity: .65; }
@media (max-width: 768px) { footer { padding: 2.5rem 1.5rem; justify-content: center; text-align: center; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Focus and motion */
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
