/* ============================================
   Hairmania – Elegantes, warmes Design
   ============================================ */

:root {
  --beige-50: #faf6f1;
  --beige-100: #f3ece2;
  --beige-200: #e8dccb;
  --rose-100: #f5e3dc;
  --rose-200: #ecc8bd;
  --rose-300: #d9a395;
  --rose-500: #b87968;
  --gold: #c9a96a;
  --gold-dark: #a8884d;
  --ink-900: #2b2320;
  --ink-700: #4a3f3a;
  --ink-500: #7a6e68;
  --white: #ffffff;
  --shadow-soft: 0 10px 40px -15px rgba(78, 52, 40, 0.18);
  --shadow-card: 0 20px 60px -25px rgba(78, 52, 40, 0.28);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--beige-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { font-size: 1.0625rem; }

a {
  color: var(--rose-500);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-dark); }

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

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  padding: 0.75rem 0;
  border-bottom-color: var(--beige-200);
}

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

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ink-900);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 106, 0.18);
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--rose-500);
  font-weight: 400;
  text-transform: uppercase;
  margin-left: 0.5rem;
  display: none;
}

@media (min-width: 640px) {
  .brand-sub { display: inline; }
}

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

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

.nav-links a {
  color: var(--ink-700);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active { color: var(--ink-900); }

.nav-cta {
  display: none;
  padding: 0.7rem 1.5rem;
  background: var(--ink-900);
  color: var(--beige-50) !important;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

@media (min-width: 860px) {
  .nav-cta { display: inline-block; }
}

.nav-cta:hover {
  background: var(--rose-500);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

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

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink-900);
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--beige-50);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--ink-900);
}

/* ============================================
   Layout helpers
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section {
  padding: 7rem 0;
}

@media (max-width: 640px) {
  .section { padding: 5rem 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-500);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--ink-900);
  color: var(--beige-50);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn:hover {
  background: var(--rose-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--ink-900);
}
.btn-ghost:hover {
  background: var(--ink-900);
  color: var(--beige-50);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.btn:hover.btn-arrow::after { transform: translateX(4px); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--beige-50) 0%, var(--rose-100) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 2;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
  }
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--rose-500);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-700);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-meta {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-size: 0.85rem;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.hero-meta-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ink-900);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--rose-200);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-visual:hover img { transform: scale(1.12); }

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 35, 32, 0.15));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 0.9rem;
  align-items: center;
  z-index: 3;
  max-width: 18rem;
}

@media (max-width: 480px) {
  .hero-badge { left: 0; right: 0; bottom: -1rem; margin: 0 1rem; }
}

.hero-badge-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.hero-badge-text {
  font-size: 0.85rem;
  color: var(--ink-700);
  line-height: 1.4;
}
.hero-badge-text strong {
  display: block;
  color: var(--ink-900);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
}

.hero-orn {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orn-1 {
  width: 380px; height: 380px;
  top: -100px; right: -120px;
  background: radial-gradient(circle, rgba(201, 169, 106, 0.15), transparent 70%);
}
.hero-orn-2 {
  width: 280px; height: 280px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(217, 163, 149, 0.2), transparent 70%);
}

/* ============================================
   Story / About preview
   ============================================ */
.story {
  background: var(--beige-100);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

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

.story-images {
  position: relative;
  aspect-ratio: 4 / 5;
}

.story-img-main, .story-img-sub {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.story-img-main {
  inset: 0 30% 15% 0;
}
.story-img-sub {
  inset: 25% 0 0 30%;
  border: 8px solid var(--beige-100);
}

.story-img-main img, .story-img-sub img {
  width: 100%; height: 100%; object-fit: cover;
}

.story h2 {
  margin-bottom: 1.5rem;
}
.story h2 em { font-style: italic; color: var(--rose-500); }

.story p { margin-bottom: 1.2rem; }

.signature {
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--ink-900);
}
.signature-name {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-top: 0.4rem;
}

/* ============================================
   Services
   ============================================ */
.services-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}
.services-head .eyebrow { justify-content: center; }
.services-head .eyebrow::before, .services-head .eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.services-head h2 { margin-bottom: 1rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--beige-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--rose-500);
  font-size: 1.5rem;
}

