:root {
  --ink: #101112;
  --charcoal: #202224;
  --smoke: #e8e8e5;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #666a6d;
  --line: rgba(16, 17, 18, 0.16);
  --brass: #c9c9c3;
  --gold: #f2f2ed;
  --brick: #a6a6a0;
  --jade: #565d5e;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(23, 18, 13, 0.92);
  border-bottom: 3px double rgba(226, 195, 106, 0.46);
  backdrop-filter: blur(18px);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 90px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.site-header::before {
  left: clamp(18px, 5vw, 64px);
}

.site-header::after {
  right: clamp(18px, 5vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--brass));
  border: 1px solid rgba(255, 248, 234, 0.45);
  border-radius: 2px;
  box-shadow: inset 0 0 0 3px rgba(23, 18, 13, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.nav a {
  padding: 8px 0;
}

.nav-cta {
  color: var(--brass);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 69px);
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 64px) 46px;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(226, 195, 106, 0.42);
  box-shadow:
    inset 0 0 0 8px rgba(23, 18, 13, 0.18),
    inset 0 0 0 10px rgba(226, 195, 106, 0.18);
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.93) 0%, rgba(18, 12, 8, 0.82) 40%, rgba(18, 12, 8, 0.42) 76%),
    linear-gradient(0deg, rgba(18, 12, 8, 0.76), rgba(18, 12, 8, 0.08) 45%);
}

.hero-content {
  align-self: center;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7.15rem);
  line-height: 0.94;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

p {
  margin-top: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-slogan {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1.42rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin: 18px 0 0;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 900;
}

.hero-contact span,
.hero-contact a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hero-contact a {
  color: var(--white);
}

.hero-contact a::before {
  content: "";
  width: 34px;
  height: 1px;
  margin-right: 12px;
  background: var(--brass);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 12px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--brass));
  border-color: var(--brass);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 6px;
  width: min(100%, 330px);
  padding: 20px;
  border: 1px solid rgba(226, 195, 106, 0.4);
  border-radius: 2px;
  background: rgba(23, 18, 13, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--brass);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: 1.35rem;
  line-height: 1.18;
}

.intro,
.section,
.proof-band,
.visit {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 64px);
}

.intro {
  position: relative;
  background: var(--smoke);
  border-bottom: 1px solid var(--line);
}

.intro::before {
  content: "";
  position: absolute;
  top: 24px;
  right: clamp(18px, 5vw, 64px);
  width: min(32vw, 280px);
  height: 46px;
  border-top: 2px solid var(--brass);
  border-right: 2px solid var(--brass);
  opacity: 0.65;
}

.intro p {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  line-height: 1.24;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article:hover {
  background:
    linear-gradient(90deg, rgba(201, 154, 69, 0.13), transparent 45%),
    var(--paper);
}

.service-list p,
.proof-copy p,
.feature-grid p,
.visit p,
.visit-details span {
  margin: 0;
  color: var(--muted);
}

.service-list strong {
  color: var(--brick);
  font-size: 1.08rem;
  white-space: nowrap;
}

.proof-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 195, 106, 0.12) 0 12%, transparent 12% 24%, rgba(226, 195, 106, 0.08) 24% 36%, transparent 36%),
    var(--charcoal);
}

.proof-band::before {
  content: "";
  position: absolute;
  inset: 24px;
  pointer-events: none;
  border: 1px solid rgba(226, 195, 106, 0.32);
}

.proof-copy {
  max-width: 690px;
}

.proof-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.shop-button {
  margin-top: 26px;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-preview span {
  display: grid;
  min-height: 180px;
  place-items: end start;
  padding: 18px;
  border: 1px solid rgba(226, 195, 106, 0.38);
  border-radius: 2px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(21, 23, 25, 0.15), rgba(21, 23, 25, 0.72)),
    linear-gradient(135deg, var(--gold), var(--brick));
}

.gallery-preview span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(21, 23, 25, 0.2), rgba(21, 23, 25, 0.76)),
    linear-gradient(135deg, var(--jade), #d9d1c2);
}

.gallery-preview span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(21, 23, 25, 0.18), rgba(21, 23, 25, 0.74)),
    linear-gradient(135deg, #d8d2c4, var(--brick));
}

.gallery-preview span:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(21, 23, 25, 0.16), rgba(21, 23, 25, 0.72)),
    linear-gradient(135deg, #2e3438, var(--brass));
}

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

.feature-grid article {
  position: relative;
  min-height: 235px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  opacity: 0.55;
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--brick);
  font-weight: 900;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr) minmax(220px, 0.5fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(226, 195, 106, 0.12), transparent 32%, rgba(132, 47, 50, 0.18)),
    var(--ink);
}

.visit > div:first-child {
  max-width: 720px;
}

.visit .button.secondary,
.visit .button.primary {
  align-self: center;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--brass);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(226, 195, 106, 0.42);
  border-radius: 2px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.booking-form select option {
  color: var(--ink);
}

.visit-details {
  display: grid;
  gap: 14px;
}

.visit-details p {
  display: grid;
  gap: 2px;
}

.visit-details strong {
  color: var(--brass);
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    justify-self: start;
    margin-top: 52px;
  }

  .proof-band,
  .visit {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 10, 11, 0.92), rgba(9, 10, 11, 0.72)),
      linear-gradient(0deg, rgba(9, 10, 11, 0.78), rgba(9, 10, 11, 0.16));
  }

  .hero-actions,
  .service-list article {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .service-list article {
    display: grid;
  }

  .service-list strong {
    white-space: normal;
  }

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

  .gallery-preview span {
    min-height: 130px;
  }
}
