﻿:root {
  --bg: #f5f1ea;
  --bg-soft: #efe9dd;
  --surface: #ffffff;
  --ink: #19222b;
  --muted: #637181;
  --accent: #c6863b;
  --accent-dark: #9f6a2d;
  --deep: #0f1720;
  --deep-soft: #172634;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 10px 24px rgba(12, 25, 38, 0.08);
  --shadow-md: 0 20px 48px rgba(12, 25, 38, 0.14);
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 16, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 80;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--surface);
  color: var(--deep);
  padding: 0.65rem 0.95rem;
  border-radius: 8px;
  z-index: 999;
}

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

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-light {
  background: var(--bg);
}

.section-cream {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #f7f3ee 100%);
}

.section-dark-accent {
  background: linear-gradient(120deg, var(--deep), #1a2d3e);
  color: #f7f9fc;
}

.section-dark-accent p {
  color: rgba(245, 249, 255, 0.82);
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.text-link {
  color: var(--deep);
  font-weight: 700;
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  background: rgba(15, 23, 32, 0.88);
  backdrop-filter: blur(8px);
}

.has-hero .site-header {
  background: transparent;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background: rgba(15, 23, 32, 0.94);
  padding: 0.65rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.site-logo img {
  width: clamp(160px, 18vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(0.9rem, 2vw, 1.6rem);
}

.nav-links a {
  color: #f8fbff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
}

.nav-links a::after,
.mobile-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 36px;
  height: 30px;
  cursor: pointer;
  z-index: 121;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 7px 0;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(84vw, 320px);
  height: 100dvh;
  background: linear-gradient(170deg, #132334, #0f1720);
  z-index: 115;
  transition: right 0.35s ease;
  padding: 6.3rem 1.6rem 2rem;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.25);
}

body.menu-open .mobile-nav-panel {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.mobile-nav-links a {
  color: #f8fbff;
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 0.2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #d1974f);
  color: #111;
  box-shadow: 0 12px 24px rgba(198, 134, 59, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px rgba(198, 134, 59, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.btn-nav {
  background: #fff;
  color: var(--deep);
  font-weight: 700;
}

.btn-mobile-contact {
  width: 100%;
  margin-top: 0.6rem;
  background: linear-gradient(120deg, var(--accent), #d1974f);
  color: #111;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  padding: 0.75rem;
}

.btn-sm {
  padding: 0.68rem 1.15rem;
  font-size: 0.9rem;
}

.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  color: #f9fcff;
  overflow: hidden;
}

.hero-short {
  min-height: 74dvh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(110deg, rgba(15, 23, 32, 0.86), rgba(15, 23, 32, 0.44)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(5.6rem, 10vw, 8.4rem);
  padding-bottom: 2.5rem;
  max-width: 760px;
}

.hero-title {
  margin-bottom: 1rem;
  animation: titleIn 0.85s cubic-bezier(0.2, 0.75, 0.22, 1) both;
}

.hero-subtitle {
  color: rgba(247, 252, 255, 0.82);
  max-width: 660px;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3.5vw, 4rem);
  align-items: center;
}

.split-content p {
  max-width: 56ch;
}

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.card-grid {
  display: grid;
  gap: 1.3rem;
}

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

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

.card,
.menu-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(18, 34, 49, 0.07);
}

.card:hover,
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(15, 26, 38, 0.16);
}

.card-image-wrap,
.menu-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-image-wrap img,
.menu-card-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 0.7, 0.25, 1);
}

.card:hover .card-image-wrap img,
.menu-card:hover .menu-card-media img,
.gallery-item:hover img {
  transform: scale(1.08);
}

.card-body,
.menu-card-content {
  padding: 1.2rem 1.2rem 1.35rem;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0;
  min-height: 220px;
}

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

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

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

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

.cta-band {
  background: radial-gradient(circle at 20% 20%, #283e54 0%, var(--deep) 58%, #0d151d 100%);
  color: #f8fbff;
  text-align: center;
}

.cta-band p {
  color: rgba(247, 252, 255, 0.82);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.menu-card-content h3 {
  margin-bottom: 0.55rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.35rem;
  align-items: start;
}

.contact-card,
.aside-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 34, 49, 0.08);
}

.contact-card {
  padding: clamp(1.4rem, 2.2vw, 2rem);
}

.contact-card form {
  display: grid;
  gap: 0.55rem;
}

.contact-card label {
  font-weight: 600;
  margin-top: 0.38rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d2d9df;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #90a9c4;
  outline: 2px solid rgba(144, 169, 196, 0.2);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-notice {
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  margin: 0.2rem 0 0.8rem;
  font-weight: 600;
}

.notice-success {
  background: #ebf9f0;
  color: #1e7d43;
  border: 1px solid #ccefd8;
}

.notice-error {
  background: #fff2f2;
  color: #9a2b2b;
  border: 1px solid #ffd4d4;
}

.field-error {
  color: #b12e2e;
  font-size: 0.86rem;
  margin: 0.15rem 0 0.2rem;
}

.honeypot {
  position: absolute;
  left: -5000px;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.aside-card {
  padding: 1.2rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
}

.site-footer {
  background: #0f1822;
  color: #dce5ef;
  padding: 3.2rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.95fr;
  gap: 2rem;
}

.footer-brand img {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 0.35rem 0.7rem;
  width: clamp(160px, 18vw, 220px);
  height: auto;
}

.footer-brand p,
.footer-links li,
.footer-bottom a {
  color: rgba(225, 235, 246, 0.8);
}

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

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.social-icon:hover {
  background: var(--accent);
  color: #141414;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1080px) {
  .menu-grid,
  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .split-grid,
  .contact-layout,
  .two-col,
  .three-col,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

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

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

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

  .hero-short {
    min-height: 64dvh;
  }
}

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

  .hero-content {
    padding-top: 6.4rem;
  }

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

  .btn,
  .btn-sm {
    width: 100%;
  }
}
