/* === CUSTOM PROPERTIES === */
:root {
  --cream: #EFF1E5;
  --cream-mid: #E2E8D2;
  --brown-deep: #1B2318;
  --brown-mid: #3E4D32;
  --brown-light: #788868;
  --accent: #9B6B47;
  --accent-warm: #C4956A;
  --white: #F6F8F0;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  --section-pad: clamp(5rem, 10vw, 8rem);
  --container: min(1200px, 100% - 3rem);
}

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

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

body {
  font-family: var(--ff-sans);
  background-color: var(--cream);
  color: var(--brown-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture — gives the page a paper/organic feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

button {
  font-family: var(--ff-sans);
}

/* === NAV === */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  padding: 1.6rem 2.5rem;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

#nav.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 1px 0 rgba(28, 18, 10, 0.08);
}

/* Brand — grid column 1 */
.nav-brand {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: white;
  transition: color 0.4s;
  display: inline-block;
}

#nav.scrolled .nav-name {
  color: var(--brown-deep);
}

.nav-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.4s;
  font-weight: 300;
}

#nav.scrolled .nav-sub {
  color: var(--brown-light);
}

/* Center links — grid column 2 */
.nav-center {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-top: 0.15rem;
}

.nav-center a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.nav-center a:hover {
  color: white;
}

#nav.scrolled .nav-center a {
  color: var(--brown-mid);
}

#nav.scrolled .nav-center a:hover {
  color: var(--brown-deep);
}

/* Right side — grid column 3 */
.nav-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-end;
}

.lang-switcher {
  display: flex;
  gap: 0.2rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.15rem 0.3rem;
  transition: color 0.3s;
  border-radius: 2px;
}

.lang-btn:hover,
.lang-btn.active {
  color: white;
}

#nav.scrolled .lang-btn {
  color: var(--brown-light);
}

#nav.scrolled .lang-btn:hover,
#nav.scrolled .lang-btn.active {
  color: var(--brown-deep);
}

.btn-book {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-book:hover {
  background: white;
  color: var(--brown-deep);
  border-color: white;
}

#nav.scrolled .btn-book {
  border-color: rgba(28, 18, 10, 0.5);
  color: var(--brown-deep);
}

#nav.scrolled .btn-book:hover {
  background: var(--brown-deep);
  color: var(--cream);
  border-color: var(--brown-deep);
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: background 0.4s;
}

#nav.scrolled .hamburger span {
  background: var(--brown-deep);
}

/* === MOBILE OVERLAY === */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}

.mobile-overlay.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 1.6rem;
  right: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--brown-deep);
}

.mobile-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.mobile-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mobile-nav a {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 400;
  color: var(--brown-deep);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}

.mobile-overlay.open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay.open .mobile-nav a:nth-child(1) { transition-delay: 0.06s; }
.mobile-overlay.open .mobile-nav a:nth-child(2) { transition-delay: 0.12s; }
.mobile-overlay.open .mobile-nav a:nth-child(3) { transition-delay: 0.18s; }
.mobile-overlay.open .mobile-nav a:nth-child(4) { transition-delay: 0.24s; }
.mobile-overlay.open .mobile-nav a:nth-child(5) { transition-delay: 0.3s; }

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

.mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-lang .lang-btn {
  color: var(--brown-light);
  font-size: 0.8rem;
}

.mobile-lang .lang-btn.active,
.mobile-lang .lang-btn:hover {
  color: var(--brown-deep);
}

.mobile-book {
  border-color: rgba(28, 18, 10, 0.45);
  color: var(--brown-deep);
  font-size: 0.72rem;
  padding: 0.65rem 1.3rem;
}

.mobile-book:hover {
  background: var(--brown-deep);
  color: var(--cream);
  border-color: var(--brown-deep);
}

/* === HERO === */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(28, 18, 10, 0.28) 0%,
    rgba(28, 18, 10, 0.04) 30%,
    rgba(28, 18, 10, 0.22) 55%,
    rgba(28, 18, 10, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(1200px + 3rem);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

@media (min-width: 1248px) {
  .hero-content {
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
  }
}

#hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3.25rem, 7.5vw, 6.75rem);
  font-weight: 300;
  line-height: 0.93;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.btn-hero {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  margin-bottom: 3.5rem;
}

.btn-hero:hover {
  background: white;
  color: var(--brown-deep);
  border-color: white;
}

.hero-values {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.hero-values span {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* === LAYOUT HELPERS === */
.container {
  width: var(--container);
  margin: 0 auto;
}

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

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--brown-deep);
  margin-bottom: 3rem;
}

.eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

/* === INVITATION === */
#invitation {
  background: #E6DBC8;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

/* soft warm inner-glow from center */
#invitation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  max-width: 700px;
  height: 70vw;
  max-height: 700px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.invitation-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.invitation-botanical {
  display: block;
  margin: 0 auto 2rem;
  opacity: 0.55;
}

.invitation-text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  font-weight: 300;
  line-height: 1.8;
  color: #3E3020;
  text-align: center;
}