.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { font-size: 0.97rem; color: var(--ink-500); }

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: linear-gradient(180deg, var(--rose-100), var(--beige-100));
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-head .eyebrow { justify-content: center; }
.testimonials-head .eyebrow::before, .testimonials-head .eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}

.testimonials-rating {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--ink-500);
}
.testimonials-rating-stars {
  color: var(--rose-500);
  letter-spacing: 0.18em;
  margin-right: 0.4rem;
}
.testimonials-rating strong {
  color: var(--ink-900);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.05rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 220, 203, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--rose-500);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-900);
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  display: inline;
  color: var(--rose-300);
  font-size: 1.3em;
  line-height: 0;
  margin-right: 0.1rem;
  vertical-align: -0.1em;
}

.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-500);
  font-weight: 500;
  margin-top: auto;
  padding-top: 0.4rem;
  border-top: 1px solid var(--beige-200);
}

.testimonial-meta {
  color: var(--ink-500);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.72rem;
}

@media (max-width: 880px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 540px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card { padding: 1.5rem 1.3rem 1.3rem; }
}

/* ============================================
   CTA section
   ============================================ */
.cta-band {
  background: var(--ink-900);
  color: var(--beige-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 106, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(217, 163, 149, 0.12), transparent 50%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }

.cta-band p {
  color: rgba(250, 246, 241, 0.75);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.cta-band .btn {
  background: var(--gold);
  color: var(--ink-900);
}
.cta-band .btn:hover {
  background: var(--white);
  color: var(--ink-900);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--beige-100);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--beige-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.95rem;
  color: var(--ink-500);
  max-width: 18rem;
}

.footer ul {
  list-style: none;
}
.footer li { margin-bottom: 0.6rem; font-size: 0.93rem; }
.footer a { color: var(--ink-700); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--beige-200);
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-500);
}

/* ============================================
   About page
   ============================================ */
.page-hero {
  padding: 11rem 0 5rem;
  background: linear-gradient(180deg, var(--beige-50), var(--rose-100));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--rose-500); }
.page-hero p {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--ink-700);
}

.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
}

.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.about-portrait-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--ink-700);
}
.about-portrait-tag strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ink-900);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text h2 em { font-style: italic; color: var(--rose-500); }
.about-text p { margin-bottom: 1.2rem; }

.values-grid {
  background: var(--beige-100);
  padding: 6rem 0;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .values-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .values-list { grid-template-columns: repeat(4, 1fr); } }

.value-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--beige-200);
}
.value-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.value-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.92rem; color: var(--ink-500); }

/* ============================================
   Booking / Termin
   ============================================ */
.booking-section {
  padding: 5rem 0 7rem;
}

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

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

.booking-info {
  background: var(--beige-100);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 7rem;
}

.booking-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.booking-info p {
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
  color: var(--ink-700);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-200);
}
.info-list li {
  display: flex;
  gap: 1rem;
  font-size: 0.93rem;
  color: var(--ink-700);
}
.info-list-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-500);
  flex-shrink: 0;
  font-size: 1.05rem;
}
.info-list strong {
  display: block;
  color: var(--ink-900);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.booking-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--beige-200);
}

@media (max-width: 640px) {
  .booking-form { padding: 2rem 1.5rem; }
  .booking-info { padding: 2rem 1.5rem; position: static; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-700);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--beige-200);
  border-radius: 10px;
  background: var(--beige-50);
  color: var(--ink-900);
  transition: all var(--transition);
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--rose-300);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 163, 149, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--ink-700);
  opacity: 0.75;
  margin-top: -0.15rem;
  letter-spacing: 0.02em;
}

.field-hint.error {
  color: #b04a3a;
  opacity: 1;
}

/* Custom date picker — booking form */
.datepicker {
  position: relative;
}

.datepicker > input[type="text"] {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237a6e68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.7rem;
}

.datepicker-popup {
  position: absolute;
  z-index: 50;
  top: calc(100% + 0.4rem);
  left: 0;
  width: 100%;
  max-width: 360px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--beige-200);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  animation: datepicker-in 0.18s ease;
}

.datepicker-popup[hidden] { display: none; }

