/* ============================================
   VILLA VENI VIDI VICI — LUXURY STYLESHEET
   Design: Mediterranean Luxury Retreat
   Fonts: Cormorant Garamond + Montserrat
   ============================================ */

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

:root {
  --forest:    #1a2e1f;
  --olive:     #3d5430;
  --sage:      #6b8f5e;
  --terra:     #b5693c;
  --sand:      #e8d4b0;
  --cream:     #f8f4ed;
  --gold:      #c9a96e;
  --white:     #ffffff;
  --text:      #2a2a2a;
  --mid:       #5a5248;
  --footer-bg: #0f1a0f;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: var(--footer-bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--cream); }
address { font-style: normal; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::selection { background: var(--sage); color: var(--cream); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 76px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10,20,10,.55);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.navbar nav ul li a {
  color: rgba(255,255,255,.82);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}

.navbar nav ul li a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.10) 48%,
    rgba(0,0,0,.55) 100%
  );
  text-align: center;
  padding: 0 24px;
}

.hero-overlay h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 6px;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}

.hero-overlay .subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.65rem, 1.1vw, .85rem);
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 20px;
}

.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
  opacity: .85;
}

/* ============================================
   INTRO TEXT
   ============================================ */
.intro-text {
  background: var(--cream);
  padding: 90px 80px;
  text-align: center;
}

.intro-text p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ============================================
   BOUTIQUE TAGLINE
   ============================================ */
.boutique-tagline {
  background: var(--forest);
  padding: 60px 80px;
  text-align: center;
}

.boutique-tagline p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 2px;
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
  background: var(--forest);
  padding: 60px 0 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-item { overflow: hidden; }

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .5s ease, filter .3s;
  filter: saturate(1.05);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.15) brightness(1.05);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  background: var(--cream);
  padding: 90px 80px;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.story-image { overflow: hidden; }

.story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  transition: transform .4s;
}

.story-image:hover img { transform: scale(1.02); }

.story-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2.1;
  margin-bottom: 18px;
}

/* ============================================
   OWNERS SECTION
   ============================================ */
.owners-section {
  background: var(--forest);
  padding: 90px 80px;
}

.owners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.owners-image { overflow: hidden; }

.owners-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

.owners-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.owners-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: .75;
}

.owners-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(248,244,237,.9);
  font-style: italic;
  margin-bottom: 10px;
}

.owners-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(248,244,237,.7);
  font-style: italic;
  margin-bottom: 18px;
}

.owners-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(248,244,237,.8);
  line-height: 2;
}

/* ============================================
   POETIC SECTION
   ============================================ */
.poetic-section {
  background: var(--sand);
  padding: 90px 80px;
}

.poetic-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.poetic-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  line-height: 2;
}

.poetic-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  box-shadow: 0 15px 50px rgba(0,0,0,.2);
}

/* ============================================
   CONCEPT SECTION
   ============================================ */
.concept-section {
  background: var(--cream);
  padding: 90px 80px;
}

.concept-inner {
  max-width: 900px;
  margin: 0 auto;
}

.concept-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--forest);
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;
}

.concept-inner h2 em {
  color: var(--terra);
  font-style: italic;
}

.concept-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2.1;
  margin-bottom: 18px;
}

/* ── VIDEO ── */
.video-wrapper {
  margin-top: 50px;
  text-align: center;
}

.video-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--olive);
  padding: 90px 80px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 28px;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info address,
.contact-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(248,244,237,.88);
  line-height: 2;
}

.contact-info a {
  color: rgba(248,244,237,.88);
  transition: color .3s;
}
.contact-info a:hover { color: var(--gold); }

.contact-photo { margin-top: 30px; overflow: hidden; }
.contact-photo img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
}

/* ── FORM ── */
.form-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-row { margin-bottom: 18px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.center { text-align: center; margin-top: 28px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,244,237,.7);
}

.field-group input,
.field-group textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,169,110,.4);
  border-radius: 0;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color .3s, background .3s;
  width: 100%;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(248,244,237,.35);
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}

.field-group textarea { resize: vertical; min-height: 130px; }

button[type="submit"] {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, color .3s;
}

