:root {
  --black: #080706;
  --ink: #12100d;
  --deep: #1b1711;
  --beige: #e8dcc5;
  --soft: #c9b891;
  --gold: #b9924b;
  --gold-light: #e3c377;
  --muted: #a79c88;
  --line: rgba(232, 220, 197, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--beige);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 62%);
  z-index: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 7, 6, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.header-socials,
.social-links {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 1 auto;
  min-width: 0;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(227, 195, 119, 0.52);
  background: var(--black);
}

.main-nav {
  gap: clamp(14px, 2vw, 28px);
  color: rgba(232, 220, 197, 0.82);
  font-size: 14px;
}

.main-nav a,
.social-links a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.social-links a:hover {
  color: var(--gold-light);
}

.header-socials {
  gap: 8px;
}

.header-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(227, 195, 119, 0.28);
  color: rgba(232, 220, 197, 0.86);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.header-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 195, 119, 0.74);
  color: var(--gold-light);
  background: rgba(227, 195, 119, 0.08);
}

.header-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.language-switcher {
  position: relative;
}

.language-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(227, 195, 119, 0.32);
  background: rgba(227, 195, 119, 0.07);
  color: var(--gold-light);
  font: 800 12px/1 "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-arrow {
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 74px;
  padding: 6px;
  background: rgba(8, 7, 6, 0.94);
  border: 1px solid rgba(227, 195, 119, 0.3);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  appearance: none;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: rgba(232, 220, 197, 0.82);
  font: 800 12px/1 "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: rgba(227, 195, 119, 0.12);
  color: var(--gold-light);
}

.nav-cta,
.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(227, 195, 119, 0.64);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #140f08;
  box-shadow: 0 18px 44px rgba(185, 146, 75, 0.28);
}

.button-secondary {
  color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.46) 46%, rgba(8, 7, 6, 0.74)),
    linear-gradient(0deg, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.05) 52%, rgba(8, 7, 6, 0.42) 100%);
}

.hero-content {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 112px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(56px, 9vw, 122px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-size: 28px;
}

.section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 420px);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.split p,
.section-heading p {
  margin: 0;
  color: rgba(232, 220, 197, 0.76);
  font-size: clamp(18px, 2vw, 22px);
}

.about-copy {
  display: grid;
  gap: 10px;
}

.about-copy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.about-copy img {
  aspect-ratio: 16 / 8.5;
  max-height: 230px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-section {
  padding-top: clamp(38px, 5vw, 58px);
  padding-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.intro-section .section-kicker {
  margin-bottom: 10px;
}

.intro-section h2 {
  max-width: 620px;
  font-size: clamp(30px, 4.4vw, 56px);
}

.intro-section .split p {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.hero-booking {
  display: grid;
  gap: 6px;
  max-width: 430px;
}

.hero-booking .eyebrow {
  margin-bottom: -4px;
}

.hero-booking p:not(.eyebrow) {
  margin: 0 0 2px;
  color: rgba(232, 220, 197, 0.8);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.25;
}

.hero-booking .button {
  width: fit-content;
  min-height: 56px;
  padding-inline: 30px;
  font-size: 13px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  min-height: 148px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(232, 220, 197, 0.08), rgba(185, 146, 75, 0.06));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(227, 195, 119, 0.32);
  background: rgba(227, 195, 119, 0.07);
  color: var(--gold-light);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-card .service-top > span:last-child {
  color: rgba(232, 220, 197, 0.82);
  font-size: 17px;
  line-height: 1.3;
}

.price-card strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.price-card strong small {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  vertical-align: 0.12em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.contact-details,
.map-panel {
  border: 1px solid var(--line);
  background: rgba(232, 220, 197, 0.055);
  box-shadow: var(--shadow);
}

.contact-details {
  padding: clamp(24px, 4vw, 38px);
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-row strong,
.contact-row a {
  color: var(--beige);
  font-size: 19px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.address-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.route-button {
  min-height: 38px;
  padding-inline: 14px;
  color: var(--gold-light);
  font-size: 11px;
  white-space: nowrap;
}

.hours {
  margin-top: 38px;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  border: 1px solid rgba(72, 210, 117, 0.45);
  background: rgba(72, 210, 117, 0.1);
  color: #7dff9f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(72, 210, 117, 0.18);
}

.open-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.open-status.is-closed {
  border-color: rgba(210, 72, 72, 0.38);
  background: rgba(210, 72, 72, 0.08);
  color: #d7a09a;
  box-shadow: none;
}

.header-open-status {
  min-height: 34px;
  margin-bottom: 0;
  padding-inline: 10px;
  font-size: 10px;
}

.header-open-status .open-status-dot {
  width: 6px;
  height: 6px;
}

.hours h3 {
  margin-bottom: 18px;
}

.hours dl {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 220, 197, 0.1);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  color: rgba(232, 220, 197, 0.74);
}

.hours dd {
  color: var(--gold-light);
  font-weight: 700;
  text-align: right;
}

.map-panel {
  min-height: 520px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(0.88) invert(0.9) contrast(0.9) sepia(0.22);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: rgba(232, 220, 197, 0.78);
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-light);
  font-size: 22px;
}

.social-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-12px, -8px, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .main-nav {
    order: 4;
    flex: 1 1 100%;
    justify-content: center;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    grid-column: 1 / 2;
    font-size: 16px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: initial;
    gap: 12px;
    justify-content: center;
    overflow-x: visible;
    padding: 2px 0 0;
    font-size: 13px;
  }

  .header-socials {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 8px;
  }

  .header-socials a {
    width: 30px;
    height: 30px;
  }

  .language-switcher {
    grid-column: 2 / 3;
    justify-self: end;
  }

  .header-open-status {
    grid-column: 3 / 4;
    justify-self: end;
    min-height: 34px;
    padding-inline: 9px;
  }

  .address-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding-top: 220px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 68px);
  }

  .section {
    width: min(100% - 28px, 1180px);
  }

  .intro-section {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .about-copy {
    gap: 8px;
  }

  .about-copy img {
    max-height: 190px;
  }

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

  .price-card {
    min-height: 118px;
    padding: 18px;
  }

  .service-top {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .service-icon {
    width: 38px;
    height: 38px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 8px;
  }

  .brand {
    font-size: 14px;
    gap: 8px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .main-nav {
    gap: 10px;
    font-size: 12px;
  }

  .language-button,
  .header-open-status {
    min-height: 30px;
  }

  .header-open-status {
    font-size: 9px;
  }

  .hero-content {
    padding-top: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
