*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0a0a;
    --white: #f5f2ee;
    --grey: #b0a898;
    --accent: #8697e0;
    --gap: clamp(4px, 0.5vw, 8px);
  }

  body { background: var(--white); color: var(--black); font-family: 'Futura-Light', serif; }

  /* TABS */
  .gallery-nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #d5cfc7;
    padding: 3rem 1rem 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gallery-nav::-webkit-scrollbar { display: none; }

  .gallery-tab {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    letter-spacing: 0.18em;
    color: var(--grey);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s, border-color 0.3s;
    margin-bottom: -1px;
  }
  .gallery-tab:hover { color: var(--black); }
  .gallery-tab.active { color: var(--black); border-bottom-color: var(--accent); }

  /* PANELS */
  .gallery-panel { display: none; animation: fadeUp 0.45s ease forwards; }
  .gallery-panel.active { display: block; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* HERO */
  .panel-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 40vh;
  }
  @media (min-width: 768px)  { .panel-hero { grid-template-columns: 1fr 1fr; min-height: 50vh; } }
  @media (min-width: 1200px) { .panel-hero { grid-template-columns: 2fr 1fr; min-height: 55vh; } }

  .panel-hero-image {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    min-height: 300px;
  }
  .panel-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.8s ease;
  }
  .panel-hero-image:hover img { transform: scale(1.03); }

  .panel-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 5rem);
    background: var(--white);
  }
  .panel-hero-text .label {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.55rem, 1vw, 0.7rem);
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 1.2rem;
  }
  .panel-hero-text h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .panel-hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.75;
    color: #5a5247;
    max-width: 34ch;
    margin-bottom: 2rem;
  }

  .btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    background: none;
    border: 1px solid var(--black);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    width: fit-content;
  }
  .btn-gallery:hover { background: var(--black); color: var(--white); }
  .btn-gallery svg { width: 10px; height: 10px; transition: transform 0.3s; }
  .btn-gallery.open svg { transform: rotate(180deg); }

  /* PREVIEW GRID */
  .preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    padding: var(--gap);
    background: var(--black);
  }
  @media (min-width: 600px)  { .preview-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1024px) { .preview-grid { grid-template-columns: repeat(6, 1fr); } }

  .preview-grid-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: #1a1a1a;
    aspect-ratio: 3/4;
  }
  .preview-grid-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.92);
  }
  .preview-grid-item:hover img { transform: scale(1.06); filter: brightness(1); }

  /* EXPAND STRIP */
  .expand-strip {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    background: #111;
  }
  .expand-strip.open { max-height: 420px; }

  .strip-track {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    padding: var(--gap);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #1a1a1a;
  }
  .strip-track::-webkit-scrollbar { height: 4px; }
  .strip-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
  .strip-track img {
    flex: 0 0 auto;
    height: 360px;
    width: auto;
    max-width: 260px;
    object-fit: cover;
    scroll-snap-align: start;
    cursor: zoom-in;
    transition: filter 0.3s ease;
    filter: brightness(0.85) saturate(0.9);
  }
  .strip-track img:hover { filter: brightness(1) saturate(1); }

  /* VIDEOS */
  .video-section {
    padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 4rem);
    border-top: 1px solid #d5cfc7;
  }
  .video-section-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .video-section-header h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    letter-spacing: 0.25em;
    color: var(--grey);
  }
  .video-section-header::after {
    content: ''; flex: 1; height: 1px; background: #d5cfc7;
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }
  .video-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #1a1a1a;
  }
  .video-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s, filter 0.4s;
    filter: brightness(0.8);
  }
  .video-card:hover img { transform: scale(1.04); filter: brightness(0.65); }
  .play-icon {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    pointer-events: none;
  }
  .play-circle {
    width: clamp(40px, 6vw, 56px);
    height: clamp(40px, 6vw, 56px);
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.7);
    display: grid; place-items: center;
    transition: background 0.3s, border-color 0.3s;
  }
  .video-card:hover .play-circle { background: var(--accent); border-color: var(--accent); }
  .play-circle svg { width: clamp(12px,2vw,18px); height: clamp(12px,2vw,18px); fill: white; margin-left: 3px; }

  /* LIGHTBOX */
  #lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(5,5,5,0.95);
    z-index: 9999; align-items: center; justify-content: center; padding: 1rem;
  }
  #lightbox.open { display: flex; }
  #lightbox-img {
    max-width: min(90vw, 900px);
    max-height: 90vh;
    object-fit: contain;
    animation: fadeUp 0.3s ease;
  }
  #lightbox-iframe {
    display: none;
    width: min(90vw, 900px);
    aspect-ratio: 16/9;
    border: none;
  }
  #lightbox-iframe.show { display: block; animation: fadeUp 0.3s ease; }
  #lightbox-close {
    position: fixed; top: 1.5rem; right: 1.5rem;
    background: none; border: 1px solid rgba(255,255,255,0.3);
    color: white; width: 40px; height: 40px;
    font-size: 1.2rem; cursor: pointer;
    display: grid; place-items: center;
    transition: background 0.2s;
  }
  #lightbox-close:hover { background: rgba(255,255,255,0.1); }

  /* ── TESTIMONIALS ── */
#testimonials {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.testimonials-header .label {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.55rem, 1vw, 0.7rem);
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.testimonials-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

.testimonial-card {
  position: relative;
  border: 1px solid #d5cfc7;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  background: var(--white);
}

.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.6;
  font-style: italic;
  user-select: none;
}

.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  flex: 1;
  color: inherit;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  opacity: 0.6;
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.testimonial-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 2fr 1.5fr 1fr; align-items: start; }
}

.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-logo {
  font-family: 'Futura-Bold', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer-tagline {
  font-family: 'Futura-Light', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--grey);
  letter-spacing: 0.08em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--white);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  transition: color 0.25s ease;
}

.footer-link:hover { color: var(--accent); }

.footer-link-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--grey);
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.social-link i { width: 16px; height: 16px;}

.social-link:hover {
border-color: var(--accent);
color: var(--accent);
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
padding-top: clamp(1.25rem, 2vw, 1.75rem);
font-family: 'Cinzel', serif;
font-size: 0.55rem;
letter-spacing: 0.18em;
color: rgba(255,255,255,0.3);
max-width: 1400px;
margin: 0 auto;
}