button[type="submit"]:hover {
  background: var(--gold);
  color: var(--forest);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--forest);
  padding: 80px 60px;
  text-align: center;
}

.quote-inner { max-width: 760px; margin: 0 auto; }

.quote-mark {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold);
  opacity: .45;
  line-height: .8;
  margin-bottom: 20px;
}

.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.8;
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.quote-section cite {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 3px;
}

/* ============================================
   FOOTER NAV
   ============================================ */
.footer-nav {
  background: var(--footer-bg);
  padding: 60px 80px 50px;
  border-top: 1px solid rgba(201,169,110,.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-menu h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
  justify-content: center;
}

.footer-menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,244,237,.6);
  transition: color .3s;
}

.footer-menu ul li a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(201,169,110,.35);
  border-radius: 50%;
  color: rgba(248,244,237,.65);
  transition: all .3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

.footer-social svg { width: 16px; height: 16px; }

/* ── COPYRIGHT ── */
.copyright {
  background: #080f08;
  padding: 16px 60px;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,.12);
}

.copyright p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,244,237,.4);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--terra));
  z-index: 9999;
  transition: width .08s linear;
}

/* ============================================
   HERO EXTRAS
   ============================================ */
.hero-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: .9;
}

.hero-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 52px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(201,169,110,.65);
  background: rgba(201,169,110,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
  text-decoration: none;
}

.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: scrollFadeIn 1s ease 2s forwards;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollFadeIn {
  to { opacity: .7; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50% { transform: scaleY(.7); opacity: .4; }
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--cream);
  padding: 70px 80px;
  border-top: 1px solid rgba(201,169,110,.12);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(201,169,110,.2);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.feature-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
}

/* ============================================
   GALLERY HOVER OVERLAY
   ============================================ */
.gallery-item {
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,46,31,0);
  transition: background .4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(26,46,31,.3);
}

/* ============================================
   STORY SECTION HEADING
   ============================================ */
.story-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--forest);
  letter-spacing: 1px;
  margin-bottom: 28px;
  line-height: 1.2;
}

/* ============================================
   FADE-UP ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] { transition-delay: .1s; }
[data-animate][data-delay="2"] { transition-delay: .2s; }
[data-animate][data-delay="3"] { transition-delay: .3s; }
[data-animate][data-delay="4"] { transition-delay: .4s; }

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.navbar nav ul li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.page-hero .hero-overlay h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  background: var(--cream);
  padding: 90px 80px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-inner > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pricing-inner > .pricing-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--mid);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 48px;
  border: 1px solid rgba(201,169,110,.45);
  border-radius: 4px;
  overflow: hidden;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 13px 52px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
}

.tab-btn:first-child { border-right: 1px solid rgba(201,169,110,.45); }

.tab-btn.active {
  background: var(--gold);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,.25);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}

.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--forest);
  border-color: var(--gold);
}

.pricing-card .card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 10px;
}

.pricing-card.featured h3 { color: var(--cream); }

.pricing-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card.featured .price { color: var(--gold); }
.pricing-card .price-alt { font-size: 0.6em; opacity: 0.7; }

.pricing-card .price-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.pricing-card.featured .price-note { color: rgba(248,244,237,.65); }

.pricing-card .card-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: .5;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
}

.pricing-card ul li {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
  padding-left: 14px;
  position: relative;
}

.pricing-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.pricing-card.featured ul li { color: rgba(248,244,237,.8); }

.pricing-details {
  background: var(--forest);
  padding: 50px 60px;
  margin-top: 0;
}

.pricing-details-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.detail-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.detail-item p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
}

.detail-item span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(248,244,237,.55);
  margin-top: 4px;
}

.pricing-note {
  background: var(--sand);
  padding: 60px 80px;
}

.pricing-note-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pricing-note-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--olive);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pricing-note-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2.2;
}

/* ============================================
   OMGEVING SECTION
   ============================================ */
.omgeving-intro {
  background: var(--cream);
  padding: 90px 80px;
}

.omgeving-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.omgeving-intro-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  line-height: 2;
}

.omgeving-section {
  background: var(--forest);
  padding: 90px 80px;
}

.omgeving-section.alt { background: var(--cream); }

.omgeving-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.omgeving-section-inner > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-align: center;
}

