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

:root {
  --background: #fdf6f5;
  --foreground: #4a2a2a;
  --primary: #c08a7a;
  --primary-fg: #fff;
  --muted: #f3e7e4;
  --muted-foreground: #8a6a6a;
  --border: rgba(192, 138, 122, 0.25);
  --rosegold-1: #d9a48f;
  --rosegold-2: #b9806e;
  --shadow-soft: 0 10px 40px -10px rgba(192, 138, 122, 0.35);
  --shadow-glow: 0 0 60px rgba(217, 164, 143, 0.45);
  --shadow-card: 0 20px 60px -15px rgba(150, 90, 80, 0.25);
  --gradient-rosegold: linear-gradient(135deg, #d9a48f, #b9806e);
  --gradient-hero: linear-gradient(135deg, #f9e8e4 0%, #f0d0c8 50%, #e6b9ad 100%);
  --gradient-soft: linear-gradient(180deg, #fdf6f5 0%, #f3e0db 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--gradient-soft);
  color: var(--foreground);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.serif { font-family: 'Cormorant Garamond', serif; }

.text-gradient-gold {
  background: var(--gradient-rosegold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.5rem;
}
.section-sub {
  color: rgba(74, 42, 42, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
section { padding: 6rem 0; position: relative; }
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-card);
  border-radius: 1.75rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2rem; border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.4s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gradient-rosegold);
  color: var(--primary-fg);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }
.btn-outline {
  border: 1px solid rgba(192, 138, 122, 0.5);
  color: var(--primary);
  background: rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(192,138,122,0.1); }

/* NAVBAR */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.2rem 0; transition: all 0.5s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { height: 40px; width: 40px; object-fit: contain; }
.nav-brand .name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; letter-spacing: 0.1em; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(74,42,42,0.8); position: relative; padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  height: 1px; width: 0; background: var(--gradient-rosegold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.75rem; }
.menu-btn { display: none; background: none; border: none; color: var(--primary); cursor: pointer; padding: 0.5rem; }
.mobile-menu { display: none; margin: 0.75rem 1.5rem 0; padding: 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1rem; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
}

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 8rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(253,246,245,0.4), rgba(253,246,245,0.2), rgba(253,246,245,1));
}
.hero-content { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.hero .lead {
  font-size: 1.15rem; color: rgba(74,42,42,0.75);
  margin-bottom: 0.5rem; font-weight: 300;
}
.hero .tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: rgba(192,138,122,0.9); font-size: 1.15rem; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.deco { position: absolute; border-radius: 50%; pointer-events: none; }
.deco-1 { top: 25%; left: 4%; width: 12px; height: 12px; background: rgba(217,164,143,0.7); box-shadow: var(--shadow-glow); animation: float 6s ease-in-out infinite; }
.deco-2 { top: 33%; right: 8%; width: 8px; height: 8px; background: rgba(192,138,122,0.8); animation: float-slow 8s ease-in-out infinite; }
.deco-3 { bottom: 22%; left: 22%; width: 16px; height: 16px; background: rgba(232,180,178,0.8); animation: float 6s ease-in-out infinite; }
.deco-s { position: absolute; font-size: 2rem; color: var(--primary); animation: shimmer 3s ease-in-out infinite; pointer-events: none; }
.deco-s1 { top: 18%; right: 30%; }
.deco-s2 { bottom: 28%; right: 12%; color: var(--rosegold-1); font-size: 1.5rem; }

@keyframes float { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-20px) rotate(5deg)} }
@keyframes float-slow { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-30px) translateX(15px)} }
@keyframes shimmer { 0%,100%{opacity:0.3} 50%{opacity:1} }
@keyframes fadeUp { from{opacity:0; transform:translateY(40px)} to{opacity:1; transform:translateY(0)} }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img {
  aspect-ratio: 4/5; border-radius: 1.75rem; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about p { color: rgba(74,42,42,0.75); margin-bottom: 1.25rem; font-size: 1.1rem; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* SERVICES */
.services-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--gradient-hero); opacity: 0.4;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { padding: 2rem; transition: all 0.5s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.service-icon {
  width: 64px; height: 64px; border-radius: 1rem;
  background: var(--gradient-rosegold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-soft);
  color: #fff; transition: transform 0.5s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.85rem; margin-bottom: 0.25rem; }
.service-card .sub { font-style: italic; color: var(--muted-foreground); font-size: 0.9rem; margin-bottom: 1rem; min-height: 1.2rem; }
.service-card hr { border: 0; height: 1px; background: var(--gradient-rosegold); opacity: 0.4; margin: 1rem 0 1.5rem; }
.service-card ul li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.7rem; color: rgba(74,42,42,0.85);
}
.service-card ul li::before {
  content: '✦'; color: var(--primary); font-size: 0.75rem; margin-top: 0.35rem;
}

/* GALLERY */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  grid-auto-rows: 240px;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 1rem; } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.tall { grid-row: span 2; }
@media (max-width: 768px) { .gallery-item.tall { grid-row: span 1; } }

/* BOOKING */
.booking-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--gradient-hero); opacity: 0.3;
}
.booking-card { max-width: 720px; margin: 0 auto; padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.booking-card h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.booking-card .intro p { color: rgba(74,42,42,0.7); }
.booking-list { display: flex; flex-direction: column; gap: 1.25rem; }
.booking-list li { display: flex; align-items: flex-start; gap: 1rem; }
.booking-list .ico {
  width: 44px; height: 44px; border-radius: 0.75rem;
  background: var(--gradient-rosegold); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}
.booking-list .label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-foreground); margin-bottom: 0.15rem;
}
.booking-list .value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--foreground); }
.booking-list a.value:hover { color: var(--primary); }
.booking-map {
  aspect-ratio: 16/9; border-radius: 1.25rem; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-soft);
}
.booking-map iframe { width: 100%; height: 100%; border: 0; }

/* FOOTER */
footer { padding: 4rem 1.5rem 2.5rem; }
.footer-divider { height: 1px; background: var(--gradient-rosegold); opacity: 0.5; margin-bottom: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-grid img { height: 80px; width: 80px; object-fit: contain; margin-bottom: 0.75rem; }
.footer-grid .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.footer-grid .brand-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(192,138,122,0.85); }
.footer-grid p { color: rgba(74,42,42,0.8); line-height: 1.7; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.footer-copy {
  text-align: center; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted-foreground);
}