.invitation-text .pause {
  display: block;
  margin: 0.75em 0;
  font-size: 0.88em;
  opacity: 0.65;
}

.invitation-text .key {
  display: block;
  margin-top: 0.85em;
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.invitation-close {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: rgba(62, 48, 32, 0.6);
}

/* === TWO DOORS (home hub) — equal-weight entrances to the two worlds === */
#doors {
  padding: 0;
  background: var(--brown-deep);
}

.doors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.door {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(340px, 44vw, 540px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.door-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.door:hover .door-bg img {
  transform: scale(1.05);
}

.door-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(27, 35, 24, 0.30) 0%,
    rgba(27, 35, 24, 0.52) 55%,
    rgba(27, 35, 24, 0.86) 100%
  );
  transition: background 0.5s var(--ease);
}

.door:hover .door-overlay {
  background: linear-gradient(
    to bottom,
    rgba(27, 35, 24, 0.22) 0%,
    rgba(27, 35, 24, 0.44) 55%,
    rgba(27, 35, 24, 0.82) 100%
  );
}

.door-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  max-width: 34rem;
}

.door-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.door-content p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(246, 248, 240, 0.82);
  margin-bottom: 1.5rem;
}

.door-enter {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.3rem;
  transition: letter-spacing 0.4s var(--ease), border-color 0.3s;
}

.door:hover .door-enter {
  letter-spacing: 0.2em;
  border-color: var(--white);
}

/* Hairline between the two doors so neither reads as dominant */
.door + .door {
  border-left: 1px solid rgba(246, 248, 240, 0.12);
}

/* === I HOLD SPACE FOR === */
/* Three full-bleed horizontal bands. Each one carries a wash of colour that
   fades out to the right, faint pinstripes for texture, a rule that draws
   itself, and words that arrive one after another. */
#hold {
  padding: 0;
  background: var(--cream);
}

.hold-line {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(27, 35, 24, 0.10);
}

.hold-line:last-child {
  border-bottom: 1px solid rgba(27, 35, 24, 0.10);
}

/* colour wash, strongest at the left edge */
.hold-line::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hold-line--clay::before {
  background: linear-gradient(100deg, rgba(214, 158, 96, 0.38) 0%, rgba(214, 158, 96, 0.11) 46%, transparent 80%);
}

.hold-line--sage::before {
  background: linear-gradient(100deg, rgba(120, 136, 104, 0.32) 0%, rgba(120, 136, 104, 0.09) 46%, transparent 80%);
}

.hold-line--terra::before {
  background: linear-gradient(100deg, rgba(155, 107, 71, 0.30) 0%, rgba(155, 107, 71, 0.08) 46%, transparent 80%);
}

/* barely-there pinstripes — reads as texture, not pattern */
.hold-line::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(27, 35, 24, 0.04) 0 1px, transparent 1px 92px);
}

.hold-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(2.75rem, 6.5vw, 5.5rem) 0;
}

.hold-num {
  font-family: var(--ff-serif);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding-top: 0.7em;
}

.hold-line p {
  font-family: var(--ff-serif);
  font-size: clamp(1.55rem, 3.5vw, 2.9rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.005em;
  color: var(--brown-deep);
  max-width: 26ch;
}

/* each word arrives just after the one before it */
.hold-line .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i) * 0.05s);
}

.hold-line.visible .w {
  opacity: 1;
  transform: none;
}

/* a hairline that draws itself out from under the words */
.hold-rule {
  display: block;
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), rgba(155, 107, 71, 0));
  transition: width 1.5s var(--ease) 0.35s;
}

.hold-line.visible .hold-rule {
  width: min(440px, 62%);
}

/* the words carry the motion, so the band itself should not fade in */
.hold-line.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hold-line .w { opacity: 1; transform: none; transition: none; }
  .hold-rule { transition: none; width: min(440px, 62%); }
}

