/* ===================================================
   Gift Haven — Boutique Website Styles
   Palette: Dusty Rose · Cream · Gold · Blush · Warm White
   =================================================== */

:root {
  --cream:        #faf6f1;
  --cream-dark:   #f3ece3;
  --blush:        #f0d9ce;
  --rose:         #c4837a;
  --rose-dark:    #a8645b;
  --gold:         #c9a96e;
  --gold-light:   #e8d5a8;
  --charcoal:     #2d2420;
  --warm-grey:    #7a6b65;
  --text:         #3d302b;
  --white:        #ffffff;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(45,36,32,0.09);
  --shadow-lg:    0 8px 40px rgba(45,36,32,0.14);

  --max-width:    1240px;
  --nav-h:        88px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Utilities ── */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-intro {
  max-width: 520px;
  margin: 0 auto;
  color: var(--warm-grey);
}
.section-intro a { color: var(--rose); border-bottom: 1px solid var(--blush); }
.section-intro a:hover { color: var(--rose-dark); }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; color: var(--rose); }

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,131,122,0.35);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196,131,122,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(45,36,32,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.site-nav nav {
  display: flex;
  gap: 2.5rem;
}
.site-nav nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.site-nav nav a:hover { color: var(--gold-light); }
.site-nav.scrolled nav a {
  color: var(--charcoal);
  text-shadow: none;
}
.site-nav.scrolled nav a:hover { color: var(--rose); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--blush);
  z-index: 99;
  flex-direction: column;
  padding: 1rem 0;
  box-shadow: 0 8px 24px rgba(45,36,32,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-link:last-child { border-bottom: none; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45,36,32,0.75) 0%,
    rgba(45,36,32,0.55) 50%,
    rgba(45,36,32,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,1);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-badges span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll-hint svg {
  width: 18px;
  height: 18px;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 1;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-logo {
  background: var(--white);
}
.about-img-logo img {
  object-fit: contain;
  padding: 1rem;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--warm-grey);
  margin-bottom: 1.25rem;
}
.about-detail {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.detail-item { display: flex; flex-direction: column; gap: 0.2rem; }
.detail-item strong {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.detail-item span { font-size: 0.92rem; color: var(--text); }
.detail-divider {
  width: 1px;
  height: 40px;
  background: var(--blush);
  flex-shrink: 0;
}

/* ===================================================
   OFFERINGS
   =================================================== */
.offerings {
  padding: 7rem 0;
  background: var(--cream);
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.offering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.offering-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-card:hover .offering-img img {
  transform: scale(1.05);
}
.offering-img--contain {
  background: var(--cream);
}
.offering-img--contain img {
  object-fit: contain !important;
  padding: 0.75rem;
}
.offering-img--contain:hover img {
  transform: scale(1.02) !important;
}
.offering-body {
  padding: 1.5rem;
}
.offering-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.offering-body p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.65;
}
.offering-card--featured {
  border: 2px solid var(--gold-light);
}
.offering-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--cream);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ===================================================
   QUOTE
   =================================================== */
.quote-section {
  padding: 5rem 0;
  background: var(--rose);
}
.quote-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(255,255,255,0.18);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
cite {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  padding: 7rem 0;
  background: var(--cream-dark);
}

/* Videos */
.gallery-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gallery-video-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}
.gallery-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-zoomed-out {
  object-fit: contain !important;
  background: #1a1210;
}
.gallery-video-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(45,36,32,0.55);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

/* Photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-bottom: 3rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* Social links */
.gallery-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1.5px solid var(--rose);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-btn:hover {
  background: var(--rose);
  color: var(--white);
}

/* ===================================================
   VISIT US
   =================================================== */
.visit {
  padding: 7rem 0;
  background: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-info h2 { margin-bottom: 2rem; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.visit-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--blush);
}
.visit-icon svg { width: 18px; height: 18px; color: var(--rose); }
.visit-detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.visit-detail-item strong {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.visit-detail-item span,
.visit-detail-item a {
  font-size: 0.95rem;
  color: var(--text);
}
.visit-detail-item a:hover { color: var(--rose); }
.visit-sub {
  font-size: 0.82rem !important;
  color: var(--warm-grey) !important;
}

.visit-social {
  display: flex;
  gap: 0.75rem;
}
.visit-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  transition: all 0.25s ease;
}
.visit-social a svg { width: 18px; height: 18px; }
.visit-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(20%) saturate(0.8);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.footer-logo p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .site-nav nav { display: none; }
  .nav-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images { max-width: 520px; margin: 0 auto; }
  .about-img-secondary { right: 0; }

  .visit-grid {
    grid-template-columns: 1fr;
  }
  .visit-map { height: 320px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo { grid-column: 1 / -1; }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

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

  .br-desktop { display: none; }

  .hero-badges { gap: 0.5rem 1rem; }
  .hero-badges span { font-size: 0.68rem; }

  h2 { font-size: 1.9rem; }

  .about-detail { flex-direction: column; gap: 1rem; }
  .detail-divider { width: 40px; height: 1px; }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
