/* ==========================================================================
   Floral Gatherings - Main Stylesheet
   A DIY floral kit company based in Welland, Ontario
   ========================================================================== */


/* ==========================================================================
   1. FONTS
   ========================================================================== */

@font-face {
  font-family: 'Recoleta';
  src: url('assets/brand/Fonts/Recoleta/Recoleta/Recoleta Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Recoleta';
  src: url('assets/brand/Fonts/Recoleta/Recoleta/Recoleta SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('assets/brand/Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cordoba Sans';
  src: url('assets/brand/Fonts/Cordoba Sans Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ==========================================================================
   2. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Brand colours */
  --clr-tangerine: #E35D2F;
  --clr-tangerine-dark: #C74E26;
  --clr-mustard: #E0B24A;
  --clr-coral: #E38A7A;
  --clr-periwinkle: #B9B2E0;
  --clr-olive: #6C6A3D;
  --clr-cream: #F7F1E6;
  --clr-espresso: #3F2A1E;

  /* Functional aliases */
  --clr-bg: var(--clr-cream);
  --clr-text: var(--clr-espresso);
  --clr-text-muted: #6B5A50;
  --clr-border: rgba(63, 42, 30, 0.12);

  /* Fonts */
  --ff-headline: 'Recoleta', Georgia, serif;
  --ff-body: 'Montserrat', 'Segoe UI', sans-serif;
  --ff-cta: 'Cordoba Sans', 'Montserrat', sans-serif;

  /* Spacing */
  --section-pad-y: 5rem;
  --section-pad-x: 1.5rem;
  --container-max: 1200px;

  /* Transitions */
  --transition-base: 0.3s ease;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(63, 42, 30, 0.08);
  --shadow-medium: 0 4px 20px rgba(63, 42, 30, 0.12);
}


/* ==========================================================================
   3. RESET / GLOBAL
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
  overflow: hidden;
}

img, iframe, embed, object {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 400;
}


/* ==========================================================================
   4. UTILITIES
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
  width: 100%;
}


/* ==========================================================================
   5. TYPE HIERARCHY
   ========================================================================== */

/* Headlines: Recoleta Regular, never all-caps */
.headline,
.hero__headline {
  font-family: var(--ff-headline);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.1;
}

/* Headers/Subheaders: Recoleta SemiBold */
.section__title,
.step__title,
.event-type-card__title,
.about__story h2,
.faq__question {
  font-family: var(--ff-headline);
  font-weight: 600;
}

/* Body: Montserrat always */
.body-text,
.section__subtitle,
.step__text,
.testimonial__author,
.faq__answer,
.booking__microcopy {
  font-family: var(--ff-body);
  font-weight: 400;
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--ff-cta);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem 2.5rem;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--clr-tangerine);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--clr-tangerine);
  border-color: var(--clr-tangerine);
  color: var(--clr-cream);
}

.btn--primary:hover {
  background-color: var(--clr-tangerine-dark);
  border-color: var(--clr-tangerine-dark);
}

.btn--secondary {
  background-color: transparent;
  border-color: var(--clr-mustard);
  color: var(--clr-mustard);
}

.btn--secondary:hover {
  background-color: var(--clr-mustard);
  color: var(--clr-cream);
}


/* ==========================================================================
   7. SITE HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--clr-cream);
  border-bottom: none;
  padding: 1.25rem 0;
  transition: box-shadow var(--transition-base),
              padding 0.4s ease;
}

.site-header--scrolled {
  box-shadow: var(--shadow-soft);
  padding: 0.6rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: justify-content 0.4s ease;
}

.site-header--scrolled .container {
  justify-content: space-between;
}

.site-header__logo {
  display: block;
  height: 90px;
  width: auto;
  transition: height 0.4s ease;
}

.site-header--scrolled .site-header__logo {
  height: 44px;
}

.site-header__logo img {
  height: 100%;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.site-header--scrolled .site-header__nav {
  opacity: 1;
  pointer-events: auto;
}

.site-header__nav a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-espresso);
  transition: color var(--transition-base);
}

.site-header__nav a:hover {
  color: var(--clr-tangerine);
}



/* ==========================================================================
   8. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 600px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--clr-espresso);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(63, 42, 30, 0.40) 0%,
      rgba(63, 42, 30, 0.65) 100%
    ),
    url('assets/gallery/photos/bridal-aarani-may2025-05.jpg')
    center / cover no-repeat;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem var(--section-pad-x);
}

.hero__headline {
  color: var(--clr-cream);
  text-shadow: 0 2px 8px rgba(63, 42, 30, 0.4);
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
}

.hero__subtext {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--clr-cream);
  opacity: 0.9;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-inline: auto;
  line-height: 1.6;
}

.hero__cta {
  /* Inherits from .btn--primary */
}


