:root {
  --bg: #f6f1ea;
  --surface: rgba(255,255,255,0.92);
  --surface-strong: #fffdfa;
  --surface-soft: rgba(255,255,255,0.78);
  --text: #211813;
  --muted: #6f6258;
  --accent: #b07a4f;
  --accent-dark: #5e3923;
  --accent-soft: #e8d5c4;
  --line: rgba(94, 57, 35, 0.12);
  --shadow: 0 28px 80px rgba(36, 24, 18, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232,213,196,0.42), transparent 28%),
    radial-gradient(circle at right 15%, rgba(255,255,255,0.5), transparent 24%),
    linear-gradient(180deg, #fcf8f2 0%, #f2e9df 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; }

.hero {
  position: relative;
  min-height: 96vh;
  padding: 6rem 1.2rem 6rem;
  color: white;
  background: url('assets/hero.jpg') center/cover no-repeat;
}
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 18, 14, 0.38), rgba(24, 18, 14, 0.8)),
    linear-gradient(120deg, rgba(176,122,79,0.18), transparent 44%),
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 28%);
}
.nav, .hero-inner { position: relative; z-index: 2; }
.nav {
  position: fixed;
  top: 0.9rem;
  left: 0.75rem;
  right: 0.75rem;
  max-width: 1160px;
  margin: 0 auto;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 22px;
  background: rgba(28, 21, 17, 0.34);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
  backdrop-filter: blur(16px);
}
.brand {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.brand::after {
  content: 'by Annè';
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 0.18rem;
}
.brand:hover {
  opacity: 0.82;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.links { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.links a, .btn { text-decoration: none; }
.links a {
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
  position: relative;
}
.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.72);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.links a:hover::after,
.links a:focus-visible::after {
  transform: scaleX(1);
}
.language-switcher {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 700;
}
.lang-btn.active {
  background: white;
  color: var(--accent-dark);
}
.lang-flag {
  font-size: 0.95rem;
  line-height: 1;
}
.lang-code {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.hero-inner {
  max-width: 900px;
  padding-top: 6.2rem;
}
.eyebrow, .kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
h1, h2, h3 { margin: 0; text-wrap: balance; }
h1 {
  margin-top: 0.85rem;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  max-width: 900px;
  text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.lead {
  max-width: 720px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.96);
  margin-top: 1.35rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.hero-metrics {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.metric-pill {
  min-width: 180px;
  padding: 0.95rem 1.1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  margin-bottom: 0.35rem;
}

.metric-pill strong {
  font-size: 1rem;
  color: white;
}
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(180deg, #fffaf5 0%, #f3e2d1 100%);
  color: var(--accent-dark);
  box-shadow: 0 18px 36px rgba(64, 40, 25, 0.16);
}
.btn.secondary { color: white; border: 1px solid rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
.btn.ghost { color: var(--accent-dark); border: 1px solid var(--line); background: rgba(255,255,255,0.42); }

.statement-section {
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  padding: 0 1.2rem;
}
.statement-card {
  background: var(--surface-soft);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 32px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.statement-card h2 { margin-top: 0.35rem; font-size: clamp(1.8rem, 3.5vw, 2.9rem); }
.split-statement {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.8rem;
  align-items: end;
}
.statement-side-copy {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
}
.hero-small {
  min-height: 56vh;
  padding-top: 6rem;
}
.hero-small-inner {
  padding-top: 3.5rem;
}
.kicker { color: var(--accent); }
.section { padding: 5rem 1.2rem; scroll-margin-top: 110px; }
.split-layout, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.content-block h2, .section-heading h2, .highlight-grid h2, .contact-grid h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}
p, li, .section-heading p { color: var(--muted); }

.section-heading-narrow {
  max-width: 680px;
}
.visual-card, .card, .feature-card, .gallery-card, .contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.visual-card, .gallery-card { overflow: hidden; }

.about-editorial {
  align-items: stretch;
}

.framed-visual {
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,238,230,0.9));
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
  color: var(--accent-dark);
}

.about-signature p {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.signature-line {
  width: 56px;
  height: 1px;
  background: rgba(94,57,35,0.3);
  flex: 0 0 auto;
}
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.visual-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.gallery-preview-section {
  padding-top: 4rem;
}
.gallery-preview-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gallery-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.gallery-preview-copy {
  padding: 2.3rem;
}

.spotlight-card {
  position: relative;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: auto 2rem 2rem auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,196,0.6), rgba(232,213,196,0));
  pointer-events: none;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.2rem;
}

.gallery-page-section {
  padding-top: 4.2rem;
}

.gallery-page-heading {
  margin-bottom: 2rem;
}

.premium-gallery-grid {
  padding: 1.2rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(251,244,238,0.54));
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: var(--shadow);
}

.resa-gallery-page-section {
  padding-top: 4.2rem;
}

.resa-premium-gallery-grid {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(251,241,235,0.56));
}
.stay-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}
.resa-hero {
  background:
    linear-gradient(rgba(24, 18, 14, 0.1), rgba(24, 18, 14, 0.42)),
    url('assets/resa-gallery-1.jpg') center/cover no-repeat;
}
.products-hero {
  background: url('assets/resa-product-skincare-set.jpg') center/cover no-repeat;
}
.center-cta {
  justify-content: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.resa-products-section {
  padding-top: 4.2rem;
}

.resa-product-grid {
  gap: 1.5rem;
}
.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(249,243,237,0.92));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.product-card:hover img {
  transform: scale(1.025);
}
.product-grid { margin-top: 2rem; }
.product-card > div {
  padding: 1.25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-card > div h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.6rem;
}
.product-copy {
  padding: 1.25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-copy h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.6rem;
}
.product-category {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-price, .price {
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 1.15rem;
  font-weight: 800;
}
.muted-price {
  color: var(--muted);
  font-size: 0.98rem;
}
.product-enquiry-card {
  max-width: 780px;
}
.price-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.resa-price-panel {
  border-radius: 34px;
}
.price-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.price-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,240,233,0.9));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.35rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list strong { color: var(--accent-dark); white-space: nowrap; }
.price-image img { width: 100%; }

