:root {
  color-scheme: light;
  --bg: #f6f1ea;
  --bg-soft: #f0e9e0;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-2: #f7f2ea;
  --text: #1b1613;
  --muted: #5c5348;
  --red: #c12d2d;
  --gold: #b99058;
  --accent: #caa36c;
  --line: rgba(35, 27, 22, 0.12);
  --shadow: 0 24px 50px rgba(19, 13, 10, 0.15);
  --header-bg: rgba(247, 242, 234, 0.92);
  --chip-bg: rgba(255, 255, 255, 0.75);
  --glow-red: rgba(193, 45, 45, 0.12);
  --glow-gold: rgba(185, 144, 88, 0.18);
  --feature-bg: rgba(255, 255, 255, 0.85);
  --card-accent-from: rgba(193, 45, 45, 0.08);
  --card-accent-to: rgba(255, 255, 255, 0.85);
  --overlay: rgba(20, 16, 14, 0.06);
  --cookie-bg: rgba(255, 255, 255, 0.96);
  --cookie-border: rgba(35, 27, 22, 0.18);
  --badge-bg: rgba(17, 14, 13, 0.86);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c0a0a;
  --bg-soft: #131012;
  --panel: #171316;
  --panel-2: #1b171b;
  --text: #f6f2ea;
  --muted: #c8b8a4;
  --red: #d12f2f;
  --gold: #c5a16a;
  --accent: #f0c27a;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-bg: rgba(10, 8, 10, 0.88);
  --chip-bg: rgba(23, 19, 22, 0.85);
  --glow-red: rgba(209, 47, 47, 0.2);
  --glow-gold: rgba(197, 161, 106, 0.15);
  --feature-bg: rgba(23, 19, 22, 0.9);
  --card-accent-from: rgba(209, 47, 47, 0.18);
  --card-accent-to: rgba(23, 19, 22, 0.98);
  --overlay: rgba(0, 0, 0, 0.65);
  --cookie-bg: rgba(16, 13, 15, 0.92);
  --cookie-border: rgba(255, 255, 255, 0.1);
  --badge-bg: rgba(12, 10, 10, 0.9);
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% 10%, var(--glow-red), transparent 55%),
    radial-gradient(circle at 80% 0%, var(--glow-gold), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 45%, var(--bg) 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

body.coming-soon-active {
  overflow: hidden;
}

body.coming-soon-active > :not(.coming-soon-screen) {
  display: none !important;
}

.coming-soon-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(12, 10, 10, 0.78), rgba(12, 10, 10, 0.92)),
    url("assets/photos/hero.jpg") center / cover no-repeat;
  color: #f8f1e8;
  z-index: 9999;
}

.coming-soon-inner {
  width: min(720px, 100%);
  text-align: center;
}

.coming-soon-mark {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(209, 47, 47, 0.65);
  border-radius: 16px;
  background: rgba(209, 47, 47, 0.12);
  color: #ef4b44;
  font-family: "Noto Serif SC", serif;
  font-size: 1.8rem;
  line-height: 1.2;
  white-space: pre-line;
}

.coming-soon-kicker {
  margin-bottom: 0.7rem;
  color: #e3c08a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.coming-soon-screen h1 {
  color: #fff7ee;
  font-size: clamp(3.4rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.coming-soon-copy {
  max-width: 560px;
  margin: 1.2rem auto 0;
  color: rgba(248, 241, 232, 0.82);
  font-size: 1.05rem;
}

.coming-soon-line {
  width: min(320px, 72%);
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, rgba(227, 192, 138, 0.8), transparent);
}

.coming-soon-contact {
  color: rgba(248, 241, 232, 0.78);
  font-size: 0.95rem;
}

.coming-soon-contact a {
  color: #fff7ee;
  font-weight: 700;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: none;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.1;
}

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

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.caps {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 6vw;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  font-family: "Noto Serif SC", serif;
  font-size: 1.7rem;
  color: var(--red);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(209, 47, 47, 0.4);
  border-radius: 12px;
  background: rgba(209, 47, 47, 0.08);
}

.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  color: var(--muted);
  transition: color 0.3s ease;
}

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

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.lang-switch {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--chip-bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-toggle .chevron {
  font-size: 0.65rem;
  opacity: 0.7;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.4rem;
  display: none;
  min-width: 180px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.lang-menu.is-open {
  display: grid;
  gap: 0.2rem;
}

.lang-menu button {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 0.45rem 0.8rem;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
}

.lang-menu button.active {
  color: var(--text);
  background: var(--chip-bg);
}

.icon-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--chip-bg);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.theme-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  transition: transform 0.3s ease;
}