/* ==========================================================================
   9. SECTIONS (general)
   ========================================================================== */

.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.section--cream {
  background-color: var(--clr-cream);
}

.section--white {
  background-color: #FFFDF8;
}

.section__title {
  text-align: center;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 1.75rem);
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.section__subtitle {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  max-width: 550px;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.7;
}


/* ==========================================================================
   10. SECTION DIVIDER (wavy accent)
   ========================================================================== */

.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

.section-divider path {
  fill: var(--clr-periwinkle);
  opacity: 0.25;
}


/* ==========================================================================
   11. HOW IT WORKS
   ========================================================================== */

.how-it-works {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22200%22%20height=%22200%22%3E%3Cellipse%20cx=%2230%22%20cy=%2245%22%20rx=%2220%22%20ry=%227%22%20fill=%22%23B9B2E0%22%20opacity=%220.18%22%20transform=%22rotate%2830%2030%2045%29%22/%3E%3Cellipse%20cx=%22170%22%20cy=%2218%22%20rx=%2215%22%20ry=%225%22%20fill=%22%23B9B2E0%22%20opacity=%220.16%22%20transform=%22rotate%28-45%20170%2018%29%22/%3E%3Cellipse%20cx=%2265%22%20cy=%22170%22%20rx=%2222%22%20ry=%228%22%20fill=%22%23B9B2E0%22%20opacity=%220.2%22%20transform=%22rotate%2855%2065%20170%29%22/%3E%3Cellipse%20cx=%22168%22%20cy=%22148%22%20rx=%2217%22%20ry=%226%22%20fill=%22%23B9B2E0%22%20opacity=%220.18%22%20transform=%22rotate%28-22%20168%20148%29%22/%3E%3Cellipse%20cx=%22108%22%20cy=%2295%22%20rx=%2213%22%20ry=%225%22%20fill=%22%23B9B2E0%22%20opacity=%220.13%22%20transform=%22rotate%2878%20108%2095%29%22/%3E%3Ccircle%20cx=%2230%22%20cy=%2245%22%20r=%223%22%20fill=%22%23B9B2E0%22%20opacity=%220.28%22/%3E%3Ccircle%20cx=%2265%22%20cy=%22170%22%20r=%224%22%20fill=%22%23B9B2E0%22%20opacity=%220.26%22/%3E%3Ccircle%20cx=%22168%22%20cy=%22148%22%20r=%222.5%22%20fill=%22%23B9B2E0%22%20opacity=%220.22%22/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.how-it-works .steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin-inline: auto;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step__icon {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  background-color: var(--step-color);
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.step__icon--img {
  background: none;
  -webkit-mask-image: none;
  mask-image: none;
  object-fit: contain;
}

.step__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}

.step__text {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  max-width: 300px;
  margin-inline: auto;
  line-height: 1.65;
}

.how-it-works__accent {
  display: block;
  width: 40px;
  height: auto;
  margin: 2rem auto 0;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .how-it-works .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ==========================================================================
   12. GALLERY
   ========================================================================== */

.gallery {
  background-color: var(--clr-cream);
  position: relative;
}

/* Filter overlay (shown during category transitions) */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 241, 230, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.gallery__overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.gallery__overlay-spinner {
  width: 64px;
  height: 64px;
  animation: gallery-pulse 1.2s ease-in-out infinite;
}

@keyframes gallery-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.88); }
}

/* Filter bar */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.gallery__filter-btn {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  border: 1.5px solid var(--clr-olive);
  color: var(--clr-olive);
  background-color: var(--clr-cream);
  cursor: pointer;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
}

.gallery__filter-btn:hover {
  border-color: var(--clr-tangerine);
  color: var(--clr-tangerine);
}

.gallery__filter-btn.active,
.gallery__filter-btn--active {
  background-color: var(--clr-tangerine);
  border-color: var(--clr-tangerine);
  color: var(--clr-cream);
}

