/* =============================================
   CSS Custom Properties — Light / Dark Themes
   ============================================= */
:root {
  --bg:         #FBF7F3;
  --bg-alt:     #F2E9DF;
  --card:       #FFFFFF;
  --text:       #1A1210;
  --muted:      #6B5248;
  --primary:    #8C2F2F;
  --primary-h:  #7A2828;
  --gold:       #C49A3C;
  --border:     #E4D4C8;
  --shadow:     rgba(26, 18, 16, 0.08);
  --nav-bg:     rgba(251, 247, 243, 0.95);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: 0.2s ease;
}

[data-theme="dark"] {
  --bg:         #130D0A;
  --bg-alt:     #1C1410;
  --card:       #211712;
  --text:       #F2E9DF;
  --muted:      #A89080;
  --primary:    #C05050;
  --primary-h:  #D06060;
  --gold:       #D4A840;
  --border:     #362820;
  --shadow:     rgba(0, 0, 0, 0.35);
  --nav-bg:     rgba(19, 13, 10, 0.95);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background-color var(--transition), color var(--transition);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { color: var(--muted); }
p + p { margin-top: 1rem; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-h); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   Layout
   ============================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background-color: var(--bg-alt); }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.section-header h2 { margin: 0; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* =============================================
   Navigation
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px var(--shadow);
  transition: background var(--transition), border-color var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--primary); }
.nav-logo:hover { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--border);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.45rem 1rem !important;
}
.nav-cta:hover { background: var(--primary-h) !important; }
.nav-cta.active { background: var(--primary-h) !important; }

/* =============================================
   Language Switcher
   ============================================= */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  color: var(--muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  white-space: nowrap;
  height: 36px;
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-btn svg { width: 9px; height: 9px; flex-shrink: 0; transition: transform var(--transition); }
.lang-switcher.open .lang-btn { border-color: var(--primary); color: var(--primary); }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px var(--shadow);
  padding: 0.35rem;
  min-width: 150px;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown { display: block; }

.lang-dropdown form { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.45rem 0.7rem;
  border: none;
  background: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.lang-option:hover { background: var(--bg-alt); color: var(--text); }
.lang-option--active { color: var(--primary); font-weight: 600; }

.lang-code {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  min-width: 22px;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-alt); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.1s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-h); color: #fff; }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--muted); color: var(--text); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn--large { padding: 0.85rem 2rem; font-size: 1rem; }

/* =============================================
   Hero
   ============================================= */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 60%);
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero-title em { font-style: italic; color: var(--primary); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.hero-ornament {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 35vw);
  color: var(--primary);
  opacity: 0.6;
  pointer-events: none;
}
.hero-ornament svg { width: 100%; height: 100%; }

/* =============================================
   Gallery
   ============================================= */
.gallery-grid--home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-grid--masonry {
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow); }

.gallery-grid--home .gallery-item { margin-bottom: 0; }

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.02); }

.gallery-caption {
  padding: 0.6rem 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  margin: auto;
  max-width: 100vw;
  max-height: 100dvh;
  width: 100vw;
  height: 100dvh;
}
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox::backdrop { background: rgba(0,0,0,0.88); backdrop-filter: blur(4px); }

.lightbox-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 90dvh;
}

.lightbox img {
  display: block;
  max-width: 92vw;
  max-height: 82dvh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  transition: opacity 0.15s ease;
}

/* Close button — top-right corner of the image */
.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(0,0,0,0.85); }

/* Nav bar — overlaid at the bottom of the image */
.lightbox-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.lightbox-prev,
.lightbox-next {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
  flex-shrink: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(0,0,0,0.85); }

.lightbox-counter {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  min-width: 52px;
  text-align: center;
  pointer-events: none;
}

/* =============================================
   About Teaser (Home)
   ============================================= */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser-text h2 { margin-bottom: 1rem; }
.about-teaser-text p { margin-bottom: 1.5rem; }

.ornament-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.ornament-circle::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.ornament-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  opacity: 0.25;
}