:root[data-theme="dark"] .theme-icon {
  background: currentColor;
  box-shadow: inset -6px 0 0 var(--panel);
}

.theme-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #d12f2f, #881c1c);
  color: white;
  box-shadow: 0 14px 30px rgba(209, 47, 47, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 4rem 6vw 2rem;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

body.loaded .hero-content,
body.loaded .hero-media {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), transparent 60%);
}

.lead {
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
}

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

.meta-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.meta-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  background: var(--chip-bg);
}

.meta-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.meta-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.section {
  padding: 3.2rem 6vw;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-head {
  margin-bottom: 2rem;
}

.grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--panel);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.card.accent {
  background: linear-gradient(150deg, var(--card-accent-from), var(--card-accent-to));
}

.card.media-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.card.wide {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.card.wide img {
  width: 100%;
  border-radius: 18px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.steps li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
}

.steps li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.big {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.mt {
  margin-top: 1.5rem;
}

.price-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  background: var(--feature-bg);
  box-shadow: var(--shadow);
}

.feature-index {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.menu-col {
  background: var(--panel-2);
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.menu-col ul,
.card ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.menu-col ul li::before,
.card ul li::before {
  content: "• ";
  color: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.map-card {
  position: relative;
  overflow: hidden;
}

.map-consent {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
}

.map-card.is-loaded .map-consent {
  display: none;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  border-radius: 18px;
}

.footer {
  padding: 2.5rem 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.georges-logo {
  height: 24px;
  width: auto;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--badge-bg);
}

.footer-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: min(920px, 92vw);
  background: var(--cookie-bg);
  border: 1px solid var(--cookie-border);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-text p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

body.rtl {
  direction: rtl;
}

body.rtl .nav,
body.rtl .header-actions,
body.rtl .hero-actions,
body.rtl .footer-links,
body.rtl .footer-branding {
  flex-direction: row-reverse;
}

body.rtl .lang-menu {
  right: auto;
  left: 0;
}

body.rtl .lang-menu button {
  text-align: right;
}

body.rtl .section-head,
body.rtl .card,
body.rtl .menu-col,
body.rtl .feature-card,
body.rtl .footer,
body.rtl .policy-content {
  text-align: right;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 9, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 20;
}

.modal.policy {
  backdrop-filter: blur(6px);
}

.modal:target {
  display: flex;
}

.modal-content {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.policy-content {
  background: var(--panel);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.policy-content h3 {
  margin-bottom: 0.6rem;
}

.policy-content p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.policy-content .btn {
  margin-top: 1.2rem;
}

.modal-content img {
  width: 100%;
  border-radius: 20px;
}

.modal-close {
  position: absolute;
  right: 0;
  top: -2rem;
  font-size: 2.4rem;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 960px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 5vw;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.2rem;
  }

  .nav a {
    padding: 0.2rem 0;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.6rem;
    order: 2;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .lang-toggle,
  .icon-toggle,
  .btn {
    flex: 0 0 auto;
  }

  .lang-menu {
    position: fixed;
  }

  .nav::-webkit-scrollbar,
  .header-actions::-webkit-scrollbar {
    height: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .theme-label {
    display: none;
  }

  .cookie-banner {
    bottom: 1rem;
  }

  .site-header {
    padding: 0.8rem 5vw;
  }

  .brand-mark {
    font-size: 1.35rem;
    padding: 0.3rem 0.6rem;
  }

  .brand-sub {
    display: none;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.2rem;
    gap: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .nav::-webkit-scrollbar {
    height: 0;
  }

  .lang-toggle,
  .icon-toggle {
    padding: 0.4rem 0.7rem;
    font-size: 0.66rem;
  }

  .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}
