:root {
  --bg: #0b0b0c;
  --bg-soft: #151518;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --text: #f5f1e8;
  --muted: #bbb4a3;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #ffcf33;
  --brand-strong: #f3b400;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 207, 51, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 207, 51, 0.08), transparent 25%),
    var(--bg);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2000;
  background: var(--brand);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section {
  padding: 6rem 0;
}

.section-heading h2,
.signature-copy h2,
.contact-copy h2,
.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  max-width: 10ch;
}

.section-heading h2,
.signature-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.hero-text,
.section-lead,
.footer-copy,
.language-copy,
.form-note,
.feature-card p,
.signature-points p {
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 12, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #fff0a5);
  color: #111;
  box-shadow: 0 8px 24px rgba(255, 207, 51, 0.28);
}

.desktop-nav,
.header-actions,
.lang-switch {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 1.4rem;
}

.desktop-nav a,
.mobile-menu a,
.lang-btn {
  color: rgba(245, 241, 232, 0.88);
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--brand);
}

.header-actions {
  gap: 1rem;
}

.lang-switch {
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  background: var(--brand);
  color: #111;
}

.menu-toggle {
  display: none;
  width: 3rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  width: var(--container);
  margin: 0 auto 1rem;
  padding: 1rem;
  background: rgba(21, 21, 24, 0.98);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 0.6rem;
}

.mobile-menu a {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding-top: 3rem;
}

.hero-grid,
.about-grid,
.signature-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: 1.06rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.hero-badges span,
.contact-card,
.feature-card,
.language-card,
.gallery-item,
.hero-card,
.signature-media,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero-badges span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #efe6d2;
  backdrop-filter: blur(8px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ffe28a);
  color: #111;
  box-shadow: 0 14px 34px rgba(255, 207, 51, 0.24);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.full-width {
  width: 100%;
}

.hero-visual {
  min-height: 36rem;
  position: relative;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-card img,
.signature-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  position: absolute;
  inset: 3rem 4rem 4rem 0;
}

.hero-card-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  aspect-ratio: 1 / 1.18;
}

.hero-card-bottom {
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
}

.about-grid,
.signature-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.contact-form,
.contact-card {
  border-radius: var(--radius-lg);
}

.feature-card {
  padding: 1.35rem;
}

.feature-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.15rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 207, 51, 0.16);
  color: var(--brand);
  font-weight: 800;
}

.signature-media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 36rem;
}

.signature-points {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.signature-points strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 16rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 5;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 3;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-weight: 700;
}

.gallery-item img {
  transition: transform 0.45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.contact-grid {
  align-items: center;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  padding: 1.15rem 1.2rem;
}

.contact-card small {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-form {
  padding: 1.3rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-form span {
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 207, 51, 0.64);
  box-shadow: 0 0 0 4px rgba(255, 207, 51, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid {
  align-items: start;
  padding-bottom: 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

.language-modal,
.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 6, 6, 0.74);
  backdrop-filter: blur(12px);
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.language-modal.is-visible,
.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.language-card {
  width: min(100%, 36rem);
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.language-card h2 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.language-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.language-option {
  border: 0;
  cursor: pointer;
  min-width: 8.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), #ffe28a);
  color: #111;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  max-width: 24rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 15, 16, 0.94);
  box-shadow: var(--shadow);
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.lightbox-figure {
  width: min(94vw, 68rem);
  margin: 0;
}

.lightbox-figure img {
  border-radius: 24px;
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
  background: #111;
}

.lightbox-figure figcaption {
  margin-top: 1rem;
  text-align: center;
  color: #f4eedf;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: white;
  cursor: pointer;
  font-size: 1.8rem;
}

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

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.28s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .signature-grid,
  .contact-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav,
  .lang-switch {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .hero-card-main {
    inset: 2.5rem 2rem 2rem 0;
  }

  .hero-card-top {
    width: 42%;
  }

  .hero-card-bottom {
    width: 50%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }
}

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

  .hero-actions,
  .language-actions {
    flex-direction: column;
  }

  .btn,
  .language-option {
    width: 100%;
  }

  .hero-badges {
    gap: 0.6rem;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .hero-card-main {
    inset: 2rem 0.5rem 2rem 0;
  }

  .hero-card-top {
    width: 44%;
  }

  .hero-card-bottom {
    width: 54%;
    right: 0.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 18rem;
  }

  .language-card,
  .contact-form,
  .feature-card {
    padding: 1.1rem;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