.omgeving-section.alt .omgeving-section-inner > h2 { color: var(--forest); }

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.place-card {
  padding: 32px;
  border: 1px solid rgba(201,169,110,.2);
}

.place-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}

.omgeving-section.alt .place-card h3 { color: var(--olive); }

.place-card .place-dist {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,169,110,.7);
  margin-bottom: 14px;
  display: block;
}

.place-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(248,244,237,.75);
  line-height: 2;
}

.omgeving-section.alt .place-card p { color: var(--mid); }

.beaches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.beach-card {
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
}

.beach-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--olive);
  margin-bottom: 10px;
}

.beach-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
}

/* ============================================
   GASTENBOEK SECTION
   ============================================ */
.gastenboek-section {
  background: var(--cream);
  padding: 90px 80px;
}

.gastenboek-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gastenboek-inner > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,.2);
  padding: 36px 32px;
  transition: box-shadow .3s;
}

.review-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); }

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.review-meta strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: .5px;
}

.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 3px;
}

.review-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
  font-style: italic;
}

.gastenboek-form {
  background: var(--forest);
  padding: 70px 80px;
}

.gastenboek-form-inner {
  max-width: 760px;
  margin: 0 auto;
}

.gastenboek-form-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--gold);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.gastenboek-form-inner .form-intro { text-align: center; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-section {
  background: var(--cream);
  padding: 90px 80px;
}

.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-page-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--forest);
  letter-spacing: 2px;
  margin-bottom: 36px;
}

.contact-page-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  margin-top: 26px;
}

.contact-page-info h3:first-of-type { margin-top: 0; }

.contact-page-info address,
.contact-page-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
}

.contact-page-info a { color: var(--olive); }
.contact-page-info a:hover { color: var(--gold); }

.contact-page-form .form-intro {
  color: var(--forest);
  margin-bottom: 36px;
}

.contact-page-form .field-group label { color: var(--mid); }
.contact-page-form .field-group input,
.contact-page-form .field-group textarea {
  background: rgba(0,0,0,.04);
  color: var(--text);
  border-color: rgba(61,84,48,.3);
}

.contact-page-form .field-group input::placeholder,
.contact-page-form .field-group textarea::placeholder { color: rgba(42,42,42,.35); }

.contact-page-form .field-group input:focus,
.contact-page-form .field-group textarea:focus {
  border-color: var(--olive);
  background: rgba(0,0,0,.06);
}

.contact-page-form button[type="submit"] {
  color: var(--olive);
  border-color: var(--olive);
}

.contact-page-form button[type="submit"]:hover {
  background: var(--olive);
  color: var(--cream);
}

/* ============================================
   SFEERIMPRESSIE GALLERY — PINTEREST MASONRY
   ============================================ */
.sfeer-gallery {
  background: var(--forest);
  padding: 60px 0 80px;
}

.sfeer-masonry {
  columns: 3;
  column-gap: 10px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.sfeer-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.sfeer-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,46,31,0);
  transition: background .4s ease;
  pointer-events: none;
  border-radius: 6px;
}

.sfeer-item:hover::after {
  background: rgba(26,46,31,.22);
}

.sfeer-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), filter .3s;
  filter: saturate(1.05);
}

.sfeer-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.12) brightness(1.04);
}

.sfeer-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.15) brightness(1.05);
}

/* ============================================
   SFEERIMPRESSIE CAROUSEL (mobiel only)
   ============================================ */
.sfeer-carousel-section {
  display: none;
  background: var(--forest);
  padding: 40px 0 56px;
}

.sfeer-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}

.sfeer-carousel::-webkit-scrollbar { display: none; }

.sfeer-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 0 16px;
  box-sizing: border-box;
}

.sfeer-slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  max-height: 70vw;
}

.sfeer-counter {
  text-align: center;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(248,244,237,.5);
}

.sfeer-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
  padding: 0 24px;
}

.sfeer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,.3);
  transition: background .3s;
  flex-shrink: 0;
}

