/* ==========================================================
   1511 Stanza Della Barberia — Cinematic Scroll
   ========================================================== */

:root {
  --cream: #f5eed8;
  --cream-dark: #efe6cb;
  --terracotta: #8b514a;
  --terracotta-light: #a06a62;
  --copper: #a37691;
  --sage: #959483;
  --text: #2a2520;
  --text-light: #6b6560;
  --bg: #faf8f2;
  --border: rgba(139, 81, 74, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }

h1 em, h2 em {
  font-style: italic;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 { font-size: 1.5rem; font-weight: 700; }

h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

p {
  color: var(--text-light);
  max-width: 52ch;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--copper); }

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.2rem;
  border: 2px solid #a37691;
  border-radius: 50px;
  color: #fff;
  background: #a37691;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #8a6079;
  border-color: #8a6079;
  color: #fff;
}

.btn-light {
  background: transparent;
  border-color: rgba(250, 248, 242, 0.5);
  color: var(--bg);
}

.btn-light:hover {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--text);
}

.btn-sm {
  padding: 0.6rem 1.6rem;
  font-size: 0.78rem;
}

.lang-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border: 1.5px solid var(--text);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.lang-toggle:hover {
  background: var(--text);
  color: var(--bg);
}

section {
  padding: 6rem 0;
}

/* =========================
   Navigation
   ========================= */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
}

#nav.scrolled {
  background: rgba(249, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 37, 32, 0.1);
  transition: transform 0.4s ease;
}

#nav.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}

.nav-logo:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* =========================
   Hero
   ========================= */

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f6f1;
  padding: 2rem;
  gap: 0;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg3.webp') center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.hero-watermark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(10rem, 22vw, 20rem);
  line-height: 0.85;
  padding-bottom: 0.15em;
  background: linear-gradient(to top, rgba(163, 118, 145, 0.35), rgba(163, 118, 145, 0.35)) no-repeat bottom;
  background-size: 100% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(163, 118, 145, 0.4);
  animation: fillUp 3s ease-out 0.8s forwards;
  pointer-events: none;
  user-select: none;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 1.5vw, 1.1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: clamp(0.5rem, 1vw, 1rem);
  background: linear-gradient(to top, rgba(163, 118, 145, 0.35), rgba(163, 118, 145, 0.35)) no-repeat bottom;
  background-size: 100% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(163, 118, 145, 0.4);
  animation: fillUp 3s ease-out 0.8s forwards;
  pointer-events: none;
  user-select: none;
}

@keyframes fillUp {
  0% { background-size: 100% 0%; }
  100% { background-size: 100% 100%; }
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(197, 149, 116, 0.06));
  pointer-events: none;
}

#hero > *:not(.scroll-indicator) {
  position: relative;
  z-index: 1;
}

.hero-spacer {
  flex: 1;
}

.hero-logo {
  width: min(340px, 52vw);
  opacity: 0;
  animation: heroFadeIn 1.2s ease 0.2s forwards;
  filter: contrast(2.2) brightness(0.35) drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  margin-bottom: 0;
}

.hero-tagline-row {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.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;
}

.hero-tagline {
  margin-top: 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #4a4a4a;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  min-height: 1.3em;
}

.hero-tagline .typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: #4a4a4a;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.7s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--copper);
  opacity: 0;
  transform: scaleX(0);
  animation: lineGrow 0.8s ease 3s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeIn 0.6s ease 2.5s forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--sage);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes wordPunch {
  0% {
    opacity: 0;
    transform: scale(3) translateY(20px);
    filter: blur(12px);
  }
  50% {
    opacity: 1;
    transform: scale(0.9) translateY(-3px);
    filter: blur(0);
  }
  70% {
    transform: scale(1.05) translateY(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes lineGrow {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

/* =========================
   Marquee Ticker
   ========================= */

.marquee {
  background: var(--text);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(250, 248, 242, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px !important;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   Cinematic Split Section (About)
   ========================= */

.cin-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 0;
}

.cin-image-half {
  position: relative;
  overflow: hidden;
}

.cin-image-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
  transition: transform 8s ease;
}

.cin-image-half:hover img {
  transform: scale(1.05);
}

.cin-text-half {
  display: flex;
  align-items: center;
  padding: 4rem 5rem;
  background: var(--cream-dark);
}

.cin-text-inner {
  max-width: 480px;
}

.cin-text-inner h2 {
  margin-bottom: 1.5rem;
}

.cin-text-inner p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

/* =========================
   Cinematic Full-Bleed Image
   ========================= */

.cin-fullbleed {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.cin-fullbleed-img {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
}

.cin-fullbleed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.cin-fullbleed-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.cin-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 37, 32, 0.55);
  z-index: 1;
}

.cin-giant-text {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cin-giant-text em {
  color: var(--copper);
  font-weight: 700;
}

.cin-fullbleed-dark::after {
  background: rgba(42, 37, 32, 0.7);
}

.cin-booking-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================
   Services
   ========================= */

#services {
  background: var(--bg);
  padding: 8rem 0;
}


.services-list {
  max-width: 680px;
  margin: 0 auto;
}

.service-item {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

.service-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.service-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.service-duration {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage);
  flex-shrink: 0;
}

.service-row::after {
  content: '';
  flex: 1;
  border-bottom: 1px dotted var(--sage);
  opacity: 0.3;
  min-width: 20px;
  transform: translateY(-4px);
}

.service-price {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
  order: 1;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.3rem;
  max-width: none;
  font-style: italic;
}

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

/* =========================
   Reviews
   ========================= */

#reviews {
  background: var(--text);
  padding: 6rem 0;
  overflow: hidden;
}

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

.reviews-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.reviews-badge-score {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--bg);
}

.reviews-badge-stars {
  color: var(--copper);
  font-size: 1.1rem;
  letter-spacing: 4px;
}

.reviews-badge-count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.35);
  margin-top: 0.25rem;
}