/* === OFFERINGS === */
#offerings {
  background: var(--cream-mid);
  padding-bottom: var(--section-pad);
}

/* An odd card in a group spans the full row instead of leaving a gap */
.offering-card--wide {
  grid-column: 1 / -1;
}

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

.grid-section-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0 0.5rem;
  margin-top: 0.5rem;
}

.grid-section-label:first-child {
  margin-top: 0;
}

.grid-section-label span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0.85;
}

.grid-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(155, 107, 71, 0.2);
}

.offering-card {
  background: #F3EBE0;
  border: 1px solid rgba(155, 107, 71, 0.12);
  box-shadow: 0 2px 28px rgba(27, 35, 24, 0.06), 0 1px 4px rgba(27, 35, 24, 0.04);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.offering-card:hover {
  box-shadow: 0 8px 40px rgba(27, 35, 24, 0.1), 0 2px 8px rgba(27, 35, 24, 0.06);
  transform: translateY(-3px);
}

.card-inner {
  padding: 2.5rem 2.5rem 2.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-icon {
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.card-icon svg {
  display: block;
}

.card-num {
  font-family: var(--ff-serif);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}

.offering-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.card-sub {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1.5rem;
}

.card-inner > p:not(.card-sub) {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--brown-mid);
  flex: 1;
  margin-bottom: 2rem;
}

.card-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: letter-spacing 0.35s var(--ease), color 0.3s;
  margin-top: auto;
  display: inline-block;
}

.card-link:hover {
  letter-spacing: 0.09em;
  color: var(--brown-deep);
}

/* === ABOUT === */
#about {
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-mid);
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(155, 107, 71, 0.18);
  z-index: 1;
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.9s var(--ease);
}

.about-layout:hover .photo-frame img {
  transform: scale(1.03);
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.about-text > p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--brown-mid);
  margin-bottom: 2.25rem;
}

.btn-secondary {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid rgba(28, 18, 10, 0.45);
  color: var(--brown-deep);
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.btn-secondary:hover {
  background: var(--brown-deep);
  color: var(--cream);
  border-color: var(--brown-deep);
}

/* === WEBSITES === */
#websites {
  background: var(--cream-mid);
}

.websites-header {
  max-width: 680px;
  margin-bottom: 3rem;
}

.websites-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 0.85rem;
}

.websites-intro {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--brown-mid);
}

.accordion {
  border-top: 1px solid rgba(28, 18, 10, 0.12);
  border-bottom: 1px solid rgba(28, 18, 10, 0.12);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown-deep);
  text-align: left;
  transition: color 0.3s;
  gap: 1rem;
}

.accordion-trigger:hover {
  color: var(--accent);
}

.acc-icon {
  flex-shrink: 0;
  transition: transform 0.45s var(--ease);
  color: var(--brown-light);
}

.accordion-trigger[aria-expanded="true"] .acc-icon {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s var(--ease);
}

.accordion-content.open {
  max-height: 1200px;
}

.accordion-inner {
  padding: 0.25rem 0 2.75rem;
}

.accordion-inner > p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--brown-mid);
  max-width: 680px;
  margin-bottom: 2.25rem;
}

.accordion-inner h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 1.25rem;
}

.example-sites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.example-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: inherit;
  transition: opacity 0.3s;
}

a.example-card:hover {
  opacity: 0.85;
}

.example-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 3px;
  background: var(--cream);
  border: 1px solid rgba(28, 18, 10, 0.07);
}

.example-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.example-img-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(155, 107, 71, 0.06) 100%);
}

.example-card > p {
  font-size: 0.75rem;
  color: var(--brown-light);
  letter-spacing: 0.04em;
}

/* === CONNECT === */
#connect {
  background: var(--brown-deep);
  padding: var(--section-pad) 0;
}

.connect-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

#connect .eyebrow {
  color: var(--accent-warm);
}

.connect-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.connect-text > p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(253, 250, 246, 0.55);
}

.connect-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1.75rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.38);
}

.contact-item a {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--accent-warm);
}

.social-row {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(253, 250, 246, 0.45);
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--white);
}

/* === FOOTER === */
footer {
  background: var(--brown-deep);
  border-top: 1px solid rgba(253, 250, 246, 0.07);
  padding: 1.5rem 0;
}

footer p {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(253, 250, 246, 0.25);
  text-align: center;
}