/* =============================================
   Pricing
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.pricing-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: 0 6px 20px var(--shadow); transform: translateY(-2px); }

.pricing-card h3 { margin-bottom: 0.25rem; }
.pricing-card p { font-size: 0.9rem; }

.pricing-card--full { padding: 2rem; }
.pricing-card-body { flex: 1; }

.pricing-footer {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.price-duration {
  font-size: 0.82rem;
  color: var(--muted);
}

.pricing-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.pricing-note p { font-size: 0.92rem; }

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}

.cta-inner {
  text-align: center;
}
.cta-inner h2 { margin-bottom: 0.75rem; }
.cta-inner p { margin-bottom: 1.75rem; }

/* =============================================
   Page Header
   ============================================= */
.page-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
}
.page-header h1 { margin-top: 0.25rem; }
.page-header-sub {
  margin-top: 0.75rem;
  max-width: 520px;
  font-size: 1rem;
}

/* =============================================
   About Page
   ============================================= */
.about-page {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.rich-text {
  font-size: 1rem;
  line-height: 1.8;
}
.rich-text h2, .rich-text h3 { margin: 1.5rem 0 0.75rem; color: var(--text); }
.rich-text p { color: var(--muted); margin-bottom: 1rem; }
.rich-text ul, .rich-text ol { padding-left: 1.5rem; color: var(--muted); margin-bottom: 1rem; }
.rich-text li { list-style: disc; margin-bottom: 0.35rem; }
.rich-text a { color: var(--primary); }
.rich-text strong { color: var(--text); }

.about-contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 80px;
}
.about-contact-box h3 { margin-bottom: 1rem; }
.contact-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.contact-list li { font-size: 0.9rem; color: var(--muted); }
.contact-list strong { color: var(--text); }

/* Pricing images horizontal scroll (About page) */
.pricing-images-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  margin: 2rem 0 0.5rem;
}
.pricing-images-scroll::-webkit-scrollbar { height: 4px; }
.pricing-images-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.pricing-images-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.pricing-images-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.pricing-images-track img {
  height: 480px;
  width: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--shadow);
}
.pricing-images-hint {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.5rem;
}
.about-pricing-cta {
  text-align: center;
  margin-top: 1rem;
}

/* =============================================
   Booking Page
   ============================================= */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.booking-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--primary); margin-left: 2px; }

.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 47, 47, 0.12);
}
.form-input::placeholder { color: var(--muted); opacity: 0.7; }

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

.form-errors, .form-error, .field-error {
  font-size: 0.82rem;
  color: #c0392b;
}
.form-errors { margin-bottom: 1rem; }

.form-submit { margin-top: 1.75rem; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.booking-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 80px; }

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-card h3 { margin-bottom: 0.75rem; font-size: 1rem; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-card li { font-size: 0.88rem; color: var(--muted); padding-left: 1.1rem; position: relative; }
.sidebar-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }
.sidebar-card p { font-size: 0.88rem; }

/* =============================================
   Success Page
   ============================================= */
.success-section { text-align: center; }
.success-container { max-width: 540px; margin: 0 auto; }
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-container h1 { margin-bottom: 1rem; }
.success-sub { font-size: 0.9rem; margin-top: 0.5rem; }
.success-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--primary); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); }

.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a { font-size: 0.88rem; color: var(--muted); }
.footer-links a:hover, .footer-contact a:hover { color: var(--primary); }
.footer-contact li { font-size: 0.88rem; color: var(--muted); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: 0.8rem; text-align: center; color: var(--muted); }

/* =============================================
   Misc
   ============================================= */
.link-more { font-size: 0.88rem; font-weight: 500; color: var(--primary); white-space: nowrap; }
.link-more:hover { color: var(--primary-h); }
.empty-state { text-align: center; color: var(--muted); padding: 3rem 0; font-size: 1.05rem; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 900px) {
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-visual { display: none; }
  .about-page { grid-template-columns: 1fr; }
  .about-contact-box { position: static; }
  .booking-container { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 0.75rem; }
  .nav-toggle { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  .nav-controls { margin-left: auto; }
  /* On mobile, lang dropdown opens downward and may go off-screen — keep it right-aligned */
  .lang-dropdown { right: 0; left: auto; min-width: 130px; }
  .hero { min-height: 70vh; }
  .hero-ornament { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid--masonry { columns: 2 200px; }
}

@media (max-width: 440px) {
  .gallery-grid--masonry { columns: 1; }
  .pricing-grid { grid-template-columns: 1fr; }
}
