/* =========================================
   The Silvian — Main Stylesheet
   Warm, natural, premium retreat aesthetic
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ==================
   CSS Custom Properties
   ================== */
:root {
  /* Core palette */
  --cream:       #FAF7F2;
  --beige:       #F0EAE0;
  --sand:        #DDD0BE;
  --taupe:       #C2B0A0;
  --green:       #7B9E82;
  --green-light: #A8C5A0;
  --green-dark:  #5C7A60;
  --gold:        #C49A5E;
  --gold-light:  #D4B07E;
  --gold-dark:   #A0773A;
  --terracotta:  #C47860;
  --olive:       #8B9970;
  --peach:       #DFA882;
  --white:       #FFFFFF;

  /* Text */
  --text-dark:  #2A2018;
  --text-mid:   #6B5A4E;
  --text-light: #9A8A7E;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max:   1200px;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Transitions */
  --transition-base:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(42, 32, 24, 0.07);
  --shadow-md:  0 8px 32px rgba(42, 32, 24, 0.10);
  --shadow-lg:  0 20px 60px rgba(42, 32, 24, 0.14);

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ==================
   Typography
   ================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; }

p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ==================
   Utility Classes
   ================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 154, 94, 0.35);
}

.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 28px rgba(196, 154, 94, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--sand);
}

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

.btn-white {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }

/* ==================
   Floating Blob Decorations
   ================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.blob-gold {
  background: radial-gradient(circle, var(--gold-light), var(--peach));
}

.blob-green {
  background: radial-gradient(circle, var(--green-light), var(--olive));
}

.blob-cream {
  background: radial-gradient(circle, var(--beige), var(--sand));
}

/* ==================
   Navigation
   ================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition-base);
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(42, 32, 24, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}

.nav-logo-tagline {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav.hero-nav .nav-logo-name,
.nav.hero-nav .nav-link {
  color: var(--white);
}

.nav.hero-nav .nav-logo-tagline {
  color: rgba(255,255,255,0.75);
}

.nav.hero-nav.scrolled .nav-logo-name,
.nav.hero-nav.scrolled .nav-link {
  color: var(--text-dark);
}

.nav.hero-nav.scrolled .nav-logo-tagline {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
}

.nav-book-btn {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-base);
  box-shadow: 0 3px 14px rgba(196, 154, 94, 0.3);
}

.nav-book-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-book-btn::after { display: none !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.8px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav.hero-nav .nav-toggle span {
  background: var(--white);
}

.nav.hero-nav.scrolled .nav-toggle span {
  background: var(--text-dark);
}

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

/* ==================
   Hero Section
   ================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586105449897-20b5efeb3233?w=1920&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.52) 0%,
    rgba(140, 100, 60, 0.28) 50%,
    rgba(91, 122, 96, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: 22px;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  max-width: 700px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: #e8c99a;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  animation: heroScrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ==================
   About Preview (Home)
   ================== */
.about-preview {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-images {
  position: relative;
}

.about-preview-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-preview-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.about-preview-badge {
  position: absolute;
  top: 28px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}

.about-preview-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about-preview-badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-top: 4px;
}

.about-preview-text .section-subtext {
  margin-bottom: 32px;
}

.about-preview-quote {
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--beige);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 36px;
}

.about-preview-quote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
}

/* ==================
   Features Section
   ================== */
.features {
  padding: var(--section-padding);
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.features-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.features-header .section-subtext {
  max-width: 100%;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--peach));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
}