/* Masonry grid — flexbox columns */
.gallery__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  background-color: rgba(185, 178, 224, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  max-height: 70vh;
  overflow-y: scroll;
}

.gallery__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery__item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.gallery__item img {
  width: 100%;
  display: block;
}

.gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(to top, rgba(63, 42, 30, 0.75) 0%, transparent 100%);
  color: var(--clr-cream);
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-base),
              transform var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item--hidden {
  display: none;
}

.gallery .section__title {
  color: var(--clr-espresso);
}

.gallery__cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery__cta p {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--clr-espresso);
  margin-bottom: 1rem;
}

/* Periwinkle scrollbar — all sizes */
.gallery__grid { scrollbar-width: auto; scrollbar-color: var(--clr-periwinkle) rgba(185, 178, 224, 0.25); }
.gallery__grid::-webkit-scrollbar { width: 14px; }
.gallery__grid::-webkit-scrollbar-track { background: rgba(185, 178, 224, 0.25); border-radius: 8px; }
.gallery__grid::-webkit-scrollbar-thumb { background: var(--clr-periwinkle); border-radius: 8px; border: 2px solid var(--clr-cream); }
.gallery__grid::-webkit-scrollbar-thumb:hover { background: #9d94d4; }

@media (min-width: 768px) {
  .gallery__grid {
    max-height: 75vh;
  }
}


/* ==========================================================================
   13. GALLERY MODAL (lightbox)
   ========================================================================== */

.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.gallery-modal--active,
.gallery-modal--open {
  display: flex;
}

.gallery-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: var(--clr-cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 10;
  transition: opacity var(--transition-base);
}

.gallery-modal__close:hover {
  opacity: 0.7;
}

.gallery-modal__prev,
.gallery-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--clr-cream);
  font-size: 3.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 1rem 1.25rem;
  z-index: 10;
  opacity: 0.6;
  transition: opacity var(--transition-base);
  user-select: none;
}

.gallery-modal__prev:hover,
.gallery-modal__next:hover {
  opacity: 1;
}

.gallery-modal__prev { left: 0; }
.gallery-modal__next { right: 0; }

.gallery-modal__image {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
}

.gallery-modal__details {
  color: var(--clr-cream);
  text-align: center;
  margin-top: 1.5rem;
  max-width: 600px;
}

.gallery-modal__caption {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.gallery-modal__meta {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  opacity: 0.65;
  line-height: 1.5;
}

.gallery-modal__testimonial {
  font-family: var(--ff-headline);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  margin-top: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}


/* ==========================================================================
   14. SOCIAL PROOF / TESTIMONIALS
   ========================================================================== */

.social-proof {
  background-color: var(--clr-cream);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22200%22%20height=%22200%22%3E%3Cellipse%20cx=%2230%22%20cy=%2245%22%20rx=%2220%22%20ry=%227%22%20fill=%22%23B9B2E0%22%20opacity=%220.18%22%20transform=%22rotate%2830%2030%2045%29%22/%3E%3Cellipse%20cx=%22170%22%20cy=%2218%22%20rx=%2215%22%20ry=%225%22%20fill=%22%23B9B2E0%22%20opacity=%220.16%22%20transform=%22rotate%28-45%20170%2018%29%22/%3E%3Cellipse%20cx=%2265%22%20cy=%22170%22%20rx=%2222%22%20ry=%228%22%20fill=%22%23B9B2E0%22%20opacity=%220.2%22%20transform=%22rotate%2855%2065%20170%29%22/%3E%3Cellipse%20cx=%22168%22%20cy=%22148%22%20rx=%2217%22%20ry=%226%22%20fill=%22%23B9B2E0%22%20opacity=%220.18%22%20transform=%22rotate%28-22%20168%20148%29%22/%3E%3Cellipse%20cx=%22108%22%20cy=%2295%22%20rx=%2213%22%20ry=%225%22%20fill=%22%23B9B2E0%22%20opacity=%220.13%22%20transform=%22rotate%2878%20108%2095%29%22/%3E%3Ccircle%20cx=%2230%22%20cy=%2245%22%20r=%223%22%20fill=%22%23B9B2E0%22%20opacity=%220.28%22/%3E%3Ccircle%20cx=%2265%22%20cy=%22170%22%20r=%224%22%20fill=%22%23B9B2E0%22%20opacity=%220.26%22/%3E%3Ccircle%20cx=%22168%22%20cy=%22148%22%20r=%222.5%22%20fill=%22%23B9B2E0%22%20opacity=%220.22%22/%3E%3C/svg%3E");
  background-size: 200px 200px;
  color: var(--clr-espresso);
  border-top: 3px solid var(--clr-tangerine);
  border-bottom: 3px solid var(--clr-tangerine);
}

.social-proof .section__title {
  color: var(--clr-espresso);
}

.social-proof .section__subtitle {
  color: var(--clr-text-muted);
}

.testimonial {
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
  padding: 1.5rem 0;
}

.testimonial__quote {
  font-family: var(--ff-headline);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
  line-height: 1.55;
  color: var(--clr-espresso);
  margin-bottom: 1.25rem;
}

.testimonial__quote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--clr-mustard);
  margin-bottom: 0.25rem;
}

