/* ==========================================================================
   by isla studio — brand stylesheet
   Palette:  yellow #FFD063 (var(--dusty-blue) slots) · beige #F7F2E6 (bg) ·
             blue #7498AE (var(--wine) slots) · pink #E7C6C2 (var(--blush) slots)
   Note: variable NAMES kept from the previous "loading events" palette to
   minimise edits across templates — only the hex VALUES changed to the new
   by isla studio brand colours above.
   Type:     Poppins (headings/body) · Give You Glory (script accent —
             free lookalike for the brand deck's "Billion Miracles", which
             is personal-use-only and can't be embedded commercially)
   ========================================================================== */

:root {
  --dusty-blue: #FFD063;
  --dusty-blue-dark: #E8B23A;
  --dusty-blue-soft: #FFF6E0;
  --cream: #F7F2E6;
  --wine: #7498AE;
  --wine-dark: #3F5D72;
  --wine-soft: #EAF0F4;
  --blush: #E7C6C2;
  --blush-soft: #F8EDEB;
  --ink: #2C2420;
  --ink-soft: #55493f;
  --white: #FFFFFF;

  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Give You Glory", "Brush Script MT", cursive;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-logo: "Fredoka", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1160px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --shadow-soft: 0 8px 20px -12px rgba(44, 36, 32, 0.14);
  --shadow-lift: 0 14px 28px -14px rgba(44, 36, 32, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body.nav-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-sm);
  color: var(--wine-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 var(--space-sm); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}
@media (max-width: 640px) {
  .container { padding: 0 var(--space-sm); }
  body { font-size: 16px; }
}

/* ---------- Script accent ---------- */
.script {
  font-family: var(--font-script);
  color: var(--wine);
  font-size: 2.3rem;
  display: inline-block;
  line-height: 1;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--1 { transition-delay: 0.08s; }
.reveal--2 { transition-delay: 0.16s; }
.reveal--3 { transition-delay: 0.24s; }
.reveal--4 { transition-delay: 0.32s; }

/* ---------- Logo / brand mark ---------- */
.logo {
  font-family: var(--font-logo);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--dusty-blue-dark);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  position: relative;
}
.logo__accent { color: var(--blush); }
.logo__studio {
  font-family: var(--font-script);
  color: var(--wine);
  font-size: 0.5em;
  font-weight: 400;
  margin-left: 0.1rem;
  transform: rotate(-9deg) translateY(-0.35em);
  transform-origin: left bottom;
}
.logo--footer { font-size: 2.1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(247, 242, 230, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(107, 17, 82, 0.1);
  position: sticky;
  top: 0;
  z-index: 300;
  transition: box-shadow 0.35s var(--ease), padding 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 4px 14px -10px rgba(44, 36, 32, 0.2); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  transition: padding 0.3s var(--ease);
}
.site-header.is-scrolled .site-header__inner { padding: 0.85rem var(--space-md); }

.nav-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 320;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--wine-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease, top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.site-nav ul {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.site-nav a {
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding: 0.4rem 0.1rem;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--wine);
  transition: right 0.3s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--wine); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.site-nav__footer { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 32, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 290;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(88vw, 400px);
    background: var(--wine-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 310;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .site-nav li {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
  }
  .site-nav.is-open li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i, 0) * 0.06s);
  }
  .site-nav a {
    display: block;
    padding: 0.7rem 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--white);
  }
  .site-nav a::after { display: none; }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { color: var(--blush); }
  .site-nav__footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .site-nav__footer a {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }
  .site-header__inner { flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,32,26,0.08) 0%, rgba(43,32,26,0.1) 35%, rgba(43,32,26,0.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md) var(--space-xl);
  max-width: 800px;
}
.hero__content .script { color: var(--blush); text-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.hero__content h1 { color: var(--white); text-shadow: 0 6px 30px rgba(0,0,0,0.25); }
.hero__content p { color: rgba(255,255,255,0.92); font-size: 1.08rem; max-width: 560px; }
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  display: none;
}
.hero__scroll-cue::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@media (min-width: 640px) { .hero__scroll-cue { display: block; } }
@keyframes scrollcue {
  0% { opacity: 0; top: 8px; }
  30% { opacity: 1; }
  80% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--wine);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s var(--ease);
}
.btn:hover { background: var(--wine-dark); border-color: var(--wine-dark); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
  box-shadow: none;
}
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); box-shadow: none; }

/* ---------- Sections ---------- */
section { padding: var(--space-xl) 0; position: relative; }
.section--tight { padding: var(--space-lg) 0; }
.section--flush { padding: 0; }
.section--blush { background: var(--blush-soft); }
.section--wine { background: var(--wine); color: var(--white); }
.section--wine h2, .section--wine h3 { color: var(--white); }
.section--wine-soft { background: var(--wine-soft); }
.prose { max-width: 680px; }
.prose--center { margin: 0 auto; text-align: center; }