/* === NAV SEPARATOR — divides the inner work from the websites craft === */
.nav-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  align-self: center;
}

#nav.scrolled .nav-sep {
  background: rgba(28, 18, 10, 0.25);
}

.nav-center a[aria-current="page"] {
  color: white;
}

#nav.scrolled .nav-center a[aria-current="page"] {
  color: var(--brown-deep);
  font-weight: 500;
}

/* === PAGE HERO (subpages) === */
.page-hero {
  background: var(--cream-mid);
  padding: clamp(8.5rem, 16vw, 11.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.page-hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--brown-deep);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.page-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--brown-light);
  max-width: 540px;
}

/* === DETAIL SECTIONS (subpages) === */
.detail {
  background: var(--cream);
}

.detail.alt {
  background: var(--cream-mid);
}

.detail-block {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.detail-block.flip .detail-photo {
  order: 2;
}

.photo-frame--wide {
  aspect-ratio: 4/3;
}

.detail-text .card-num {
  margin-bottom: 1rem;
}

.detail-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--brown-deep);
  margin-bottom: 0.4rem;
}

.detail-text .card-sub {
  margin-bottom: 1.5rem;
}

.detail-text > p:not(.card-sub) {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--brown-mid);
}

.detail-text > p:not(.card-sub) + p:not(.card-sub) {
  margin-top: 1.1rem;
}

/* Wide full-bleed photo (gatherings opening) */
.photo-wide {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}

.photo-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ecstatic dance — abstract movement mark instead of a photo */
.dance-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: #F3EBE0;
  border: 1px solid rgba(155, 107, 71, 0.12);
}

/* Prose block (story / how it works) */
.prose {
  max-width: 680px;
}

.prose h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 1.25rem;
}

.prose p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--brown-mid);
}

.prose p + p {
  margin-top: 1.25rem;
}

/* === CAPABILITY CARDS (websites page) === */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.cap-card {
  background: #F3EBE0;
  border: 1px solid rgba(155, 107, 71, 0.12);
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 28px rgba(27, 35, 24, 0.06), 0 1px 4px rgba(27, 35, 24, 0.04);
}

.detail.alt .cap-card {
  background: var(--cream);
}

.cap-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 0.6rem;
}

.cap-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--brown-mid);
}

.example-sites--page {
  grid-template-columns: repeat(4, 1fr);
}

/* === PROJECT SHOWCASE (websites page) — large, clickable site cards === */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: 2.75rem;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(155, 107, 71, 0.14);
  overflow: hidden;
  color: inherit;
  box-shadow: 0 2px 28px rgba(27, 35, 24, 0.06), 0 1px 4px rgba(27, 35, 24, 0.04);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.detail.alt .showcase-card {
  background: #F3EBE0;
}

a.showcase-card:hover {
  box-shadow: 0 10px 44px rgba(27, 35, 24, 0.12), 0 2px 8px rgba(27, 35, 24, 0.06);
  transform: translateY(-4px);
}

.showcase-shot {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--cream-mid);
  border-bottom: 1px solid rgba(155, 107, 71, 0.12);
}

.showcase-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.9s var(--ease);
}

a.showcase-card:hover .showcase-shot img {
  transform: scale(1.03);
}

.showcase-body {
  padding: 1.75rem 1.75rem 1.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.showcase-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.showcase-person {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.showcase-role {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--brown-mid);
  margin-bottom: 1.4rem;
}

.showcase-visit {
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: letter-spacing 0.35s var(--ease);
}

a.showcase-card:hover .showcase-visit {
  letter-spacing: 0.09em;
}

.showcase-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
  border: 1px solid rgba(120, 136, 104, 0.4);
  border-radius: 2px;
  padding: 0.25rem 0.55rem;
  margin-top: auto;
}

/* === PRICING === */
.price-intro {
  max-width: 660px;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--brown-mid);
  margin-bottom: 2.75rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: #F3EBE0;
  border: 1px solid rgba(155, 107, 71, 0.14);
  padding: 2rem 2rem 2.15rem;
}

.detail.alt .price-card {
  background: var(--cream);
}

.price-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.price-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--brown-mid);
  margin-bottom: 1.6rem;
}

.price-amount {
  margin-top: auto;
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  padding-top: 1rem;
  border-top: 1px solid rgba(155, 107, 71, 0.2);
}

/* === WEBSITES TEASER (home) === */
#websites-teaser {
  background: var(--brown-mid);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.teaser-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