.testimonial__author {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}


/* ==========================================================================
   15. EVENT TYPES
   ========================================================================== */

.event-types__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin-inline: auto;
}

.event-type-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-coral);
  border-radius: 8px;
  background-color: #FFFDF8;
  transition: box-shadow var(--transition-base),
              transform var(--transition-base),
              background-color var(--transition-base);
}

.event-type-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  background-color: rgba(227, 138, 122, 0.08);
}

.event-type-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.event-type-card__title {
  font-size: 1.0625rem;
  color: var(--clr-text);
  margin-bottom: 0.375rem;
}

.event-types__tagline {
  text-align: center;
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--clr-text);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.event-types .btn--secondary {
  display: block;
  margin-inline: auto;
  width: fit-content;
}

.event-type-card__text {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

@media (max-width: 599px) {
  .event-types__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .event-type-card {
    padding: 0.875rem 0.5rem;
  }
  .event-type-card__icon {
    font-size: 2rem;
  }
  .event-type-card__title {
    font-size: 0.9rem;
  }
}

@media (min-width: 600px) {
  .event-types__grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}


/* ==========================================================================
   16. BOOKING
   ========================================================================== */

.booking {
  text-align: center;
  background-color: rgba(227, 138, 122, 0.1);
}

.booking__text {
  max-width: 550px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.booking__embed {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.booking__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
}

.booking__placeholder a {
  color: var(--clr-tangerine);
  text-decoration: underline;
}

.booking__microcopy {
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
  margin-top: 1.25rem;
  line-height: 1.6;
}

.quick-question {
  background-color: rgba(185, 178, 224, 0.2);
  text-align: center;
}

.quick-question__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-periwinkle);
  margin-bottom: 0.75rem;
}

.quick-question__title {
  font-family: var(--ff-headline);
  font-size: 1.75rem;
  color: var(--clr-espresso);
  margin-bottom: 0.75rem;
}

.quick-question__text {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.75rem;
}


/* ==========================================================================
   17. SITE FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--clr-cream);
  color: var(--clr-espresso);
  border-top: 2px solid rgba(63, 42, 30, 0.12);
  padding: 4rem 0 2.5rem;
  text-align: center;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__logo {
  width: 150px;
  height: auto;
}

.site-footer__nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer__nav a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--clr-espresso);
  transition: color var(--transition-base);
}

.site-footer__nav a:hover {
  color: var(--clr-tangerine);
}

.site-footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .site-footer__contact {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.site-footer__contact a {
  color: var(--clr-espresso);
  transition: color var(--transition-base);
}

.site-footer__contact a:hover {
  color: var(--clr-tangerine);
}

.site-footer__link a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--clr-espresso);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.site-footer__link a:hover {
  color: var(--clr-tangerine);
}

.site-footer__tagline {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  color: rgba(63, 42, 30, 0.5);
  margin-top: 0.5rem;
}

.site-footer__service-area {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: rgba(63, 42, 30, 0.65);
}

.site-footer__brandmark {
  width: 36px;
  height: 36px;
  opacity: 0.85;
}

.site-footer__copyright {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: rgba(63, 42, 30, 0.4);
  margin-top: 0.5rem;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--clr-espresso);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.site-footer__link:hover {
  color: var(--clr-coral);
}


/* ==========================================================================
   18. ABOUT PAGE
   ========================================================================== */

.about__header {
  padding: 4rem var(--section-pad-x) 2rem;
  text-align: center;
}

.about__header h1 {
  font-family: var(--ff-headline);
  font-weight: 400;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  color: var(--clr-text);
}