.feature-card:hover .feature-icon .fa {
  color: var(--white) !important;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ==================
   Gallery Preview
   ================== */
.gallery-preview {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.gallery-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-preview-item:first-child {
  grid-row: span 2;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  min-height: 200px;
}

.gallery-preview-item:first-child img {
  min-height: 440px;
}

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

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,32,24,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-preview-item:hover .gallery-preview-overlay {
  opacity: 1;
}

.gallery-preview-overlay i {
  color: var(--white);
  font-size: 1.6rem;
}

/* ==================
   Why Choose Us
   ================== */
.why-us {
  padding: var(--section-padding);
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=70&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}

.why-us-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text .section-label {
  color: var(--gold-light);
}

.why-us-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.why-us-text .section-subtext {
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us-item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  margin-top: 2px;
}

.why-us-item-text h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-us-item-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.why-us-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ==================
   Contact CTA
   ================== */
.cta-section {
  padding: var(--section-padding);
  background: var(--beige);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  margin-bottom: 18px;
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.cta-info-item i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* ==================
   Footer
   ================== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo-name {
  color: var(--white);
  font-size: 1.8rem;
}

.footer-brand .nav-logo-tagline {
  color: var(--gold);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 18px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

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

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: var(--gold);
  font-size: 0.8rem;
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ==================
   Page Hero (inner pages)
   ================== */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(42, 32, 24, 0.65) 0%,
    rgba(42, 32, 24, 0.30) 60%,
    rgba(42, 32, 24, 0.10) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: rgba(255,255,255,0.75);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb-sep {
  font-size: 0.65rem;
  opacity: 0.5;
}

/* ==================
   About Page — Story Section
   ================== */
.story-section {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.story-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-img:first-child {
  margin-top: 40px;
}

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

/* ==================
   Meet Section (About)
   ================== */
.meet-section {
  padding: var(--section-padding);
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.meet-image {
  position: relative;
}

.meet-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.meet-image-caption {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 200px;
}

.meet-image-caption strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.meet-image-caption span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==================
   Values Section (About)
   ================== */
.values-section {
  padding: var(--section-padding);
  background: var(--cream);
}

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

.value-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border-top: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* ==================
   Gallery Page
   ================== */
.gallery-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.gallery-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--sand);
  color: var(--text-mid);
  background: transparent;
  transition: var(--transition-base);
  cursor: pointer;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--sand);
}

.gallery-item.tall {
  aspect-ratio: 3/4;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,32,24,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: var(--white);
  font-size: 2rem;
  background: rgba(255,255,255,0.15);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay i {
  transform: scale(1.1);
}

/* Gallery Loading State */
.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}

.gallery-loading .spinner {
  width: 40px;
  height: 40px;
  border: 2.5px solid var(--sand);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Gallery Empty/Error State */
.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
}

.gallery-placeholder i {
  font-size: 3rem;
  color: var(--sand);
  margin-bottom: 20px;
}

.gallery-placeholder h3 {
  color: var(--text-mid);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.gallery-placeholder p {
  font-size: 0.9rem;
}

/* ==================
   Lightbox
   ================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.94);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.lightbox img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.22);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ==================
   Contact Page
   ================== */
.contact-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

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

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  margin-bottom: 36px;
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 94, 0.12);
  background: var(--white);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.65;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success i {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* ==================
   Directions / Map
   ================== */
.map-section {
  padding: 0 0 var(--section-padding);
  background: var(--cream);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==================
   Scroll Reveal Animations
   ================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==================
   Floating WhatsApp Button
   ================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.40);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
  white-space: nowrap;
  overflow: hidden;
  max-width: 220px;
}

.whatsapp-float i {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.50);
  color: var(--white);
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 13px;
    border-radius: 50%;
    max-width: unset;
  }
  .whatsapp-float-label { display: none; }
}

/* ==================
   Responsive — Tablet
   ================== */
@media (max-width: 1024px) {
  :root { --section-padding: 80px 0; }

  .about-preview-grid,
  .why-us-inner,
  .meet-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-preview-img-accent { display: none; }
  .about-preview-badge { top: 16px; right: 16px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview-item:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-preview-item:first-child img {
    min-height: 320px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ==================
   Responsive — Mobile
   ================== */
@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 90px 0 40px;
    box-shadow: -4px 0 40px rgba(42,32,24,0.12);
    transition: right var(--transition-base);
    align-items: stretch;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    display: block;
    padding: 16px 28px;
    font-size: 0.88rem;
    color: var(--text-dark) !important;
    border-bottom: 1px solid var(--beige);
  }

  .nav-book-btn {
    margin: 20px 28px 0;
    display: block;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav.hero-nav .nav-toggle span {
    background: var(--white);
  }

  .nav.hero-nav.scrolled .nav-toggle span,
  .nav-toggle.nav-links-open span {
    background: var(--text-dark);
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,32,24,0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  .hero-sub { font-size: 1rem; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 26px 20px;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-item:first-child {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
  }

  .why-us-image { display: none; }

  .cta-contact-info {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .meet-image img { height: 380px; }
  .meet-image-caption { left: 0; }

  .lightbox-nav { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .page-hero { height: 320px; }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-preview-img-main { height: 320px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

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