:root {
  --ink: #171514;
  --muted: #69625d;
  --line: #e7dfd7;
  --paper: #fffaf3;
  --surface: #f4eee7;
  --accent: #b67a32;
  --accent-dark: #80501e;
  --charcoal: #23201d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(255, 250, 243, .92);
  border-bottom: 1px solid rgba(23, 21, 20, .08);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.main-nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--accent-dark);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}

.nav-action,
.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .6);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  max-height: 860px;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 14, .92) 0%, rgba(18, 16, 14, .56) 45%, rgba(18, 16, 14, .2) 100%),
    linear-gradient(0deg, rgba(18, 16, 14, .85) 0%, rgba(18, 16, 14, 0) 38%);
}

.hero-content {
  position: relative;
  width: min(720px, 90vw);
  padding: 10vh 5vw 14vh;
  color: #fff;
}

.rating,
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  display: grid;
  gap: 6px;
  padding: 28px 5vw;
  background: #fff;
}

.quick-info strong {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
}

.quick-info span,
.quick-info a {
  font-weight: 800;
}

.section {
  padding: 92px 5vw;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.35fr;
  gap: 54px;
  align-items: start;
}

.section-copy p:not(.eyebrow),
.gallery-copy + p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-card {
  min-height: 210px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--accent);
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.gallery {
  background: var(--charcoal);
  color: #fff;
}

.gallery-copy {
  max-width: 760px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-top: 34px;
}

.gallery-grid img,
.photo-note,
.route-panel {
  width: 100%;
  border-radius: 8px;
}

.gallery-grid img {
  height: 420px;
  object-fit: cover;
}

.photo-note {
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: 28px;
  background: #312c27;
  border: 1px solid rgba(255, 255, 255, .12);
}

.photo-note strong {
  margin-bottom: 10px;
  font-size: 24px;
}

.photo-note span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.booking-note {
  align-content: center;
}

.booking-note img {
  width: 126px;
  height: 126px;
  margin-bottom: 24px;
  object-fit: cover;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
}

.form-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 42px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(182, 122, 50, .18);
  border-color: var(--accent);
}

.form-row [aria-invalid="true"] {
  border-color: #b3261e;
}

.field-error {
  min-height: 18px;
  color: #b3261e;
  font-size: 13px;
  line-height: 1.35;
}

.field-help {
  color: var(--muted);
  font-size: 13px;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.hours-panel,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-panel {
  padding: 34px;
}

.hours-list {
  margin: 26px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  color: var(--muted);
  font-weight: 700;
}

.hours-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.map-panel {
  display: grid;
  gap: 16px;
}

.route-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 460px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(35, 32, 29, .96), rgba(128, 80, 30, .78)),
    url("assets/real-shop.jpg") center/cover;
}

.route-panel strong {
  font-size: clamp(30px, 4vw, 48px);
}

.route-panel span {
  max-width: 440px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 5vw;
  color: rgba(255, 255, 255, .72);
  background: #171514;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.legal-page {
  min-height: 100vh;
  padding: 72px 5vw;
}

.legal-page article {
  max-width: 880px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 36px);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-note {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .quick-info,
  .split,
  .gallery-grid,
  .contact-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  .section {
    padding: 68px 5vw;
  }

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

  .gallery-grid img,
  .photo-note {
    min-height: 320px;
    height: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0 18px;
  }

  .brand span:last-child {
    max-width: 136px;
    line-height: 1.15;
  }

  .nav-action {
    padding: 0 14px;
  }

  .hero-content {
    width: 100%;
    padding: 90px 18px 84px;
  }

  .quick-info div,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
