/* ─── VARIABLES ─── */
:root {
  --blush: #e8cfc4;
  --blush-light: #f2e4dc;
  --blush-dark: #d4b8ac;
  --charcoal: #1a1a1a;
  --gold: #b89a5a;
  --gold-light: #d4b87a;
  --cream: #faf6f3;
  --grey-pill: #e2e0de;
  --text: #2a2020;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}


/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 80px;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-logo img {
  height: 58px;
  width: 58px;
  object-fit: cover;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { 
  color: #9b7a3d; 
  text-shadow: 0 0 10px rgba(184,154,90,0.8);
}
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--blush);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.06em;
}


/* ═══════════════════════════════
   HERO / WELCOME
═══════════════════════════════ */
#welcome {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('imgs/BlackWaves.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,154,90,0.15);
  animation: pulse-ring 6s ease-in-out infinite;
}

.hero-ring:nth-child(2) { width: 500px; height: 500px; top: 10%; right: -100px; animation-delay: 0s; }
.hero-ring:nth-child(3) { width: 320px; height: 320px; top: 20%; right: -30px; animation-delay: 1.5s; }
.hero-ring:nth-child(4) { width: 180px; height: 180px; top: 30%; right: 40px; animation-delay: 3s; }

@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  width: 90%;
  padding: 4rem 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-logo-img {
  width: 225px;
  height: 225px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0;
  animation: fade-up 1s ease forwards 0.2s;
  box-shadow: 0 0 30px var(--gold), 0 0 60px rgba(184, 154, 90, 0.5);
  filter: brightness(1.1);
}

.hero-subtitle {
  position: static;
  transform: none;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 2.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 2px 2px 4px black;
  opacity: 0;
  animation: fade-up 1s ease forwards 0.5s;
  z-index: 1;
}

.hero-pill {
  background: var(--grey-pill);
  border-radius: 40px;
  padding: 2rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: #555;
  opacity: 0;
  animation: fade-up 1s ease forwards 1.1s;
  max-width: 480px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
  opacity: 0;
  animation: fade-left 1s ease forwards 0.9s;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: rgba(26,26,26,0.95);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  border: 1px solid var(--gold);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  opacity: 0;
  animation: fade-up 1s ease forwards 1.1s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 0 20px rgba(184,154,90,0.7);
  transform: translateY(-2px);
}

.hero-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-left {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* ═══════════════════════════════
   DIVIDER
═══════════════════════════════ */
.divider {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
}


/* ═══════════════════════════════
   COLLECTION
═══════════════════════════════ */
#collection {
  background: var(--blush-light);
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}

.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Service cards */
.wrapper {
  height: 320px;
  width: 100%;
  border-radius: 7px;
  box-shadow: 0px 14px 32px 0px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  overflow: hidden;
  margin-bottom: 0;
}

.wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0px 20px 50px rgba(0,0,0,0.25);
}

.product-img {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}

.product-img img {
  border-radius: 7px 0 0 7px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 0 0 50%;
  height: 100%;
  border-radius: 0 7px 7px 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.product-text {
  flex: 1;
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-text h1 {
  font-size: 16px;
  color: #474747;
  font-family: 'Jost', sans-serif;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.product-text h2 {
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #d2d2d2;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.product-text p {
  font-family: 'Jost', sans-serif;
  color: #8d8d8d;
  line-height: 1.4em;
  font-size: 11px;
  font-weight: lighter;
}

.product-price-btn {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
}

.product-price-btn p {
  display: inline-block;
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: lighter;
  color: #474747;
}

span {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  margin-right: 0.25rem;
}

.btn-book {
  display: inline-block;
  height: 40px;
  padding: 0 1rem;
  border-radius: 60px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  background-color: var(--gold);
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.btn-book:hover {
  background-color: var(--gold-light);
}


/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
#contact {
  background: var(--cream);
  padding: 6rem 2rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Wrapper for all contact items */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Top 3-column row */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

/* Shared card style — matches hero-about-card exactly */
.info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 2.2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  border-left: 3px solid var(--gold);
}

.contact-top .info-card:nth-child(2) {
  border-right: 3px solid var(--gold);
}

.contact-top .info-card:nth-child(3) {
  border-left: none;
  border-right: 3px solid var(--gold);
}

.info-card h4 {
  font-family: 'Pinyon Script', cursive;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

/* Contact links inside info-card */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
}

.contact-link:hover { transform: translateX(4px); }

.contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-insta { background: linear-gradient(135deg, #f9c784, #e8a09a, #c895c5); }
.icon-email { background: var(--blush-dark); }
.icon-book  { background: var(--gold); }

.contact-icon svg {
  width: 22px; height: 22px;
  fill: white;
}

.contact-label span:first-child {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-label span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* Hours list inside info-card */
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 300;
  color: #555;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 400; color: var(--charcoal); }

/* Map iframe inside info-card */
.iframe-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

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

/* Full-width booking widget card */
.booking-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 2.2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  border-left: 3px solid var(--gold);
}

.booking-card h4 {
  font-family: 'Pinyon Script', cursive;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.booking-iframe-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

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


/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

footer span { color: var(--gold); }


/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════ */
@media (max-width: 1024px) {
  .contact-top {
    grid-template-columns: 1fr 1fr;
  }

  /* Location card goes full-width on tablet */
  .contact-top .info-card:last-child {
    grid-column: 1 / -1;
  }

  .iframe-container iframe {
    height: 220px;
  }
}


/* ═══════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner {
    padding: 2rem 0;
    width: 92%;
  }

  /* Service cards — stack vertically */
  .wrapper {
    height: auto;
    flex-direction: column;
  }

  .product-img {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }

  .product-img img {
    border-radius: 7px 7px 0 0;
  }

  .product-info {
    flex: 0 0 auto;
    height: auto;
    border-radius: 0 0 7px 7px;
  }

  /* Contact top — single column */
  .contact-top {
    grid-template-columns: 1fr;
  }

  .contact-top .info-card:last-child {
    grid-column: auto;
  }

  .booking-iframe-container iframe {
    height: 580px;
  }
}


/* ═══════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════ */
@media (max-width: 480px) {
  nav { padding: 0 1.2rem; }

  #collection,
  #contact {
    padding: 4rem 1.2rem;
  }

  #welcome {
    padding: 80px 1.2rem 2rem;
  }

  .hero-inner {
    width: 100%;
  }

  .product-text h1 { font-size: 16px; }
  .product-text p  { font-size: 11px; }
  .product-price-btn p { font-size: 16px; }
  span { font-size: 18px; }

  .btn-book {
    font-size: 10px;
    padding: 0 0.75rem;
  }

  .booking-iframe-container iframe {
    height: 520px;
  }
}