.reviews-featured {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
}

.reviews-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--copper);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: -0.5rem;
}

.reviews-featured-quote {
  border: none;
  margin: 0;
  padding: 0;
}

.reviews-featured-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(250, 248, 242, 0.85);
  max-width: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reviews-featured-quote.switching p {
  opacity: 0;
  transform: translateY(8px);
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.reviews-nav-btn {
  background: none;
  border: 1.5px solid rgba(250, 248, 242, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(250, 248, 242, 0.5);
  transition: all 0.3s ease;
}

.reviews-nav-btn:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.reviews-counter {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 242, 0.3);
}

.reviews-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(250, 248, 242, 0.08);
}

.reviews-mini {
  border: none;
  margin: 0;
  padding: 2rem 2rem;
  border-right: 1px solid rgba(250, 248, 242, 0.08);
}

.reviews-mini:last-child {
  border-right: none;
}

.reviews-mini p {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(250, 248, 242, 0.4);
  max-width: none;
}

/* =========================
   Gallery — Horizontal Scroll
   ========================= */

#gallery {
  background: var(--bg);
  padding: 8rem 0 6rem;
}


.gallery-wrapper {
  position: relative;
}

.gallery-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--text);
  padding: 10px;
  transition: opacity 0.3s, background 0.3s;
}

.gallery-btn:hover {
  background: var(--cream);
}

.gallery-btn-left { left: 1rem; }
.gallery-btn-right { right: 1rem; }

.gallery-wrapper.has-overflow .gallery-btn {
  display: block;
}

.gallery-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 2rem 2rem;
  cursor: grab;
  display: flex;
  justify-content: center;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.gallery-item {
  width: clamp(280px, 30vw, 420px);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* =========================
   Team
   ========================= */

#team {
  background: var(--cream-dark);
  padding: 8rem 0;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.team-member {
  text-align: center;
  perspective: 1000px;
}

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member.visible .team-photo {
  transform: rotateY(0deg);
}

/* Back face (visible before flip) */
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  backface-visibility: hidden;
  transform: rotateY(180deg);
  z-index: 2;
}

/* Image starts zoomed & blurred, settles into place */

.team-member.visible .team-photo img {
  opacity: 1;
  filter: blur(0) grayscale(0%);
}

/* Per-person framing — initial (zoomed for entrance animation) */
img[data-face="alexandros"] { transform: scale(1.85); transform-origin: center 95%; }
img[data-face="nikos"] { transform: scale(1.45); transform-origin: center 30%; }
img[data-face="aleks"] { transform: scale(1.45); }
img[data-face="eleftheria"] { transform: scale(1.45); }
img[data-face="jessica"] { transform: scale(1.6); transform-origin: 100% 70%; }

/* Per-person framing — settled state (all zoomed 1.15x for crop room) */
.team-member.visible img[data-face="alexandros"] { transform: scale(1.45); transform-origin: center 95%; }
.team-member.visible img[data-face="nikos"] { transform: scale(1.15); transform-origin: center 30%; }
.team-member.visible img[data-face="aleks"] { transform: scale(1.15); }
.team-member.visible img[data-face="eleftheria"] { transform: scale(1.15); }
.team-member.visible img[data-face="jessica"] { transform: scale(1.3); transform-origin: 100% 70%; }

