:root {
  --cream: #faf5ee;
  --cream-deep: #f1e7d8;
  --surface: #fffdf9;
  --ink: #2a231d;
  --ink-soft: #4c4239;
  --muted: #8a7c6c;
  --gold: #bd8b48;
  --gold-deep: #9c6f31;
  --gold-soft: #e6d2b0;
  --blush: #ecdcd2;
  --line: rgba(42, 35, 29, 0.1);
  --line-strong: rgba(42, 35, 29, 0.16);
  --shadow-soft: 0 20px 50px -28px rgba(42, 35, 29, 0.4);
  --shadow-lift: 0 40px 80px -40px rgba(42, 35, 29, 0.5);
  --radius: 22px;
  --radius-lg: 30px;
  --ease: cubic-bezier(0.22, 0.65, 0.2, 1);
  font-family: "Jost", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% -5%, rgba(230, 210, 176, 0.55), transparent 42%),
    radial-gradient(circle at 95% 8%, rgba(236, 220, 210, 0.5), transparent 46%),
    var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 0;
}

p {
  margin-top: 0;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Eyebrow */
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.eyebrow.light {
  color: var(--gold-soft);
}

/* Header */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1240px, calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(42, 35, 29, 0.16);
  backdrop-filter: blur(16px);
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
    box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: currentColor;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-mark {
  color: var(--gold-soft);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  color: var(--gold);
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-text small {
  margin-top: 4px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 400;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.35s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.site-nav a.nav-cta {
  margin-left: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.site-nav a.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.button.primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.hero .button.primary {
  background: var(--cream);
  color: var(--ink);
}

.hero .button.primary:hover {
  background: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.button.outline {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.button.outline:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.button.full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease) forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(28, 21, 15, 0.82), rgba(28, 21, 15, 0.4) 46%, rgba(28, 21, 15, 0.08) 78%),
    linear-gradient(180deg, rgba(28, 21, 15, 0.32), rgba(28, 21, 15, 0.14) 30%, rgba(28, 21, 15, 0.42));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 110px);
  padding: 120px 0 90px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  font-weight: 400;
  line-height: 0.98;
}

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

.hero-lead {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: 1.12rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 46px;
}

.hero-trust div strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-trust .rating strong span {
  font-size: 0.95rem;
  color: var(--gold-soft);
}

.hero-trust .stars {
  display: block;
  margin-top: 1px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.hero-trust div span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 249, 0.7);
}

.hero-trust .divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: scrollDot 1.8s var(--ease) infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Sections */
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 54px;
}

.section-heading h2,
.intro-head h2,
.split-heading h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Intro */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.intro-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.intro-body p {
  color: var(--ink-soft);
  font-size: 1.16rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 36px;
}

.intro-facts {
  display: grid;
  gap: 14px;
}

.intro-facts div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.intro-facts div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.intro-facts span {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}

.intro-facts strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.intro-facts small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

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

.service-card figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.service-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.service-card:hover figure img {
  transform: scale(1.07);
}

.service-body {
  padding: 24px 24px 26px;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.service-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.text-button span {
  transition: transform 0.35s var(--ease);
  color: var(--gold);
}

.text-button:hover span,
.text-button:focus-visible span {
  transform: translateX(6px);
}

/* Feature / promo */
.feature {
  width: min(1240px, calc(100% - 40px));
}

.feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lift);
}

.feature-media {
  margin: 0;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.feature-inner:hover .feature-media img {
  transform: scale(1.05);
}

.feature-copy {
  align-self: center;
  padding: clamp(44px, 6vw, 76px);
}

.feature-copy .eyebrow {
  color: var(--gold-soft);
}

.feature-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
  margin-bottom: 16px;
  color: var(--cream);
}

.feature-copy > p {
  color: rgba(255, 253, 249, 0.72);
  font-weight: 300;
}

.promo-highlight {
  margin: 30px 0 24px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.promo-highlight span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.promo-highlight strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--cream);
}

.promo-highlight small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 249, 0.6);
}

.promo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.chip:hover,
.chip:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Split / listino */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.split-heading {
  position: sticky;
  top: 120px;
}

.split-heading p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}

.price-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row:hover {
  background: var(--cream);
}

.price-row strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  font-weight: 600;
}

.price-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.price-row b {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* Instagram */
.instagram-panel {
  padding: clamp(56px, 8vw, 96px) clamp(28px, 6vw, 72px);
  text-align: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5), transparent 45%),
    linear-gradient(135deg, var(--blush), var(--gold-soft));
  box-shadow: var(--shadow-soft);
}

.instagram-panel .eyebrow {
  color: var(--gold-deep);
}

.instagram-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 14px;
}

.instagram-panel p {
  max-width: 540px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Location */
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 14px;
}

.location-copy > p {
  color: var(--muted);
  font-weight: 300;
}

.location-details {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.location-details div {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.location-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-details strong {
  display: block;
  font-weight: 400;
  font-size: 1.02rem;
}

.location-details strong a {
  border-bottom: 1px solid var(--gold);
}

.map-panel {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-deep);
  box-shadow: var(--shadow-soft);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: saturate(1.02) contrast(1.02);
}

/* Booking */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 120px;
}

.booking-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 14px;
}

.booking-copy > p {
  color: var(--muted);
  font-weight: 300;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle, var(--gold) 40%, transparent 42%);
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lift);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0 15px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(189, 139, 72, 0.14);
}

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

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.form-note.success {
  color: var(--gold-deep);
  font-weight: 500;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 44px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--cream);
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 253, 249, 0.66);
  font-size: 0.92rem;
  font-weight: 300;
}

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

.footer-links a {
  position: relative;
  font-size: 0.92rem;
  color: rgba(255, 253, 249, 0.86);
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.section-heading.center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

/* Prodotti / Comfort Zone */
.products {
  padding-top: clamp(60px, 7vw, 100px);
}

.products-head {
  max-width: 720px;
  margin-bottom: 46px;
}

.products-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 16px;
}

.products-head h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

.products-head > p {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--cream));
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.product-mono {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  margin-bottom: 18px;
}

.product-tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-note {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

/* Galleria Instagram */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.gallery-item::after {
  content: "\2197";
  position: absolute;
  top: 14px;
  right: 16px;
  color: #fff;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: none;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-cta {
  margin-top: 34px;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 860px;
}

.faq-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}

.faq-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  margin-bottom: 12px;
}

.faq-head p {
  color: var(--muted);
  font-weight: 300;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease);
}

.faq-item.is-open {
  box-shadow: var(--shadow-lift);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--gold-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a > div {
  overflow: hidden;
}

.faq-a p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* WhatsApp button */
.button.whatsapp {
  background: #1f8a4c;
  color: #fff;
  border-color: #1f8a4c;
}

.button.whatsapp:hover {
  background: #176c3b;
  border-color: #176c3b;
}

.wa-icon {
  display: inline-flex;
}

/* Responsive */
@media (max-width: 1000px) {
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow-lift);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav a.nav-cta {
    margin: 6px 0 0;
    text-align: center;
    padding: 14px;
  }

  .intro,
  .feature-inner,
  .split,
  .location,
  .booking {
    grid-template-columns: 1fr;
  }

  .feature {
    width: min(100% - 30px, 720px);
  }

  .feature-media {
    order: -1;
  }

  .feature-media img {
    min-height: 320px;
  }

  .split-heading,
  .booking-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 12px;
    padding: 10px 12px 10px 16px;
  }

  .brand-text small {
    display: none;
  }

  .hero-content {
    margin-inline: auto;
    padding-top: 130px;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
  }

  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .faq-q {
    font-size: 1.15rem;
    padding: 20px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