@keyframes datepicker-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.datepicker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.datepicker-month {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink-900);
  letter-spacing: 0.01em;
}

.datepicker-nav {
  background: transparent;
  border: 1px solid var(--beige-200);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 1.15rem;
  color: var(--ink-700);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.datepicker-nav:hover:not(:disabled) {
  background: var(--rose-100);
  border-color: var(--rose-300);
  color: var(--rose-500);
}

.datepicker-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.datepicker-weekdays,
.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.datepicker-weekdays {
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--beige-100);
  padding-bottom: 0.5rem;
}

.datepicker-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 0.3rem 0;
}

.datepicker-day {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink-900);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.datepicker-day.pad {
  visibility: hidden;
  cursor: default;
}

.datepicker-day:hover:not(:disabled):not(.selected) {
  background: var(--beige-50);
  border-color: var(--beige-200);
}

.datepicker-day.disabled {
  color: var(--ink-700);
  opacity: 0.22;
  cursor: not-allowed;
  background: transparent;
}

.datepicker-day.selected {
  background: var(--rose-300);
  color: var(--white);
  border-color: var(--rose-300);
  font-weight: 500;
}

@media (max-width: 480px) {
  .datepicker-popup {
    max-width: none;
    padding: 0.85rem;
  }
  .datepicker-day {
    font-size: 0.9rem;
    padding: 0.55rem 0;
  }
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.form-note {
  font-size: 0.83rem;
  color: var(--ink-500);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}
.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.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; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   Location Map (interactive 3D card)
   ============================================ */
.location-map {
  position: relative;
  perspective: 1100px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  margin: 0 auto;
}

.location-map-card {
  position: relative;
  width: 260px;
  height: 150px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--beige-200);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  box-shadow: var(--shadow-soft);
}

.location-map.expanded .location-map-card {
  width: 380px;
  height: 300px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 480px) {
  .location-map-card { width: 240px; height: 140px; }
  .location-map.expanded .location-map-card { width: 300px; height: 250px; }
}

.location-map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 227, 220, 0.4), transparent 50%, rgba(201, 169, 106, 0.18));
  pointer-events: none;
  z-index: 2;
}

/* Grid (collapsed state) */
.location-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(var(--ink-900) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-900) 1px, transparent 1px);
  background-size: 22px 22px;
  transition: opacity 0.3s;
  z-index: 1;
}
.location-map.expanded .location-map-grid { opacity: 0; }

/* Stylized map (expanded state) */
.location-map-illustration {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, var(--rose-100), transparent 60%),
    linear-gradient(135deg, var(--beige-100), var(--beige-200));
  opacity: 0;
  transition: opacity 0.5s 0.05s;
  z-index: 1;
}
.location-map.expanded .location-map-illustration { opacity: 1; }

/* Roads */
.map-road {
  position: absolute;
  background: var(--ink-900);
  opacity: 0;
  border-radius: 2px;
  transition: opacity 0.6s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.location-map.expanded .map-road { opacity: 0.22; }

.map-road.h1 { left: 0; right: 0; top: 34%; height: 5px; transform: scaleX(0); transform-origin: left center; transition-delay: 0.15s; }
.map-road.h2 { left: 0; right: 0; top: 66%; height: 5px; transform: scaleX(0); transform-origin: left center; transition-delay: 0.25s; }
.map-road.v1 { top: 0; bottom: 0; left: 30%; width: 4px; transform: scaleY(0); transform-origin: top center; transition-delay: 0.35s; }
.map-road.v2 { top: 0; bottom: 0; left: 70%; width: 4px; transform: scaleY(0); transform-origin: top center; transition-delay: 0.45s; }

.location-map.expanded .map-road.h1,
.location-map.expanded .map-road.h2 { transform: scaleX(1); }
.location-map.expanded .map-road.v1,
.location-map.expanded .map-road.v2 { transform: scaleY(1); }

.map-road-thin {
  position: absolute;
  background: var(--ink-900);
  opacity: 0;
  transition: opacity 0.5s 0.55s;
}
.location-map.expanded .map-road-thin { opacity: 0.08; }
.map-road-thin.h { left: 0; right: 0; height: 1.5px; }
.map-road-thin.v { top: 0; bottom: 0; width: 1.5px; }

/* Buildings */
.map-building {
  position: absolute;
  background: var(--rose-300);
  border: 1px solid var(--rose-500);
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s, transform 0.4s;
}
.location-map.expanded .map-building {
  opacity: 0.55;
  transform: scale(1);
}
.map-building.gold {
  background: var(--gold);
  border-color: var(--gold-dark);
  opacity: 0;
}
.location-map.expanded .map-building.gold { opacity: 0.55; }

/* Pin */
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) scale(0);
  z-index: 5;
  transition: transform 0.55s 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 6px 14px rgba(184, 121, 104, 0.45));
}
.location-map.expanded .map-pin {
  transform: translate(-50%, -55%) scale(1);
}

