:root {
  --ivory: #FDFBF6;
  --ivory-deep: #F5EFE4;
  --beige: #E8DFD0;
  --beige-dark: #C9BBA3;
  --gold: #B8935A;
  --gold-deep: #8F6E3A;
  --gold-light: #D4B77A;
  --ink: #2C2418;
  --ink-soft: #5C4F3A;
  --line: rgba(184, 147, 90, 0.3);
  --serif: 'Playfair Display', 'Bodoni Moda', 'Cormorant Garamond', serif;
  --serif-body: 'Cormorant Garamond', serif;
  --script: 'Great Vibes', cursive;
  --sans: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, padding 0.5s ease, color 0.5s ease, border-color 0.5s ease;
  background: transparent;
  color: var(--ivory);
}

.header.scrolled {
  background: rgba(253, 251, 246, 0.98);
  padding: 0.9rem 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ivory);
  transition: color 0.5s;
}

.header.scrolled .logo { color: var(--ink); }

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  background: transparent;
  border-radius: 2px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  transition: all 0.4s;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 2.5rem;
  list-style: none;
}

.nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.3rem 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: text-shadow 0.5s ease;
}

.header.scrolled .nav a { text-shadow: none; }

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}

.nav a:hover::after { width: 100%; }

@media (min-width: 900px) {
  .nav { display: flex; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 120;
}

.nav-toggle-icon { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-open { display: none; }
.nav-toggle.open .icon-close { display: block; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.5);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-backdrop.open {
  display: block;
  opacity: 1;
}

@media (max-width: 899px) {
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 2.5rem;
    box-shadow: -10px 0 40px rgba(44, 36, 24, 0.18);
    transition: right 0.4s ease;
    z-index: 110;
  }

  .nav.open { right: 0; }

  .nav a {
    color: var(--ink);
    text-shadow: none;
    font-size: 0.95rem;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 36, 24, 0.2) 0%,
    rgba(44, 36, 24, 0.15) 40%,
    rgba(44, 36, 24, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 3rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--script);
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-family: var(--serif-body);
  font-weight: 300;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-cta:hover {
  background: var(--ivory);
  color: var(--ink);
  letter-spacing: 0.3em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  display: none;
}

@media (min-width: 768px) {
  .hero-scroll { display: block; }
  .hero { padding: 3rem 3rem; }
  .hero-content { padding-bottom: 4rem; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.7; }
}

/* Sections */
section {
  padding: 6rem 2rem;
  position: relative;
}

@media (min-width: 768px) {
  section { padding: 8rem 3rem; }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 2rem;
  font-weight: 400;
}

.section-label::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.section-number {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  margin-right: 0.5rem;
}

/* About */
.about {
  background: var(--ivory);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
  }
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.about-heading em {
  font-style: italic;
  font-family: var(--serif-body);
  color: var(--gold-deep);
  font-weight: 300;
}

.about-text {
  font-family: var(--serif-body);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.about-text p + p { margin-top: 1.2rem; }

.about-signature {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}

/* Decorative vertical line */
.about::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  display: none;
}

@media (min-width: 900px) {
  .about::before { display: block; }
}

/* Services */
.services {
  background: var(--ivory-deep);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-label::before { display: none; }

.services-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 1.1;
}

.services-title em {
  font-style: italic;
  font-family: var(--serif-body);
  color: var(--gold-deep);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: var(--ivory);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(44, 36, 24, 0.08);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.service-desc {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.service-price {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-weight: 400;
}

/* Gallery */
.gallery {
  background: var(--ivory);
}

.gallery-header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.gallery-title em {
  font-style: italic;
  font-family: var(--serif-body);
  color: var(--gold-deep);
  font-weight: 300;
}

.gallery-note {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 300px;
}

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

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

@media (min-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.75rem;
  box-shadow: 0 8px 24px rgba(44, 36, 24, 0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover {
  box-shadow: 0 16px 40px rgba(44, 36, 24, 0.14);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: saturate(0.95);
}

@media (min-width: 768px) {
  .gallery-item img { height: 300px; }
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 24, 0.3), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(253, 251, 246, 0.3);
  color: var(--ivory);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Contact */
.contact {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact .section-label { color: var(--gold-light); }
.contact .section-label::before { background: var(--gold-light); }

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

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.contact-title em {
  font-style: italic;
  font-family: var(--serif-body);
  color: var(--gold-light);
  font-weight: 300;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.contact-item-value {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ivory);
  font-weight: 300;
}

.contact-item-value a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s;
}

.contact-item-value a:hover { border-color: var(--gold-light); }

.hours-table {
  margin-top: 0.3rem;
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
}

.contact-map {
  height: 100%;
  min-height: 400px;
  position: relative;
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.3) contrast(1.05);
}

@media (min-width: 900px) {
  .contact-map { min-height: 560px; }
}

.visit-counter {
  margin-top: 0.9rem;
  text-align: center;
  font-family: var(--serif-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  opacity: 0.75;
}

/* Footer */
.footer {
  background: #1A150E;
  color: var(--beige);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(184, 147, 90, 0.15);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ivory);
}

.footer-brand .logo-mark {
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
}

.footer-brand-text {
  font-family: var(--serif);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 147, 90, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--beige-dark);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s;
}

.footer-bottom a:hover { border-color: var(--gold-light); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Applies to every child regardless of count — galleries can run well past 4 items.
   The nth-child rules below just add a staggered delay on top, for the first few. */
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.55s; }

/* Selection */
::selection {
  background: var(--gold);
  color: var(--ivory);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory-deep); }
::-webkit-scrollbar-thumb { background: var(--beige-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Page banner (subpages) */
.page-banner {
  position: relative;
  height: 46vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2rem;
}

.page-banner-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,36,24,0.25) 0%, rgba(44,36,24,0.6) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.page-banner-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-banner-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.page-banner-title {
  font-family: var(--script);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.page-banner-title em {
  font-style: italic;
  font-family: var(--serif-body);
  color: var(--gold-light);
  font-weight: 300;
}

/* Collection cards (homepage) */
.collection-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 3rem 2.5rem;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(44, 36, 24, 0.08);
}

.collection-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.collection-desc {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.collection-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
  align-self: flex-start;
  transition: border-color 0.3s;
}

.collection-link:hover { border-color: var(--gold-deep); }

/* Simple prose page (kontakt/rezervace text sections) */
.prose-section {
  max-width: 720px;
}

.prose-section p {
  font-family: var(--serif-body);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

.prose-section p + p { margin-top: 1.2rem; }

/* Collection grid — 3 across on wider screens */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Instagram popup */
.instagram-popup {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.6);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.instagram-popup.active { display: flex; animation: fadeIn 0.3s ease; }

.instagram-popup-box {
  background: var(--ivory);
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  animation: fadeUp 0.4s ease;
}

.instagram-popup-box h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--ink);
}

.instagram-popup-box p {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.instagram-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.instagram-popup-close:hover { color: var(--ink); }

/* Sale poster popup */
.sale-popup-box {
  background: var(--ivory);
  padding: 0;
  max-width: 480px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  animation: fadeUp 0.4s ease;
}

.sale-popup-box img {
  display: block;
  width: 100%;
  height: auto;
}

.sale-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(20, 16, 10, 0.55);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 1;
}

.sale-popup-close:hover { background: rgba(20, 16, 10, 0.8); }

.sale-poster-block {
  margin-top: 2.5rem;
  max-width: 480px;
}

.sale-poster-block img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

/* Facebook floating button */
body.nav-open .facebook-float,
body.nav-open .instagram-float {
  display: none;
}

.facebook-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 50px;
  height: 50px;
  background: #1877F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.facebook-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Instagram floating button — sits beside the Facebook one */
.instagram-float {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem;
  z-index: 90;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.instagram-float svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

/* Reviews section */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--ivory);
  padding: 2rem 2rem 2rem 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.6;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 36, 24, 0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.review-text {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
}

