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

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-pale: #F9F4E8;
  --ink: #1A1209;
  --ink-soft: #3D2E1A;
  --warm-mid: #7A6145;
  --cream: #FAF7F0;
  --cream-dark: #F0EAD8;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
}

/* ── HENNA WATERMARK ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cdefs%3E%3Cstyle%3E.h%7Bfill:none;stroke:%23C9A84C;stroke-linecap:round;stroke-linejoin:round%7D%3C/style%3E%3C/defs%3E%3Ccircle class='h' cx='100' cy='100' r='6' stroke-width='1.2'/%3E%3Ccircle class='h' cx='100' cy='100' r='12' stroke-width='0.8'/%3E%3Ccircle class='h' cx='100' cy='100' r='20' stroke-width='0.7'/%3E%3Ccircle class='h' cx='100' cy='100' r='30' stroke-width='0.6'/%3E%3Ccircle class='h' cx='100' cy='100' r='42' stroke-width='0.5'/%3E%3Cellipse class='h' cx='100' cy='82' rx='4' ry='8' stroke-width='0.8'/%3E%3Cellipse class='h' cx='100' cy='118' rx='4' ry='8' stroke-width='0.8'/%3E%3Cellipse class='h' cx='82' cy='100' rx='8' ry='4' stroke-width='0.8'/%3E%3Cellipse class='h' cx='118' cy='100' rx='8' ry='4' stroke-width='0.8'/%3E%3Cellipse class='h' cx='88.7' cy='88.7' rx='4' ry='8' transform='rotate(-45 88.7 88.7)' stroke-width='0.8'/%3E%3Cellipse class='h' cx='111.3' cy='88.7' rx='4' ry='8' transform='rotate(45 111.3 88.7)' stroke-width='0.8'/%3E%3Cellipse class='h' cx='88.7' cy='111.3' rx='4' ry='8' transform='rotate(45 88.7 111.3)' stroke-width='0.8'/%3E%3Cellipse class='h' cx='111.3' cy='111.3' rx='4' ry='8' transform='rotate(-45 111.3 111.3)' stroke-width='0.8'/%3E%3Cpath class='h' d='M100 58 Q104 68 100 70 Q96 68 100 58Z' stroke-width='0.8'/%3E%3Cpath class='h' d='M100 142 Q104 132 100 130 Q96 132 100 142Z' stroke-width='0.8'/%3E%3Cpath class='h' d='M58 100 Q68 104 70 100 Q68 96 58 100Z' stroke-width='0.8'/%3E%3Cpath class='h' d='M142 100 Q132 104 130 100 Q132 96 142 100Z' stroke-width='0.8'/%3E%3Cpath class='h' d='M10 10 Q20 10 20 20' stroke-width='0.9'/%3E%3Cpath class='h' d='M10 10 Q10 20 20 20' stroke-width='0.9'/%3E%3Ccircle class='h' cx='10' cy='10' r='3' stroke-width='0.9'/%3E%3Cpath class='h' d='M190 10 Q180 10 180 20' stroke-width='0.9'/%3E%3Cpath class='h' d='M190 10 Q190 20 180 20' stroke-width='0.9'/%3E%3Ccircle class='h' cx='190' cy='10' r='3' stroke-width='0.9'/%3E%3Cpath class='h' d='M10 190 Q20 190 20 180' stroke-width='0.9'/%3E%3Cpath class='h' d='M10 190 Q10 180 20 180' stroke-width='0.9'/%3E%3Ccircle class='h' cx='10' cy='190' r='3' stroke-width='0.9'/%3E%3Cpath class='h' d='M190 190 Q180 190 180 180' stroke-width='0.9'/%3E%3Cpath class='h' d='M190 190 Q190 180 180 180' stroke-width='0.9'/%3E%3Ccircle class='h' cx='190' cy='190' r='3' stroke-width='0.9'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.13;
}

nav, section, footer, main, header { position: relative; z-index: 1; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,240,0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--ink); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--warm-mid); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-book { background: var(--gold); color: var(--white) !important; padding: 0.45rem 1.2rem; border-radius: 2px; }
.nav-book:hover { background: var(--ink-soft) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--cream); border: 1px solid var(--border);
  min-width: 220px; z-index: 200; border-radius: 2px;
  box-shadow: 0 8px 32px rgba(26,18,9,0.1);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.6rem 1rem; font-size: 0.78rem; color: var(--warm-mid); text-decoration: none; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.nav-dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold); }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }

/* Sticky Book Now */
.sticky-book {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: var(--gold); color: var(--white);
  padding: 0.85rem 1.5rem; border-radius: 30px;
  text-decoration: none; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: all 0.2s; font-family: 'Jost', sans-serif;
  display: flex; align-items: center; gap: 0.5rem;
}
.sticky-book:hover { background: var(--ink-soft); transform: translateY(-2px); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* ── SECTION BASE ── */
section { padding: 5rem 5%; }
.section-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 0.75rem; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); line-height: 1.1; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--gold); }
.divider { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.section-center { text-align: center; max-width: 600px; margin: 0 auto 3rem; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--white); padding: 0.75rem 2rem; text-decoration: none; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; border-radius: 2px; transition: background 0.2s; font-family: 'Jost', sans-serif; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--ink-soft); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); padding: 0.75rem 2rem; text-decoration: none; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; transition: all 0.2s; font-family: 'Jost', sans-serif; display: inline-block; }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; min-height: 200px; }
.gallery-item.tall img { min-height: 420px; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-placeholder { width:100%; min-height:200px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:0.5rem; color:var(--warm-mid); font-size:0.75rem; letter-spacing:0.08em; text-transform:uppercase; border:1px dashed var(--gold-light); }
.gallery-item.tall .gallery-placeholder { min-height: 420px; }
.gallery-tag { position:absolute; bottom:0.75rem; left:0.75rem; background:rgba(26,18,9,0.7); color:var(--gold-light); font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; padding:0.3rem 0.6rem; border-radius:1px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display:flex; justify-content:space-between; align-items:center; padding:1.25rem 0; cursor:pointer; font-size:0.95rem; color:var(--ink-soft); font-weight:400; gap:1rem; }
.faq-question:hover { color: var(--gold); }
.faq-icon { flex-shrink:0; color:var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 1.25rem; font-size: 0.9rem; color: var(--warm-mid); line-height: 1.8; }

/* ── FORMS ── */
.form-group { display:flex; flex-direction:column; gap:0.4rem; }
.form-label { font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--warm-mid); font-weight:400; }
.form-input, .form-select, .form-textarea { border:1px solid var(--border); background:var(--cream); padding:0.75rem 1rem; font-family:'Jost',sans-serif; font-size:0.9rem; font-weight:300; color:var(--ink); border-radius:2px; outline:none; transition:border-color 0.2s; width:100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--gold); }
.form-textarea { resize:vertical; min-height:100px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ── PAGE HERO ── */
.page-hero { padding: 8rem 5% 4rem; background: rgba(250,247,240,0.72); text-align:center; }
.page-hero h1 { font-size: clamp(2.5rem,5vw,4rem); margin-bottom:1rem; }
.page-hero p { font-size:1rem; color:var(--warm-mid); max-width:600px; margin:0 auto; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 1rem 5%; font-size:0.78rem; color:var(--warm-mid); }
.breadcrumb a { color:var(--gold); text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ── FOOTER ── */
footer { background:rgba(26,18,9,0.91); color:rgba(250,247,240,0.5); padding:3rem 5%; text-align:center; }
.footer-logo { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--gold); margin-bottom:0.5rem; }
.footer-tagline { font-size:0.8rem; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:1.5rem; color:rgba(250,247,240,0.35); }
.footer-links { display:flex; gap:1.5rem; justify-content:center; list-style:none; margin-bottom:1.5rem; flex-wrap:wrap; }
.footer-links a { color:rgba(250,247,240,0.4); text-decoration:none; font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; transition:color 0.2s; }
.footer-links a:hover { color:var(--gold); }
.footer-bottom { font-size:0.75rem; color:rgba(250,247,240,0.2); border-top:1px solid rgba(250,247,240,0.06); padding-top:1.5rem; margin-top:1.5rem; }

/* ── MOBILE ── */
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .form-row { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-item.tall { grid-row:span 1; }
  .gallery-item.tall img, .gallery-item.tall .gallery-placeholder { min-height:200px; }
  section { padding:3.5rem 5%; }
}