.map-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose-500);
  transform: translate(-50%, -50%) scale(0);
  z-index: 4;
  opacity: 0;
}
.location-map.expanded .map-pin-pulse {
  animation: pinPulse 2.4s ease-out 0.9s infinite;
}
@keyframes pinPulse {
  0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(0.6); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(4); }
}

/* Content layer */
.location-map-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem 1.3rem;
}

.location-map-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.location-map-icon {
  color: var(--gold-dark);
  transition: filter 0.3s, opacity 0.3s;
  filter: drop-shadow(0 0 4px rgba(201, 169, 106, 0.25));
}
.location-map:hover .location-map-icon {
  filter: drop-shadow(0 0 10px rgba(201, 169, 106, 0.55));
}
.location-map.expanded .location-map-icon { opacity: 0; }

.location-map-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(43, 35, 32, 0.05);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-700);
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.location-map:hover .location-map-status { transform: scale(1.05); }
.location-map-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 106, 0.22);
}

.location-map-bottom { display: flex; flex-direction: column; gap: 0.4rem; }

.location-map-bottom h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink-900);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.location-map:hover .location-map-bottom h3 { transform: translateX(4px); }

.location-map-underline {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--rose-300) 50%, transparent);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}
.location-map:hover .location-map-underline,
.location-map.expanded .location-map-underline { transform: scaleX(1); }

/* "Open in Maps" button */
.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.55rem 1.05rem;
  background: var(--ink-900);
  color: var(--beige-50);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 0.5rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s 0.35s,
    transform 0.35s 0.35s,
    background 0.3s,
    color 0.3s;
  pointer-events: none;
}
.location-map.expanded .location-map-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.location-map-link:hover {
  background: var(--rose-500);
  color: var(--white);
}
.location-map-link::after {
  content: '↗';
  font-size: 0.85rem;
  transition: transform 0.25s;
}
.location-map-link:hover::after { transform: translate(2px, -2px); }

/* Click hint */
.location-map-hint {
  position: absolute;
  bottom: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: var(--ink-500);
  white-space: nowrap;
  opacity: 0;
  letter-spacing: 0.05em;
  transition: opacity 0.25s, transform 0.25s;
  font-style: italic;
}
.location-map:hover .location-map-hint {
  opacity: 0.75;
  transform: translateX(-50%) translateY(3px);
}
.location-map.expanded .location-map-hint { opacity: 0 !important; }

/* ============================================
   Instagram – Floating Widget + Footer Icon
   ============================================ */
.ig-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem 0.85rem 0.85rem;
  background: linear-gradient(135deg, #f5e3dc 0%, #d9a395 50%, #b87968 100%);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 14px 36px -12px rgba(184, 121, 104, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.ig-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: inherit;
  filter: blur(14px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.4s;
}

.ig-float:hover::before { opacity: 0.7; }

.ig-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ig-float:hover .ig-float-icon { transform: rotate(-8deg) scale(1.08); }

.ig-float-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              margin 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ig-float:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow:
    0 20px 44px -10px rgba(184, 121, 104, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ig-float:hover .ig-float-text {
  max-width: 200px;
  opacity: 1;
  margin-left: 0.15rem;
  margin-right: 0.35rem;
}

/* Subtle pulse */
.ig-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--rose-300);
  opacity: 0;
  animation: igPulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes igPulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 480px) {
  .ig-float { bottom: 1rem; right: 1rem; padding: 0.8rem; }
  .ig-float-text, .ig-float:hover .ig-float-text { display: none; }
}

