/* =============================================
   LOVE ELEVATE — Global Stylesheet
   Brand: #302b3b charcoal · #c89d93 rose · #dab6ab rose-100 · #c5bab1 mist
   ============================================= */

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

:root {
  --charcoal:    #302b3b;
  --rose:        #c89d93;
  --rose-100:    #dab6ab;
  --rose-pale:   #f5eeec;
  --rose-ultra:  #faf5f4;
  --mist:        #c5bab1;
  --mist-pale:   #f3efed;
  --white:       #ffffff;
  --text:        #302b3b;
  --text-mid:    #6b5a5e;
  --text-light:  #a08890;
  --border:      #e8ddd9;
  --border-soft: #f0e8e5;
  --nav-h:       72px;
}

/* RESET */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Poppins',sans-serif; background:var(--rose-ultra); color:var(--text); overflow-x:hidden; font-weight:300; line-height:1.6; }
img { max-width:100%; display:block; }
a { text-decoration:none; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-thumb { background:var(--rose-100); border-radius:10px; }

/* CURSOR */
*, *::before, *::after { cursor: none !important; }
.cur { width:8px; height:8px; background:var(--rose); border-radius:50%; position:fixed !important; pointer-events:none !important; z-index:99999 !important; transform:translate(-50%,-50%); mix-blend-mode:multiply; transition:width .2s,height .2s; top:0; left:0; }
.cur-ring { width:28px; height:28px; border:1.5px solid var(--rose); border-radius:50%; position:fixed !important; pointer-events:none !important; z-index:99998 !important; transform:translate(-50%,-50%); opacity:0.5; top:0; left:0; }

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:300;
  height:var(--nav-h);
  padding:0 64px;
  display:flex; justify-content:space-between; align-items:center;
  background:rgba(48,43,59,0.95);
  backdrop-filter:blur(16px);
  transition:height .35s, background .35s;
}
nav.scrolled { height:60px; background:rgba(48,43,59,0.99); }
.nav-logo img { height:36px; display:block; }
.nav-links { list-style:none; display:flex; gap:26px; align-items:center; }
.nav-links a {
  font-size:0.69rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.88); transition:color .25s; position:relative;
}
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--rose-100); transition:width .25s; }
.nav-links a:hover, .nav-links a.active { color:var(--rose-100); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta {
  background:var(--rose) !important; color:#fff !important;
  padding:9px 22px; border-radius:999px;
  font-size:0.69rem !important; font-weight:600 !important;
  letter-spacing:0.1em; transition:all .25s;
}
.nav-cta:hover { background:var(--rose-100) !important; color:var(--charcoal) !important; }
.nav-cta::after { display:none !important; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
.nav-hamburger span { width:24px; height:2px; background:rgba(255,255,255,0.8); border-radius:2px; transition:all .3s; display:block; }
.mobile-menu {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0; bottom:0;
  background:rgba(48,43,59,0.98); backdrop-filter:blur(20px);
  flex-direction:column; align-items:center; justify-content:center; gap:32px;
  z-index:299;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:1.2rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.85); transition:color .25s; }
.mobile-menu a:hover { color:var(--rose-100); }
.mobile-menu .nav-cta { font-size:0.85rem !important; padding:12px 28px; }

/* BUTTONS */
.btn {
  display:inline-block; font-family:'Poppins',sans-serif;
  font-size:0.75rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  border-radius:999px; padding:14px 32px; transition:all .25s; border:none;
}
.btn-solid { background:var(--rose-100); color:#fff; box-shadow:0 4px 18px rgba(218,182,171,0.4); }
.btn-solid:hover { background:var(--rose); transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,157,147,0.45); }
.btn-solid-dark { background:var(--charcoal); color:#fff; }
.btn-solid-dark:hover { background:#1e1a26; transform:translateY(-2px); }
.btn-outline { border:2px solid var(--charcoal); color:var(--charcoal); background:transparent; }
.btn-outline:hover { background:var(--rose-100); border-color:var(--rose-100); color:#fff; }
.btn-outline-white { border:2px solid rgba(255,255,255,0.75); color:#fff; background:transparent; }
.btn-outline-white:hover { background:rgba(255,255,255,0.12); border-color:#fff; }
.btn-outline-rose { border:2px solid var(--rose); color:var(--rose); background:transparent; }
.btn-outline-rose:hover { background:var(--rose); color:#fff; }
.btn-text {
  font-size:0.69rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--rose); display:inline-flex; align-items:center; gap:6px; transition:gap .25s;
}
.btn-text:hover { gap:12px; }
.btn-text::after { content:'→'; }
.btn-lg { padding:16px 40px; font-size:0.82rem; }
.btn-sm { padding:9px 20px; font-size:0.68rem; }

/* TYPOGRAPHY */
.eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:0.67rem; font-weight:600; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--rose); margin-bottom:16px;
}
.eyebrow::before { content:''; width:24px; height:1px; background:var(--rose); }
.eyebrow-light { color:var(--rose-100); }
.eyebrow-light::before { background:var(--rose-100); }
h1 { font-family:'Cormorant Garamond',serif; font-weight:300; line-height:1.05; color:var(--charcoal); }
h2 { font-family:'Cormorant Garamond',serif; font-weight:300; line-height:1.15; color:var(--charcoal); }
h3 { font-family:'Poppins',sans-serif; font-weight:600; line-height:1.3; color:var(--charcoal); }
h1 em, h2 em { font-style:italic; color:var(--rose); }
.lead { font-size:0.92rem; font-weight:300; line-height:1.9; color:var(--text-mid); }

/* PAGE HERO (shared across inner pages) */
.page-hero {
  min-height:60vh; display:flex; align-items:center; justify-content:center;
  text-align:center; position:relative; overflow:hidden;
  background:var(--charcoal); padding:calc(var(--nav-h) + 60px) 64px 60px;
}
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0.3; }
.page-hero-content { position:relative; z-index:2; max-width:720px; }
.page-hero h1 { font-size:clamp(2.8rem,5vw,5rem); color:#fff; margin-bottom:18px; }
.page-hero h1 em { color:var(--rose-100); }
.page-hero .lead { color:rgba(255,255,255,0.65); max-width:560px; margin:0 auto 32px; }

/* SECTIONS */
.section { padding:96px 64px; }
.section-sm { padding:64px 64px; }
.section-white { background:var(--white); }
.section-cream { background:var(--rose-ultra); }
.section-mist { background:var(--mist-pale); }
.section-dark { background:var(--charcoal); }
.section-dark h2 { color:#fff; }
.section-dark .eyebrow { color:var(--rose-100); }
.section-dark .eyebrow::before { background:var(--rose-100); }
.section-dark .lead { color:rgba(255,255,255,0.55); }
.sec-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:52px; }
.sec-header-left { }
.text-center { text-align:center; }
.text-center .eyebrow { justify-content:center; }
.text-center .eyebrow::before { display:none; }
.text-center .lead { margin:0 auto; }

/* GRID HELPERS */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.split { display:grid; grid-template-columns:1fr 1fr; align-items:center; }
.split-img { min-height:520px; background-size:cover; background-position:center; }

/* CARDS */
.card {
  background:var(--white); border-radius:24px;
  border:1px solid var(--border-soft); overflow:hidden;
  transition:transform .3s, box-shadow .3s;
}
.card:hover { transform:translateY(-6px); box-shadow:0 18px 48px rgba(200,157,147,0.2); }
.card-body { padding:28px; }
.card-thumb { height:200px; background:var(--rose-pale); }

/* FORM ELEMENTS */
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:0.63rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-light); margin-bottom:6px; }
.form-input {
  width:100%; padding:12px 18px;
  border:1.5px solid var(--border); border-radius:999px;
  background:var(--white); font-family:'Poppins',sans-serif;
  font-size:0.84rem; font-weight:300; color:var(--text);
  outline:none; transition:border-color .25s, box-shadow .25s;
}
.form-input:focus { border-color:var(--rose); box-shadow:0 0 0 3px rgba(200,157,147,0.2); }
.form-input::placeholder { color:var(--text-light); }
textarea.form-input { resize:vertical; min-height:110px; border-radius:18px; }
select.form-input { border-radius:999px; }

/* PILL TAGS */
.tag-pill { font-size:0.7rem; font-weight:500; padding:7px 16px; border-radius:999px; background:var(--rose-pale); color:var(--rose); border:1px solid var(--border); display:inline-block; }

/* REVIEW CARD */
.review-card {
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
  border-radius:24px; padding:28px;
  transition:background .25s, transform .25s;
}
.review-card:hover { background:rgba(255,255,255,0.09); transform:translateY(-4px); }
.review-stars { color:var(--rose-100); font-size:0.8rem; letter-spacing:0.1em; margin-bottom:12px; }
.review-text { font-size:0.82rem; font-weight:300; line-height:1.75; color:rgba(255,255,255,0.7); margin-bottom:16px; font-style:italic; }
.review-name { font-size:0.68rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--rose-100); }

/* NEWSLETTER STRIP */
.nl-strip {
  background:linear-gradient(135deg, var(--rose-pale), var(--mist-pale));
  padding:80px 64px;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.nl-form { display:flex; flex-direction:column; gap:14px; }
.nl-note { font-size:0.7rem; font-weight:300; color:var(--text-light); padding-left:8px; }

/* FOOTER */
footer { background:var(--charcoal); color:rgba(255,255,255,0.5); padding:60px 64px 28px; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:48px; margin-bottom:44px; }
.f-logo img { height:40px; margin-bottom:14px; }
.f-brand p { font-size:0.8rem; font-weight:300; line-height:1.85; color:rgba(255,255,255,0.38); max-width:260px; margin-bottom:16px; }
.f-tagline { font-size:0.72rem; color:rgba(255,255,255,0.25); }
.f-socials { display:flex; gap:9px; margin-top:18px; }
.f-social { width:34px; height:34px; border-radius:10px; border:1px solid rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; font-size:0.7rem; color:rgba(255,255,255,0.4); text-decoration:none; font-style:normal; transition:all .25s; }
.f-social:hover { border-color:var(--rose-100); color:var(--rose-100); }
.f-col h4 { font-size:0.63rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.75); margin-bottom:18px; }
.f-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.f-links a { font-size:0.8rem; font-weight:300; color:rgba(255,255,255,0.38); transition:color .25s; }
.f-links a:hover { color:var(--rose-100); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.07); padding-top:20px; display:flex; justify-content:space-between; font-size:0.72rem; color:rgba(255,255,255,0.22); }
.footer-bottom a { color:rgba(255,255,255,0.3); }
.footer-seo { font-size:0.6rem; color:rgba(255,255,255,0.08); line-height:1.8; padding-top:16px; text-align:center; }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
.fu { opacity:0; animation:fadeUp .8s ease forwards; }
.d1{animation-delay:.12s}.d2{animation-delay:.25s}.d3{animation-delay:.4s}.d4{animation-delay:.55s}.d5{animation-delay:.7s}