.alt { background: rgba(255,255,255,0.38); }
.section-heading { max-width: 760px; margin: 0 auto 2.4rem; }
.center { text-align: center; }
.intro-note { max-width: 760px; margin: 0.5rem auto 2rem; }
.premium-panel-section {
  padding-top: 4.2rem;
}
.premium-panel {
  padding: 2.2rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.48));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.feature-grid-tight {
  gap: 1.5rem;
}
.feature-card {
  padding: 1.7rem;
  min-height: 220px;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%);
  pointer-events: none;
}
.feature-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h3,
.product-card h3,
.price-box h3 {
  letter-spacing: -0.02em;
}
.masonry-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.2rem;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
  border-radius: 14px;
}
.gallery-card:hover img { transform: scale(1.03); }

.gallery-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,241,235,0.92));
}
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }
.highlight-band {
  background: linear-gradient(180deg, #f1e1d3 0%, #e7d1be 100%);
}

.editorial-band {
  position: relative;
  overflow: hidden;
}

.editorial-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right top, rgba(255,255,255,0.26), transparent 28%);
  pointer-events: none;
}

.editorial-quote {
  padding-top: 1rem;
}

.editorial-quote p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  line-height: 1.35;
  color: var(--accent-dark);
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f7efe5 100%);
}

.gallery-cta-section {
  padding-top: 3rem;
}

.gallery-cta-panel {
  max-width: 760px;
}

.resa-editorial {
  padding-top: 4.2rem;
}

.resa-signature p {
  max-width: 440px;
}

.resa-framed-visual img {
  min-height: 470px;
}

.resa-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(252,244,238,0.54));
}

.resa-gallery-preview-section {
  padding-bottom: 6rem;
}

.resa-spotlight-card::after {
  background: radial-gradient(circle, rgba(221,193,172,0.62), rgba(221,193,172,0));
}
.contact-card { padding: 1.7rem; }

.premium-contact-grid {
  align-items: stretch;
}