#websites-teaser .eyebrow {
  color: var(--accent-warm);
}

.teaser-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.teaser-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(246, 248, 240, 0.6);
  max-width: 560px;
}

.btn-light {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-light:hover {
  background: var(--white);
  color: var(--brown-deep);
  border-color: var(--white);
}

/* === PAGE CTA (subpages) === */
.page-cta {
  background: var(--brown-deep);
  text-align: center;
}

.page-cta h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto 1rem;
}

.page-cta-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(253, 250, 246, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 1px solid rgba(253, 250, 246, 0.38);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.btn-contact svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.btn-contact:hover {
  background: var(--white);
  color: var(--brown-deep);
  border-color: var(--white);
}

.cta-phone {
  margin-top: 2rem;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: rgba(253, 250, 246, 0.45);
}

.cta-phone a {
  transition: color 0.3s;
}

.cta-phone a:hover {
  color: var(--accent-warm);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .nav-center {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
    grid-column: 3;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(3.5rem, 9vw, 5rem);
  }

  #nav {
    padding: 1.25rem 1.5rem;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    max-width: 400px;
  }

  .connect-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .connect-info {
    padding-top: 0;
  }

  .example-sites {
    grid-template-columns: 1fr 1fr;
  }

  .hero-values {
    gap: 1.25rem;
    flex-direction: column;
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  .detail-block {
    grid-template-columns: 1fr;
  }

  .detail-block.flip .detail-photo {
    order: 0;
  }

  .detail-photo {
    max-width: 440px;
  }

  .photo-wide {
    aspect-ratio: 16/10;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .example-sites--page {
    grid-template-columns: 1fr 1fr;
  }

  .teaser-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .doors-grid {
    grid-template-columns: 1fr;
  }

  .door {
    min-height: 320px;
  }

  .door + .door {
    border-left: none;
    border-top: 1px solid rgba(246, 248, 240, 0.12);
  }

  .hold-inner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hold-num {
    padding-top: 0;
  }

  .hold-line p {
    max-width: none;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing and hold blocks need room before the mobile breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  #nav {
    padding: 1.1rem 1.25rem;
  }

  .example-sites,
  .example-sites--page {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-contact {
    justify-content: center;
  }

  .card-inner {
    padding: 2.25rem 1.75rem;
  }

  .social-row {
    gap: 1.25rem;
  }

  .mobile-overlay {
    padding: 5rem 1.75rem 3rem;
  }

  .mobile-close {
    right: 1.75rem;
  }
}

/* === UNDERLINED EMPHASIS === */
/* Used in sessions.html for the underlined words Giel asked for
   ("A session is NOT a conversation…", "…where you can FULLY be yourself").
   Kept as its own span because setLanguage() writes textContent and would
   strip any inline <u> tag. */
.u {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(155, 107, 71, 0.75);
}

/* === IN THEIR OWN WORDS (reviews) === */
.words {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  background: #E6DBC8;
}

.words[hidden] {
  display: none;
}

.words::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -12%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.3), transparent 65%);
  pointer-events: none;
}

.words .container {
  position: relative;
  z-index: 1;
}

.words-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 2.75rem;
}

.word-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2.9rem 1.9rem 1.9rem;
  background: rgba(246, 248, 240, 0.74);
  border: 1px solid rgba(155, 107, 71, 0.16);
  box-shadow: 0 2px 28px rgba(27, 35, 24, 0.05), 0 1px 4px rgba(27, 35, 24, 0.03);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.word-card:hover {
  box-shadow: 0 10px 44px rgba(27, 35, 24, 0.1), 0 2px 8px rgba(27, 35, 24, 0.05);
  transform: translateY(-3px);
}

.word-mark {
  position: absolute;
  top: 0.55rem;
  left: 1.45rem;
  font-family: var(--ff-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(155, 107, 71, 0.26);
}

.word-quote {
  margin: 0 0 1.5rem;
}

.word-quote p {
  font-family: var(--ff-serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--brown-deep);
}

.word-quote p + p {
  margin-top: 0.9rem;
}

.word-orig {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--brown-light);
}

.word-by {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(155, 107, 71, 0.22);
}

.word-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--brown-deep);
}

.word-role {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.word-link {
  align-self: flex-start;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--brown-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(62, 77, 50, 0.25);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.word-link:hover {
  color: var(--accent);
  border-color: rgba(155, 107, 71, 0.5);
}
