/* Villa De Marco — тёмная тема, золотые акценты */

:root {
  --bg-deep: #0c0a08;
  --bg-raised: #14110e;
  --bg-card: #1a1612;
  --bg-card-hover: #221c17;
  --gold: #c9a86c;
  --gold-light: #e8d5a8;
  --gold-dim: #8a7349;
  --text: #e8e4dc;
  --text-muted: #9a9288;
  --border: rgba(201, 168, 108, 0.22);
  --border-strong: rgba(201, 168, 108, 0.45);
  --shadow-gold: 0 0 60px rgba(201, 168, 108, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.96) 0%, rgba(12, 10, 8, 0.75) 70%, transparent 100%);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.header.is-scrolled {
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header__inner {
  height: 100%;
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--text);
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--gold-light);
}

.nav__cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--gold) !important;
}

.nav__cta:hover {
  background: rgba(201, 168, 108, 0.12);
  color: var(--gold-light) !important;
}

@media (max-width: 900px) {
  body.is-nav-open {
    overflow: hidden;
  }

  .header {
    z-index: 10000;
  }

  .header.is-nav-open {
    background: #0a0a0a !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: var(--border);
  }

  .header__inner {
    position: relative;
    z-index: 10003;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 10004;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 10001;
    background: #0a0a0a;
    padding: calc(var(--header-h) + 2rem) 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition), visibility var(--transition);
    border: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
    isolation: isolate;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__list a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__cta {
    text-align: center;
    margin-top: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a8864a 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px rgba(201, 168, 108, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 32px rgba(201, 168, 108, 0.5);
  color: var(--bg-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  background: rgba(201, 168, 108, 0.08);
  color: var(--gold);
}

.btn--block {
  width: 100%;
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(201, 168, 108, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(90, 70, 45, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, #0a0806 0%, var(--bg-deep) 45%, #15120f 100%);
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTit type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 1.25rem;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 45%, #8a7349 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  filter: drop-shadow(var(--shadow-gold));
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero__address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero__address a {
  color: var(--gold-light);
}

.hero__dot {
  margin: 0 0.5rem;
  color: var(--gold-dim);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line {
    animation: none;
  }
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section__head {
  margin-bottom: 3rem;
  max-width: 640px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 720px;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--about {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 800px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

.about__text .lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 0;
}

.about__text p {
  color: var(--text-muted);
}

.about__stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .about__stats {
    grid-template-columns: 1fr;
  }
}

.about__stats li {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.about__stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.about__card {
  background: linear-gradient(145deg, var(--bg-card) 0%, #231d18 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-gold);
}

.about__card-inner {
  position: relative;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0;
  color: var(--gold-dim);
  opacity: 0.5;
}

.about__card-inner p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.about__signature {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Services */
.section--services {
  background: var(--bg-deep);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  padding: 2rem 2rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.service-card--featured {
  border-color: var(--border-strong);
  background: linear-gradient(160deg, #1f1a15 0%, var(--bg-card) 100%);
}

.service-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold-dim), transparent 40%, transparent 60%, var(--gold-dim));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.service-card__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.service-card__title {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Menu */
.section--menu {
  --menu-bg: #0a0a0a;
  --menu-gold: #c9a84c;
  --menu-gold-soft: rgba(201, 168, 76, 0.35);
  background: var(--menu-bg);
  border-top: 1px solid var(--menu-gold-soft);
  border-bottom: 1px solid var(--menu-gold-soft);
}

.section__label--menu {
  color: var(--menu-gold);
  border-bottom-color: rgba(201, 168, 76, 0.35);
}

.section__title--menu {
  color: var(--text);
  font-family: var(--font-display);
}

.section__desc--menu {
  color: var(--text-muted);
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.45) transparent;
}

.menu-tabs::-webkit-scrollbar {
  height: 6px;
}

.menu-tabs::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.35);
  border-radius: 999px;
}

.menu-tabs__btn {
  flex: 0 0 auto;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(20, 17, 14, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.menu-tabs__btn:hover {
  color: var(--menu-gold);
  border-color: rgba(201, 168, 76, 0.45);
}

.menu-tabs__btn.is-active {
  color: #0a0a0a;
  background: var(--menu-gold);
  border-color: var(--menu-gold);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.25);
}

.menu-tabs__btn:focus-visible {
  outline: 2px solid var(--menu-gold);
  outline-offset: 3px;
}

.menu-panels {
  position: relative;
}

.menu-panel {
  display: none;
}

.menu-panel.is-active {
  display: block;
}

.menu-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: rgba(20, 17, 14, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.menu-card__img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
}

.menu-card__body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
}

.menu-card--single .menu-card__body {
  justify-content: flex-start;
}

.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.menu-card__weight {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--menu-gold);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .menu-card__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .menu-card__weight {
    white-space: normal;
  }
}

/* Events */
.section--events {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.event-row:hover {
  border-color: var(--border-strong);
}

@media (max-width: 640px) {
  .event-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .event-row__link {
    justify-self: start;
  }
}

.event-row__date {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

.event-row__body h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.event-row__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.event-row__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  white-space: nowrap;
}

.event-row__link:hover {
  background: rgba(201, 168, 108, 0.1);
  color: var(--gold-light);
}

.events__note {
  margin: 2rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Booking */
.section--booking {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #100d0b 100%);
  border-top: 1px solid var(--border);
}

.booking {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .booking {
    grid-template-columns: 1fr;
  }
}

.booking__intro p {
  color: var(--text-muted);
}

.booking__contacts {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.booking__contacts li {
  margin-bottom: 0.5rem;
}

.booking__contacts a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
}

.booking__form {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form__field--full {
  grid-column: 1 / -1;
}

.form__field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form__hint {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.5em;
}

.form__hint.is-success {
  color: #8fbc8f;
}

.form__hint.is-error {
  color: #e08a8a;
}

/* Map / Location */
.section--map {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}

.section__title--map {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0;
}

.map__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.map__frame {
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-gold);
}

.map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map__info {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map__info-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.map__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.map__detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.map__detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.map__detail a,
.map__detail span {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.map__detail a {
  color: var(--gold-light);
}

.map__detail a:hover {
  color: var(--gold);
}

.map__route {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .map__grid {
    grid-template-columns: 1fr;
  }

  .map__frame iframe {
    min-height: 280px;
  }
}

/* Footer */
.footer {
  background: #080705;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.logo--footer {
  margin-bottom: 1rem;
}

.footer__brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer__address a {
  color: var(--text);
}

.footer__hours,
.footer__pwa {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__bottom-inner p {
  margin: 0;
}

.footer__to-top {
  color: var(--gold-dim);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__to-top:hover {
  color: var(--gold);
}