/* Footer social row */
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--beige-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #f5e3dc 0%, #d9a395 50%, #b87968 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 12px 28px -10px rgba(184, 121, 104, 0.55);
}

/* Section wrapper */
.location-section {
  background: linear-gradient(180deg, var(--beige-100), var(--beige-50));
  text-align: center;
  padding: 6rem 0;
}
.location-section .eyebrow { justify-content: center; margin-bottom: 1rem; }
.location-section .eyebrow::before, .location-section .eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.location-section h2 { margin-bottom: 1rem; }
.location-section h2 em { font-style: italic; color: var(--rose-500); }
.location-section .lead {
  max-width: 32rem;
  margin: 0 auto 3.5rem;
  color: var(--ink-700);
}

/* ============================================
   Gallery preview (Home)
   ============================================ */
.gallery-preview-section {
  background: linear-gradient(180deg, var(--beige-50), var(--beige-100));
}

.gallery-preview-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}
.gallery-preview-head .eyebrow { justify-content: center; margin-bottom: 1rem; }
.gallery-preview-head .eyebrow::before,
.gallery-preview-head .eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.gallery-preview-head h2 { margin-bottom: 1rem; }
.gallery-preview-head h2 em { font-style: italic; color: var(--rose-500); }

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: block;
  background: var(--beige-100);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-preview-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-preview-item.large img {
  object-position: center 30%;
}

.gallery-preview-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43, 35, 32, 0.35));
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.gallery-preview-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.gallery-preview-item:hover img { transform: scale(1.06); }
.gallery-preview-item:hover::after { opacity: 1; }

.gallery-preview-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .gallery-preview {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
  }
  .gallery-preview-item:nth-child(5) { display: none; }
}

@media (max-width: 600px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 0.75rem;
  }
  .gallery-preview-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-preview-item:nth-child(5) { display: block; }
}

/* ============================================
   Gallery page
   ============================================ */
.gallery-section {
  background: var(--beige-50);
  padding-top: 4rem;
}

.gallery-intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}
.gallery-intro .eyebrow { justify-content: center; margin-bottom: 1rem; }
.gallery-intro .eyebrow::before,
.gallery-intro .eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.gallery-intro h2 em { font-style: italic; color: var(--rose-500); }
.gallery-intro p { margin-top: 1rem; color: var(--ink-500); }

.gallery-grid {
  column-count: 4;
  column-gap: 1.1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  background: var(--beige-100);
  break-inside: avoid;
  margin: 0 0 1.1rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.5s;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43, 35, 32, 0.45));
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1) rotate(0); }

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-500);
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.7) rotate(-30deg);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 24px -8px rgba(78, 52, 40, 0.4);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1100px) {
  .gallery-grid { column-count: 3; }
}

@media (max-width: 720px) {
  .gallery-grid { column-count: 2; column-gap: 0.8rem; }
  .gallery-item { margin-bottom: 0.8rem; }
}

@media (max-width: 460px) {
  .gallery-grid { column-count: 1; }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-stage {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: lightboxIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.lightbox-img.swap {
  animation: lightboxSwap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lightboxSwap {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #faf6f1;
  font-size: 1.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(201, 169, 106, 0.85);
  border-color: transparent;
  transform: scale(1.08);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  line-height: 1;
}

.lightbox-arrow:hover { transform: translateY(-50%) scale(1.08); }

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 246, 241, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 600px) {
  .lightbox-arrow { width: 44px; height: 44px; font-size: 1.6rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 44px; height: 44px; }
}

/* ============================================
   Global responsive refinements
   (Structure stays, only spacing/sizing scale)
   ============================================ */

/* Tablet portrait & smaller: tighter container, smoother headings */
@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }
  .container-narrow { padding: 0 1.5rem; }
  h1 { font-size: clamp(2.25rem, 7vw, 3.5rem); }
  h2 { font-size: clamp(1.75rem, 5vw, 2.4rem); }
  .section { padding: 5.5rem 0; }
  .page-hero { padding: 9rem 0 4rem; }
  .about-section,
  .values-grid,
  .gallery-section,
  .booking-section { padding: 4.5rem 0; }
  .booking-info { position: static; top: auto; }
  .hero { padding-top: 6.5rem; }
  .hero-grid { gap: 2.5rem; }
  .story-grid { gap: 3rem; }
  .testimonials { padding: 4rem 0; }
}