/* Name + role fade up */
.team-member h4 {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member.visible h4 {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each member */
.team-member:nth-child(1) .team-photo { transition-delay: 0s; }
.team-member:nth-child(1) h4 { transition-delay: 0.5s; }

.team-member:nth-child(2) .team-photo { transition-delay: 0.15s; }
.team-member:nth-child(2) h4 { transition-delay: 0.65s; }

.team-member:nth-child(3) .team-photo { transition-delay: 0.3s; }
.team-member:nth-child(3) h4 { transition-delay: 0.8s; }

.team-member:nth-child(4) .team-photo { transition-delay: 0.45s; }
.team-member:nth-child(4) h4 { transition-delay: 0.95s; }

.team-member:nth-child(5) .team-photo { transition-delay: 0.6s; }
.team-member:nth-child(5) h4 { transition-delay: 1.1s; }
.team-member:nth-child(5) h4 { transition-delay: 1.15s; }

.team-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.team-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--terracotta);
  opacity: 0.4;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.35);
  filter: blur(6px) grayscale(100%);
  transition: opacity 0.6s ease 0.3s,
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              filter 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}


.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 37, 32, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-member:hover .team-overlay {
  opacity: 1;
}

.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.9);
}

.team-member h4 {
  font-size: 1.05rem;
  line-height: 1.3;
}

/* =========================
   Events
   ========================= */

#events {
  padding: 6rem 0;
  background: var(--cream);
}

.events-grid {
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg);
  border: 1px solid rgba(42, 37, 32, 0.08);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 37, 32, 0.1);
  border-color: rgba(42, 37, 32, 0.15);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 1rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 4px;
  flex-shrink: 0;
}

.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.event-month {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.event-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.event-info p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(42, 37, 32, 0.65);
  margin-bottom: 1rem;
}

.event-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #a37691;
  transition: color 0.3s ease;
}

.event-card:hover .event-link {
  color: #8a6079;
}

@media (max-width: 600px) {
  .event-card {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .event-date {
    flex-direction: row;
    gap: 0.5rem;
    min-width: auto;
    padding: 0.75rem 1.25rem;
  }
}

/* =========================
   Contact
   ========================= */

#contact {
  background: var(--bg);
  padding: 8rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-item a { color: var(--text-light); }
.contact-item a:hover { color: var(--terracotta); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.social-links a {
  color: var(--text);
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--text);
  color: var(--bg);
}

.contact-map {
  overflow: hidden;
  min-height: 400px;
}

.contact-map iframe { display: block; }

/* =========================
   Footer
   ========================= */

footer {
  padding: 4rem 0 2rem;
  background: var(--text);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.footer-brand { flex-shrink: 0; }

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(250, 248, 242, 0.9);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: none;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(250, 248, 242, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 242, 0.5);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.footer-columns {
  display: flex;
  gap: 4rem;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col li {
  font-size: 0.85rem;
  color: rgba(250, 248, 242, 0.5);
  line-height: 2;
}

.footer-col a { color: rgba(250, 248, 242, 0.5); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--copper); }

.footer-divider {
  height: 1px;
  background: rgba(250, 248, 242, 0.08);
  margin: 3rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250, 248, 242, 0.25);
  max-width: none;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(250, 248, 242, 0.3);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--copper); }

.footer-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(250, 248, 242, 0.2);
}

/* =========================
   Scroll Reveal Animations
   ========================= */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }

/* =========================
   Lightbox
   ========================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42, 37, 32, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  filter: none;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(250, 248, 242, 0.7);
  transition: color 0.3s ease;
}

.lightbox-close:hover { color: rgba(250, 248, 242, 1); }
.lightbox-close svg { width: 100%; height: 100%; }

/* =========================
   Privacy Modal
   ========================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42, 37, 32, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-header h3 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sage);
  padding: 4px;
  transition: color 0.3s ease;
}

.modal-close:hover { color: var(--terracotta); }

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-body h4:first-of-type { margin-top: 1rem; }

.modal-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  max-width: none;
}

.modal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.modal-body li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .reviews-strip {
    grid-template-columns: 1fr;
  }

  .reviews-mini {
    border-right: none;
    border-bottom: 1px solid rgba(250, 248, 242, 0.08);
  }

  .reviews-mini:last-child {
    border-bottom: none;
  }

}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }

  .nav-toggle { display: flex; }

  .nav-right {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 242, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 37, 32, 0.1);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-right.open { transform: translateY(0); }

  .nav-links {
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Cinematic split stacks on mobile */
  .cin-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cin-image-half {
    aspect-ratio: 4/3;
  }

  .cin-text-half {
    padding: 3rem 2rem;
  }

  .cin-fullbleed {
    min-height: 60vh;
  }

  .cin-giant-text {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }



  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    min-width: 280px;
    max-width: 300px;
  }

  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-columns {
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .gallery-item {
    width: 260px;
  }

  h2 { font-size: 1.75rem; }
}
