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

:root {
  --black:    #111111;
  --offwhite: #F7F5F0;
  --warm:     #E8E2D9;
  --accent:   #B85C2A;
  --accent-dark: #9A4A20;
  --muted:    #7A7268;
  --text:     #2A2520;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
  background: rgba(247,245,240,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--black); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-logo-img {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo-img img {
  height: 52px; width: auto;
  display: block;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 10px 24px; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--offwhite); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem; font-family: 'Playfair Display', serif;
  color: var(--black); text-decoration: none; font-weight: 700;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; cursor: pointer; color: var(--muted);
}

/* ── SHARED SECTIONS ── */
.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--black); color: var(--offwhite);
  display: flex; justify-content: center; gap: 80px;
  padding: 32px 48px; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--accent); display: block; line-height: 1;
}
.trust-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-top: 4px; display: block;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 16px 36px; border-radius: 2px;
  font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  display: inline-block; color: var(--text);
  font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none;
  border-bottom: 1px solid var(--text); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn-white {
  display: inline-block; background: #fff; color: var(--accent);
  padding: 18px 44px; border-radius: 2px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--accent);
  padding: 96px 80px; text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700;
  color: #fff; margin-bottom: 16px; line-height: 1.2;
}
.cta-section p {
  color: rgba(255,255,255,0.8); font-size: 1.05rem;
  margin-bottom: 40px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.cta-note {
  margin-top: 20px; font-size: 0.82rem;
  color: rgba(255,255,255,0.6); font-style: italic;
}

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.4);
  padding: 48px 80px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4);
  text-decoration: none; font-size: 0.88rem;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.7); font-size: 1rem;
}
.footer-logo span { color: var(--accent); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 80px 80px;
  background: var(--black);
  text-align: center;
}
.page-hero .section-label { justify-content: center; display: flex; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.6); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto;
}

/* ── VIDEO ── */
.video-section {
  background: var(--offwhite);
  padding: 96px 80px;
}
.video-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.video-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--black); margin-bottom: 12px; line-height: 1.25;
}
.video-inner p {
  color: var(--muted); font-size: 1rem;
  margin-bottom: 40px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.video-wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden; border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

@media (max-width: 900px) {
  .video-section { padding: 72px 32px; }
  .video-inner h2 { font-size: 1.6rem; }
}

/* ── GALLERY ── */
.gallery { background: var(--black); padding: 4px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  background: #222;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery-item--wide { grid-column: span 2; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 99;
  width: 44px; height: 44px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 2px; cursor: pointer;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--accent-dark); }

/* ── INSTAGRAM SECTION ── */
.instagram-section {
  background: var(--black);
  padding: 80px;
  text-align: center;
}
.instagram-section .section-label { margin-bottom: 12px; }
.instagram-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.instagram-section p {
  color: rgba(255,255,255,0.5);
  font-size: 0.97rem; margin-bottom: 32px;
}
.instagram-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; padding: 14px 32px; border-radius: 2px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: opacity 0.2s;
}
.instagram-btn:hover { opacity: 0.85; }
.instagram-btn svg { width: 20px; height: 20px; fill: #fff; }

/* ── MOBILE MENU POLISH ── */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

/* ── MAPS ── */
.map-embed {
  width: 100%; height: 320px; border: none; display: block;
  filter: grayscale(20%);
}

@media (max-width: 900px) {
  .instagram-section { padding: 64px 32px; }
  .back-to-top { bottom: 20px; right: 20px; }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .trust-bar { gap: 32px; padding: 32px 24px; }
  .cta-section { padding: 72px 32px; }
  .cta-section h2 { font-size: 2rem; }
  footer { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 120px 32px 64px; }
}