.about__story {
  max-width: 750px;
  margin-inline: auto;
  padding: 0 var(--section-pad-x) var(--section-pad-y);
}

.about__story p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 0.9375rem;
}

.about__story h2 {
  font-size: 1.375rem;
  color: var(--clr-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about__photo-polaroid {
  background: #fff;
  padding: 0.875rem 0.875rem 2.5rem;
  box-shadow: 0 6px 28px rgba(63, 42, 30, 0.14), 0 1px 4px rgba(63, 42, 30, 0.07);
  transform: rotate(2deg);
  max-width: 300px;
  margin: 0 auto 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__photo-polaroid:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 10px 36px rgba(63, 42, 30, 0.18);
}

.about__photo-polaroid img {
  width: 100%;
  display: block;
}

.about__photo-polaroid figcaption {
  font-family: var(--ff-headline);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--clr-espresso);
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .about__photo-polaroid {
    float: right;
    margin: 0.25rem 0 1.5rem 2.5rem;
    max-width: 260px;
  }
}

.about__pullquote {
  font-family: var(--ff-headline);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--clr-tangerine);
  text-align: center;
  line-height: 1.5;
  margin: 3rem 0;
  padding: 2rem;
  border-top: 2px solid var(--clr-border);
  border-bottom: 2px solid var(--clr-border);
}

.about__cta {
  text-align: center;
  padding: 2rem 0 var(--section-pad-y);
}

.about__cta p {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.faq__header {
  text-align: center;
  padding: 4rem var(--section-pad-x) 2rem;
}

.faq__header .headline {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 0.75rem;
}

.faq__header .section__subtitle {
  margin-bottom: 0;
}

.faq__cta {
  text-align: center;
  padding: 3rem 0 var(--section-pad-y);
  max-width: 750px;
  margin-inline: auto;
}

.faq__cta p {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--clr-text);
  margin-bottom: 1rem;
}


/* ==========================================================================
   19. FAQ PAGE
   ========================================================================== */

.faq__list {
  max-width: 750px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--clr-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  color: var(--clr-text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  transition: color var(--transition-base);
}

.faq__question:hover {
  color: var(--clr-tangerine);
}

.faq__question::after {
  content: '+';
  font-family: var(--ff-body);
  font-size: 1.375rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq__item--active .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-bottom: 0;
}

.faq__item--active .faq__answer {
  max-height: 600px;
  padding-bottom: 1.5rem;
}


/* ==========================================================================
   20. ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Fade in on scroll - applied by JS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
}

.fade-in--visible {
  animation: fadeInUp 0.6s ease forwards;
}

/* Stagger children if needed */
.fade-in--visible:nth-child(2) { animation-delay: 0.1s; }
.fade-in--visible:nth-child(3) { animation-delay: 0.2s; }
.fade-in--visible:nth-child(4) { animation-delay: 0.3s; }


/* ==========================================================================
   21. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Tablet (768px) --- */
@media (min-width: 768px) {
  :root {
    --section-pad-y: 6rem;
    --section-pad-x: 2rem;
  }

  .site-header__logo {
    height: 110px;
  }

  .site-header--scrolled .site-header__logo {
    height: 48px;
  }

  .hero__content {
    padding: 2rem;
  }
}

/* Mobile header — even split, nav always visible */
@media (max-width: 767px) {
  .site-header .container {
    justify-content: space-between;
  }
  .site-header .container > a {
    flex: 1;
  }
  .site-header__logo {
    height: 44px;
  }
  .site-header__nav {
    flex: 1;
    justify-content: flex-end;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    gap: 0.75rem;
  }
}

/* iOS / mobile: fixed attachment not supported — fall back to scroll */
@supports (-webkit-touch-callout: none) {
  .gallery {
    background-attachment: scroll;
  }
}

/* --- Desktop (1024px) --- */
@media (min-width: 1024px) {
  :root {
    --section-pad-y: 7rem;
    --section-pad-x: 2.5rem;
  }
}

/* --- Large (1200px) --- */
@media (min-width: 1200px) {
  .container {
    padding-inline: 0;
  }
}


/* ==========================================================================
   22. PRINT (basic)
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .gallery-modal,
  .section-divider {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    height: auto;
    min-height: 0;
    background: none;
    color: #000;
    padding: 2rem 0;
  }

  .hero__headline,
  .hero__subtext {
    color: #000;
    text-shadow: none;
  }
}