.sfeer-dot.active {
  background: var(--gold);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.82);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .navbar nav ul { gap: 20px; }

  .story-inner,
  .owners-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .poetic-inner { grid-template-columns: 1fr; }
  .poetic-image img { width: 100%; height: 240px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .gallery-item img { height: 240px; }

  .form-row.two-col { grid-template-columns: 1fr; }

  .concept-section,
  .story-section,
  .owners-section,
  .intro-text,
  .boutique-tagline,
  .poetic-section,
  .contact-section,
  .footer-nav { padding-left: 32px; padding-right: 32px; }

  .hero-title { padding: 70px 32px 50px; }
  .quote-section { padding: 60px 32px; }
  .copyright { padding: 16px 32px; }

  .features-strip { padding-left: 32px; padding-right: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(201,169,110,.2); padding: 24px 20px; }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(201,169,110,.2); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Subpage sections — tablet */
  .pricing-section,
  .pricing-note,
  .omgeving-intro,
  .omgeving-section,
  .gastenboek-section,
  .gastenboek-form,
  .contact-page-section { padding-left: 32px; padding-right: 32px; }

  .pricing-tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 13px 20px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-details { padding-left: 32px; padding-right: 32px; }
  .pricing-details-inner { grid-template-columns: 1fr; gap: 28px; }

  .places-grid { grid-template-columns: repeat(2, 1fr); }
  .beaches-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-page-inner { grid-template-columns: 1fr; gap: 40px; }

  .page-hero { height: 50vh; min-height: 320px; }

  .sfeer-masonry { columns: 2; column-gap: 8px; padding: 0 16px; }
  .sfeer-item { margin-bottom: 8px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================ */
@media (max-width: 600px) {
  /* Hamburger nav */
  .nav-toggle { display: flex; }

  .navbar nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(26,46,31,.98);
    border-top: 1px solid rgba(201,169,110,.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }

  .navbar nav.open { max-height: 400px; }

  .navbar nav ul {
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
  }

  .navbar nav ul li a {
    display: block;
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 2.5px;
    border-bottom: none;
  }

  .navbar { position: sticky; }

  /* Hero */
  .hero { height: 100svh; }

  /* Sections */
  .intro-text,
  .boutique-tagline,
  .story-section,
  .owners-section,
  .poetic-section,
  .concept-section,
  .contact-section,
  .footer-nav { padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px; }

  .quote-section { padding: 52px 20px; }
  .copyright { padding: 14px 20px; }

  /* Gallery: 1 column on phones */
  .gallery-grid { grid-template-columns: 1fr; padding: 0 0; gap: 2px; }
  .gallery-strip { padding: 40px 0 50px; }
  .gallery-item img { height: 220px; }

  /* Story / Owners images less tall */
  .story-image img { height: 280px; }
  .owners-image img { max-height: 300px; }

  /* Poetic image square → full width */
  .poetic-image img { height: 200px; }

  /* Contact form two-col */
  .form-row.two-col { grid-template-columns: 1fr; }

  /* Submit button full width */
  button[type="submit"] { width: 100%; padding: 16px 20px; }

  .features-strip { padding: 48px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(201,169,110,.2); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }

  .hero-cta { padding: 14px 36px; }
  .scroll-cue { display: none; }

  /* Subpage sections — mobile */
  .pricing-section,
  .pricing-note,
  .omgeving-intro,
  .omgeving-section,
  .gastenboek-section,
  .gastenboek-form,
  .contact-page-section { padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px; }

  .pricing-tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 13px 16px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card { padding: 36px 24px; }
  .pricing-details { padding: 44px 20px; }
  .pricing-details-inner { grid-template-columns: 1fr; gap: 32px; }
  .detail-item { padding-bottom: 28px; border-bottom: 1px solid rgba(201,169,110,.15); }
  .detail-item:last-child { padding-bottom: 0; border-bottom: none; }

  .places-grid { grid-template-columns: 1fr; gap: 16px; }
  .place-card { padding: 24px 20px; }
  .beaches-grid { grid-template-columns: 1fr; gap: 16px; }
  .beach-card { padding: 20px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .review-card { padding: 28px 20px; }
  .gastenboek-form { padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px; }

  .contact-page-inner { grid-template-columns: 1fr; gap: 40px; }

  .page-hero { height: 45vh; min-height: 280px; }

  .sfeer-gallery--desktop { display: none; }
  .sfeer-carousel-section { display: block; }
}