.premium-contact-grid > div,
.premium-contact-grid .contact-card {
  min-height: 100%;
}
.contact-card p + p { margin-top: 1rem; }
.contact-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}
.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(12, 12, 12, 0.88);
  z-index: 9999;
}
.lightbox.open {
  display: flex;
}
.lightbox-stage {
  max-width: min(1100px, 80vw);
  max-height: 86vh;
  text-align: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 76vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.lightbox-stage p {
  color: rgba(255,255,255,0.88);
  margin-top: 0.9rem;
}
.lightbox-close,
.lightbox-nav {
  border: 0;
  cursor: pointer;
  color: white;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 2rem;
  flex: 0 0 auto;
}
.map-embed {
  margin: 1rem 0 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #f8f3ec;
  color: var(--muted);
}
.site-footer-inner {
  padding: 1.1rem 0 1.4rem;
  text-align: center;
}
.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.hover-lift { transition: transform 0.26s ease, box-shadow 0.26s ease; }
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(20,20,20,0.12);
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.85s ease forwards;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .split-layout, .contact-grid, .highlight-grid, .masonry-grid, .statement-card, .gallery-preview-card, .gallery-page-grid, .price-layout, .split-statement { grid-template-columns: 1fr; }
  .wide, .tall { grid-column: auto; grid-row: auto; }
}
@media (max-width: 760px) {
  .nav, .nav-controls { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding-top: 4rem; }
  .cta-row, .hero-metrics { flex-direction: column; align-items: stretch; }
  .btn, .metric-pill { width: 100%; }
  .brand::after { letter-spacing: 0.18em; }
  .premium-panel,
  .statement-card,
  .gallery-preview-copy,
  .contact-card,
  .feature-card { padding-left: 1.2rem; padding-right: 1.2rem; }
  .lightbox {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }
  .lightbox-stage {
    max-width: 100%;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}

/* SmartSite parameter bot */
.aiFab{position:fixed;right:22px;bottom:22px;z-index:80;width:72px;height:72px;border:0;border-radius:50%;background:var(--accent);color:#fff;box-shadow:0 12px 34px rgba(36,24,18,.24);cursor:pointer;display:grid;place-items:center}.aiFab svg{width:34px;height:34px}.aiFab::after{content:'1';position:absolute;right:2px;top:1px;width:22px;height:22px;border-radius:50%;background:#8f2f21;color:#fff;display:grid;place-items:center;font:800 12px Arial,sans-serif;border:2px solid #fff}.aiFab span{display:none}.aiPanel{position:fixed;right:22px;bottom:104px;z-index:90;width:min(370px,calc(100vw - 28px));overflow:hidden;border-radius:22px;background:#fbf7f1;box-shadow:0 18px 60px rgba(36,24,18,.26);color:var(--text);font-family:Inter,Arial,Helvetica,sans-serif}.aiHead{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:17px 18px;background:linear-gradient(135deg,var(--accent),var(--accent-dark));color:#fff;border-radius:22px 22px 0 0}.aiHeadMain{display:flex;gap:12px;align-items:center}.aiLogo{width:42px;height:42px;border-radius:50%;background:#fff;display:grid;place-items:center;color:var(--accent-dark);font-weight:900;font-size:24px;box-shadow:0 2px 8px rgba(0,0,0,.12)}.aiHead b{display:block;font-size:18px;line-height:1.1}.aiHead small{display:block;font-size:13px;color:rgba(255,255,255,.94);margin-top:4px}.aiHead button{border:0;background:transparent;color:#fff;font-size:28px;line-height:1;cursor:pointer}.aiBack{font-size:24px!important}.aiBody{padding:16px;display:grid;gap:12px}.aiBody p{margin:0 0 8px;color:var(--muted);font-size:14px}.contactOption{display:flex;align-items:center;gap:14px;width:100%;border:1px solid var(--line);border-radius:16px;background:#fff;color:var(--text);padding:14px 15px;font-weight:800;font-size:15px;text-align:left;box-shadow:0 4px 12px rgba(36,24,18,.05);cursor:pointer;text-decoration:none;font-family:inherit;transition:transform .16s ease,box-shadow .16s ease}.contactOption:hover{transform:translateY(-1px);box-shadow:0 7px 16px rgba(36,24,18,.09)}.contactIcon{width:38px;height:38px;border-radius:12px;background:#f0e2d5;display:grid;place-items:center;color:var(--accent-dark);flex:0 0 38px}.contactIcon.whatsapp{background:#25d366;color:#fff;border-radius:50%}.contactIcon svg{width:21px;height:21px}.aiFooter{display:flex;align-items:center;gap:6px;justify-content:center;color:var(--muted);font-size:12px;padding:12px 0 2px;border-top:1px solid var(--line)}.aiFooter a{color:var(--accent-dark);font-weight:800}.aiField{display:grid;gap:7px}.aiField label{font-size:13px;font-weight:800;color:var(--text)}.aiInput,.aiTextarea{width:100%;border:1px solid rgba(94,57,35,.2);border-radius:12px;background:#fff;padding:13px 14px;font:inherit;color:var(--text)}.aiTextarea{min-height:90px;resize:vertical}.aiSubmit{border:0;border-radius:999px;background:var(--accent);color:#fff;font-weight:900;padding:14px 16px;font:inherit;cursor:pointer;box-shadow:0 4px 10px rgba(176,122,79,.18)}.aiNotice{padding:12px 14px;border-radius:12px;background:#fff8df;border:1px solid #ecd878;color:#5c4b00;font-size:13px}.aiChat{display:grid;gap:10px;max-height:390px;overflow:auto;padding-right:2px}.chatMsg{max-width:88%;padding:10px 12px;border-radius:16px;font-size:14px;line-height:1.4}.chatMsg.bot{background:#fff;color:var(--text);border:1px solid var(--line);border-top-left-radius:5px}.chatMsg.user{background:var(--accent);color:#fff;justify-self:end;border-top-right-radius:5px}.chatChoices{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 4px}.chatChoices button{border:1px solid rgba(94,57,35,.18);background:#fff;color:var(--accent-dark);border-radius:999px;padding:9px 11px;font-weight:800;cursor:pointer;font-size:12px;transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease,background .16s ease,color .16s ease}.chatChoices button:hover,.chatChoices button:focus-visible{border-color:var(--accent);background:#f4e8db;color:var(--accent-dark);transform:translateY(-2px);box-shadow:0 8px 18px rgba(176,122,79,.18);outline:none}.chatChoices button:active{transform:translateY(0);box-shadow:0 3px 8px rgba(176,122,79,.16)}.chatInputRow{display:flex;gap:8px;margin-top:4px}.chatInputRow input{flex:1;border:1px solid rgba(94,57,35,.2);border-radius:999px;background:#fff;padding:12px 14px;font:inherit;min-width:0}.chatInputRow button{border:0;border-radius:999px;background:var(--accent);color:#fff;font-weight:900;padding:0 16px;cursor:pointer}@media(max-width:560px){.aiFab{right:14px;bottom:14px}.aiPanel{right:14px;bottom:96px;width:calc(100vw - 28px)}}

.botLang{display:flex;justify-content:flex-end;gap:.35rem;margin-bottom:.35rem}.botLang button{border:1px solid var(--line);background:#fff;color:var(--accent-dark);border-radius:999px;padding:.35rem .65rem;font-weight:900;cursor:pointer}.botLang button.active,.botLang button:hover{background:var(--accent);border-color:var(--accent);color:#fff}

.botLinks{display:grid;gap:.45rem;margin-top:.7rem}.botLinks a{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;border-radius:999px;padding:.65rem .85rem;background:var(--accent);color:#fff;font-weight:900;box-shadow:0 7px 18px rgba(176,122,79,.18);transition:transform .16s ease,box-shadow .16s ease}.botLinks a:hover,.botLinks a:focus-visible{transform:translateY(-2px);box-shadow:0 10px 24px rgba(176,122,79,.25);outline:none}

.site-footer a {
  color: inherit;
  font-weight: 800;
  text-underline-offset: 0.18em;
}
.privacy-panel {
  max-width: 880px;
  margin: 0 auto;
}
.privacy-panel h3 {
  margin-top: 1.7rem;
  color: var(--accent-dark);
}
.privacy-panel li {
  margin: 0.45rem 0;
  color: var(--muted);
  line-height: 1.7;
}
.privacy-panel a {
  color: var(--accent-dark);
  font-weight: 800;
}

/* Premium redesign additions */
.village-pathways {
  padding-top: 4.4rem;
}

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

.pathway-card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 32px;
  color: #fff;
  text-decoration: none;
  background: #211813;
  box-shadow: var(--shadow);
}

.pathway-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.68)),
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.22), transparent 30%);
}

.pathway-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pathway-card > *:not(img) {
  position: relative;
  z-index: 2;
}

.pathway-index {
  width: fit-content;
  margin-bottom: auto;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.pathway-card h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.pathway-card p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.village-reel {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.85fr 1fr;
  gap: 0.85rem;
  align-items: end;
  margin: 0 auto 1.4rem;
}

.reel-card {
  height: 220px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(36, 24, 18, 0.12);
  background: var(--surface-strong);
}

.reel-card.tall {
  height: 300px;
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: -1px;
  height: 130px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, #fcf8f2 92%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .pathway-grid,
  .village-reel {
    grid-template-columns: 1fr;
  }
  .pathway-card {
    min-height: 380px;
  }
  .reel-card,
  .reel-card.tall {
    height: 250px;
  }
}