/* Phones: shrink container, headings, paddings, meta gaps */
@media (max-width: 600px) {
  .container { padding: 0 1.15rem; }
  .container-narrow { padding: 0 1.15rem; }
  h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  h2 { font-size: clamp(1.55rem, 6.5vw, 2rem); }
  h3 { font-size: 1.2rem; }
  p  { font-size: 1rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 7.5rem 0 3rem; }
  .page-hero p { font-size: 1rem; }
  .hero { padding-top: 5.5rem; padding-bottom: 3.5rem; min-height: auto; }
  .hero-lead { font-size: 1.02rem; margin-bottom: 1.8rem; }
  .hero-meta { gap: 1.4rem 1.6rem; margin-top: 2rem; }
  .hero-meta-item { font-size: 0.78rem; }
  .hero-meta-item strong { font-size: 1.3rem; }
  .hero-actions { gap: 0.75rem; }
  .btn { padding: 0.85rem 1.6rem; font-size: 0.82rem; }
  .nav { padding: 0.85rem 0; }
  .nav-inner { padding: 0 1.15rem; }
  .brand { font-size: 1.3rem; }
  .brand-sub { display: none; }
  .signature { font-size: 1.4rem; }
  .booking-form { padding: 1.5rem 1.1rem; }
  .booking-info  { padding: 1.5rem 1.1rem; border-radius: var(--radius); }
  .form-foot { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .form-foot .btn { justify-content: center; }
  .service-card { padding: 2rem 1.5rem; }
  .value-item { padding: 1.5rem 1.2rem; }
  .testimonials-head { margin-bottom: 2.5rem; }
  .gallery-preview-cta { margin-top: 1.5rem; }
  .footer .container { padding: 0 1.15rem; }
  .footer { padding: 4rem 0 2rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }
  .cta-band-inner { padding: 0 0.5rem; }
  .location-section { padding: 4rem 0; }

  /* Story images: simplify the overlap on tiny screens for clarity */
  .story-images { aspect-ratio: 5 / 4; max-width: 100%; }
  .story-img-main { inset: 0 25% 18% 0; }
  .story-img-sub  { inset: 30% 0 0 30%; border-width: 6px; }
}

/* Very small phones (≤420px): keep things readable */
@media (max-width: 420px) {
  .container { padding: 0 1rem; }
  .nav-inner { padding: 0 1rem; }
  h1 { font-size: clamp(1.85rem, 9.5vw, 2.4rem); }
  h2 { font-size: clamp(1.45rem, 7.5vw, 1.85rem); }
  .hero-meta { gap: 1rem 1.4rem; }
  .mobile-menu a { font-size: 1.6rem; }
  .signature { font-size: 1.25rem; }
  .testimonial-card { padding: 1.4rem 1.15rem 1.2rem; }
  .testimonial-quote { font-size: 1rem; }
  .service-icon { font-size: 1.5rem; }
}

/* Landscape phones — prevent the hero from overflowing the viewport */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding-top: 5rem; padding-bottom: 2.5rem; }
  .hero-grid { gap: 1.5rem; }
  .page-hero { padding: 6rem 0 2.5rem; }
  .mobile-menu { gap: 1rem; }
  .mobile-menu a { font-size: 1.4rem; }
}

/* Big screens — keep content from over-stretching */
@media (min-width: 1600px) {
  .container { max-width: 1360px; }
  h1 { font-size: clamp(3rem, 4.5vw, 5rem); }
  .hero-grid { gap: 6rem; }
}

/* Touch devices — disable hover transforms that feel weird without mouse */
@media (hover: none) {
  .gallery-item:hover,
  .gallery-preview-item:hover,
  .testimonial-card:hover,
  .service-card:hover { transform: none; }
  .gallery-item:hover img,
  .gallery-preview-item:hover img { transform: none; }
}