/* ---------- Photo moment (full-bleed image break) ---------- */
.photo-moment {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.photo-moment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,32,26,0.12) 0%, rgba(43,32,26,0.4) 100%);
}
.photo-moment__quote {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  text-align: center;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  max-width: 720px;
  padding: 0 var(--space-md);
  margin: 0;
}

/* ---------- Qualities list (home) ---------- */
.qualities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-lg);
  margin: var(--space-md) 0 var(--space-lg);
}
.qualities li {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--wine);
  position: relative;
}
.qualities li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(var(--space-lg) / -2 - 3px);
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translate(50%, -50%) rotate(45deg);
  background: var(--dusty-blue);
}

/* ---------- Two-column layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}
.split img { border-radius: 14px; box-shadow: var(--shadow-soft); }
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.service-card h3 { color: var(--wine); }
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Approach sections ---------- */
.approach-block { margin-bottom: var(--space-lg); }
.approach-block ul { margin: var(--space-sm) 0; }
.approach-block li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.approach-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dusty-blue);
}

/* ---------- Gallery (Instagram-feed style) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: var(--space-md);
}
.gallery-grid a,
.photo-strip a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: var(--blush-soft);
}
.gallery-grid img,
.photo-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(1.1) sepia(0.07) contrast(1.03);
}
.gallery-grid a::after,
.photo-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(80,13,61,0) 45%, rgba(50,13,38,0.4) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.gallery-grid a::before,
.photo-strip a::before {
  content: "♥";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  text-shadow: 0 3px 14px rgba(0,0,0,0.35);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.17, 0.67, 0.53, 1.5);
  pointer-events: none;
}
.gallery-grid a:hover::after,
.photo-strip a:hover::after { opacity: 1; }
.gallery-grid a:hover::before,
.photo-strip a:hover::before { opacity: 0.95; transform: translate(-50%, -50%) scale(1); }
.gallery-grid a:hover img,
.photo-strip a:hover img { transform: scale(1.06); filter: saturate(1.18) sepia(0.1) contrast(1.05); }
@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
}

/* ---------- Photo strip (home) ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media (max-width: 780px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); gap: 3px; }
}

/* ---------- Text link (instagram follow, teaser CTAs) ---------- */
.instagram-follow,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
  border-bottom: 1px solid rgba(107,17,82,0.3);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.instagram-follow:hover,
.text-link:hover { color: var(--wine-dark); border-color: var(--wine-dark); }
.text-link { margin-top: var(--space-sm); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.6rem;
  left: 1.1rem;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--dusty-blue-soft);
  line-height: 1;
}
.testimonial-card p:first-child {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--wine-dark);
  position: relative;
}
.testimonial-card .names {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact form ---------- */
.contact-form {
  display: grid;
  gap: var(--space-sm);
  max-width: 640px;
  margin-top: var(--space-md);
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.form-field { display: grid; gap: 0.35rem; }
.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine-dark);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(107,17,82,0.18);
  background: var(--blush-soft);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--white);
}
.contact-direct {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(107,17,82,0.15);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--wine-dark);
  color: var(--blush);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
}
.site-footer a { color: var(--white); transition: color 0.2s ease; }
.site-footer a:hover { color: var(--dusty-blue); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.3rem; }
.footer-nav a { font-size: 0.9rem; }
.footer-bottom {
  font-size: 0.8rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-sm);
  position: relative;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.7rem;
  display: block;
}

/* ---------- Booking note ---------- */
.booking-note {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blush);
  padding-bottom: 0.5rem;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.section--wine .booking-note,
.section--blue .booking-note { color: var(--blush); }
.booking-note--light {
  color: var(--wine);
  border-bottom-color: rgba(107,17,82,0.25);
}

/* ---------- Process steps (home) ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg) var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 1;
}
.process-step { text-align: left; }
.process-step__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 2.1rem;
  color: var(--dusty-blue-dark);
  display: block;
  margin-bottom: 0.5rem;
}
.process-step h3 { margin-bottom: 0.4rem; }
.process-step p { color: var(--ink-soft); margin-bottom: 0; }
@media (max-width: 780px) {
  .process-steps { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ---------- FAQ (services) ---------- */
.faq-list { margin-top: var(--space-md); }
.faq-item {
  border-bottom: 1px solid rgba(107,17,82,0.15);
  padding: var(--space-sm) 0;
  transition: padding-left 0.25s ease;
}
.faq-item:hover { padding-left: 0.4rem; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--wine-dark); }
.faq-item p { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Turnstile widget ---------- */
.cf-turnstile { margin: var(--space-xs) 0 var(--space-sm); }