/* SCROLL REVEAL */
.reveal { opacity:1; transform:translateY(0); transition:opacity .65s ease, transform .65s ease; }
.js-ready .reveal { opacity:0; transform:translateY(20px); }
.js-ready .reveal.visible { opacity:1; transform:translateY(0); }

/* Universal icon box — replaces all emoji containers */
.value-icon, .offering-icon, .trust-icon, .occasion-icon, .bi-icon, .event-badge-icon {
  color: var(--rose) !important;
  font-size: 1rem !important;
  font-style: normal;
  letter-spacing: 0;
}

/* RESPONSIVE */
@media(max-width:960px){
  nav { padding:0 24px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .section, .section-sm, .nl-strip { padding:64px 24px; }
  .page-hero { padding:calc(var(--nav-h) + 40px) 24px 48px; }
  .split { grid-template-columns:1fr; }
  .split-img { min-height:300px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
  .sec-header { flex-direction:column; align-items:flex-start; gap:14px; }
  .nl-strip { grid-template-columns:1fr; gap:40px; }
  footer { padding:48px 24px 24px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}
@media(max-width:540px){
  .footer-grid { grid-template-columns:1fr; }
  .grid-2 { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════
   MOBILE — iPhone & Android (max 768px)
   ═══════════════════════════════════════════════ */

/* Utility class — any inline grid gets this on mobile */
@media(max-width:768px){

  /* ── Global spacing & typography ── */
  body { font-size:15px; }
  h1, .d1 { font-size:clamp(2rem,8vw,3rem) !important; }
  h2 { font-size:clamp(1.6rem,6vw,2.2rem) !important; }
  .lead { font-size:0.95rem !important; }
  .section, .section-sm { padding:48px 20px !important; }
  .nl-strip { padding:48px 20px !important; }

  /* ── Nav ── */
  nav { padding:0 16px !important; }
  .nav-logo img { height:44px; }

  /* ── Hero ── */
  .page-hero { padding:calc(var(--nav-h) + 32px) 20px 48px !important; min-height:420px !important; }
  .page-hero-content { text-align:center; }
  .page-hero .btn { width:100%; text-align:center; }

  /* ── Generic inline 2-col grids → stack ── */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ── Generic inline 3-col grids → stack ── */
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="repeat(3,1fr)"],
  [style*="repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* ── Generic inline 4-col → 2-col ── */
  [style*="repeat(4,1fr)"],
  [style*="repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* ── Nectar retreat ── */
  .what-section { grid-template-columns:1fr !important; }
  .what-section > div:first-child { border-right:none !important; border-bottom:1px solid var(--border); padding-bottom:40px; }

  /* ── Pricing cards ── */
  .room-grid, [style*="grid-template-columns:1fr 1fr"]:has(img) {
    grid-template-columns:1fr !important;
  }

  /* ── Schedule / sample cards ── */
  .schedule-grid { grid-template-columns:1fr !important; }

  /* ── Reviews ── */
  .reviews-grid { grid-template-columns:1fr !important; }

  /* ── Photo grids ── */
  [style*="height:380px"] iframe { height:260px !important; }
  [style*="height:420px"] img { height:260px !important; }
  [style*="height:300px"] img { height:220px !important; }

  /* ── Getting there map section ── */
  #getting-there [style*="grid-template-columns"] {
    grid-template-columns:1fr !important;
  }

  /* ── Bachelorette section ── */
  #bachelorette [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns:1fr !important;
  }
  #bachelorette [style*="grid-template-columns:1fr 1fr"]:last-child {
    display:none; /* hide photo grid on mobile, keep the text */
  }

  /* ── Bach form grid ── */
  #bach-form [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  /* ── Footer ── */
  .footer-grid { grid-template-columns:1fr !important; gap:32px !important; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .f-socials { justify-content:flex-start; }

  /* ── Buttons ── */
  .btn-lg { padding:14px 24px !important; font-size:0.85rem !important; }

  /* ── Newsletter strip ── */
  .nl-strip { grid-template-columns:1fr !important; gap:32px !important; }
  .nl-form { flex-direction:column !important; }
  .nl-form input, .nl-form .btn { width:100% !important; }

  /* ── Blog grid ── */
  .blog-grid { grid-template-columns:1fr !important; }

  /* ── Events cards ── */
  .events-grid { grid-template-columns:1fr !important; }
  .event-card-thumb { height:200px !important; }

  /* ── Occasions pills ── */
  .occasions-grid { grid-template-columns:1fr 1fr !important; }

  /* ── Private bookings ── */
  .pb-types { grid-template-columns:1fr !important; }
  .booking-form-wrap { grid-template-columns:1fr !important; gap:40px !important; }
  .form-row { grid-template-columns:1fr !important; }

  /* ── Corporate ── */
  .corp-grid { grid-template-columns:1fr !important; }

  /* ── Meet the team ── */
  .team-split { grid-template-columns:1fr !important; }
  .team-img { min-height:320px !important; }

  /* ── Stat bars / meta bar ── */
  .meta-bar { flex-wrap:wrap !important; gap:12px !important; }
  .meta-item { font-size:0.75rem !important; }

  /* ── Community photo band ── */
  [style*="height:420px"] { height:260px !important; }
  [style*="bottom:48px; left:64px"] { bottom:24px !important; left:24px !important; }

  /* ── Horizontal scroll prevention ── */
  section, main, footer, header { max-width:100vw; overflow-x:hidden; }
  * { box-sizing:border-box; }
}

/* ── Smaller phones (iPhone SE, 375px) ── */
@media(max-width:400px){
  h1, .d1 { font-size:1.9rem !important; }
  .btn-lg { width:100% !important; display:block !important; }
  .eyebrow { font-size:0.58rem !important; }
  .section { padding:40px 16px !important; }
  .page-hero { padding:calc(var(--nav-h) + 24px) 16px 40px !important; }
}

/* ── Hamburger animation ── */
.nav-hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.nav-hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.nav-hamburger span { transition: transform 0.25s ease, opacity 0.2s ease; }

/* ── Mobile menu full-screen overlay ── */
@media(max-width:960px){
  .mobile-menu {
    position:fixed;
    top:var(--nav-h);
    left:0; right:0; bottom:0;
    background:rgba(30,26,38,0.98);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    z-index:998;
    overflow-y:auto;
    padding:40px 24px;
  }
  .mobile-menu a {
    font-size:1.3rem !important;
    padding:14px 0;
    width:100%;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  .mobile-menu .nav-cta {
    margin-top:24px;
    width:auto !important;
    padding:14px 40px !important;
    border-bottom:none !important;
  }
}

/* ── Touch tap highlight removal ── */
a, button { -webkit-tap-highlight-color: transparent; }

/* ── Smooth scroll on iOS ── */
html { scroll-behavior:smooth; -webkit-overflow-scrolling:touch; }

/* ── Safe area insets for notch/island phones ── */
nav { padding-left:max(24px, env(safe-area-inset-left)); padding-right:max(24px, env(safe-area-inset-right)); }
footer { padding-bottom:max(24px, env(safe-area-inset-bottom)); }
