:root {
  --brand: #202C46;
  --green-950: #202C46;
  --green-900: #202C46;
  --green-800: #202C46;
  --gold: #ffffff;
  --gold-soft: #ffffff;
  --ivory: #ffffff;
  --paper: #ffffff;
  --ink: #202C46;
  --muted: #566175;
  --line: rgba(32, 44, 70, 0.18);
  --radius: 6px;
  --shadow: 0 22px 60px rgba(32, 44, 70, 0.18);
  --serif: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Aptos, "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ivory);
  color: var(--brand);
  box-shadow: 0 8px 30px rgba(32, 44, 70, 0.24);
}

.header-top {
  position: relative;
  min-height: 132px;
  background: var(--brand);
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-top-grid {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.header-contact {
  grid-column: 1;
  display: grid;
  gap: 10px;
  justify-self: start;
}

.header-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.line-icon,
.feature-icon,
.step-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  grid-column: 3;
  display: flex;
  gap: 16px;
  justify-self: end;
  align-items: center;
  text-align: right;
  max-width: 350px;
}

.header-cta span {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.35;
}

.header-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--ivory);
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.logo-anchor {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 150px;
  transform: translateX(-50%);
  z-index: 5;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.36));
}

.logo-anchor img {
  width: 150px;
  height: auto;
}

.menu-strip {
  position: relative;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.menu-links {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(5, auto) 170px repeat(5, auto);
  column-gap: 18px;
  justify-content: center;
  align-items: center;
}

.menu-links a:nth-child(1) { grid-column: 1; }
.menu-links a:nth-child(2) { grid-column: 2; }
.menu-links a:nth-child(3) { grid-column: 3; }
.menu-links a:nth-child(4) { grid-column: 4; }
.menu-links a:nth-child(5) { grid-column: 5; }
.menu-links a:nth-child(6) { grid-column: 7; }
.menu-links a:nth-child(7) { grid-column: 8; }
.menu-links a:nth-child(8) { grid-column: 9; }
.menu-links a:nth-child(9) { grid-column: 10; }
.menu-links a:nth-child(10) { grid-column: 11; }

.menu-links a {
  color: var(--brand);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-links a:hover,
.menu-links a:focus {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 180px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 44, 70, 0.82) 0%, rgba(32, 44, 70, 0.54) 48%, rgba(32, 44, 70, 0.22) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 56px;
  align-items: center;
  padding: 84px 0;
}

.hero-copy {
  color: var(--ivory);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
}

.brand-kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1 {
  max-width: 660px;
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 25px;
}

.hero-copy p:not(.brand-kicker) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ivory);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ivory);
  color: var(--brand);
}

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

.button-light {
  background: var(--ivory);
  color: var(--brand);
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--brand);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.booking-form h2 {
  font-size: 34px;
}

.form-label {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand);
  background: #fff;
  font: 500 15px/1.4 var(--sans);
  text-transform: none;
}

.booking-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  border-color: var(--brand);
  background: var(--brand);
  color: var(--ivory);
}

.section-pad {
  padding: 88px 0;
}

.intro-grid,
.content-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.intro-copy {
  column-count: 2;
  column-gap: 32px;
}

.intro-copy p {
  margin-top: 0;
}

.intro-cta {
  margin-top: 54px;
  padding: 34px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ivory);
}

.intro-cta h2 {
  max-width: 680px;
  font-size: clamp(28px, 3vw, 42px);
}

.intro-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

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

.section-heading > p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.tour-list {
  background: #fff;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.six-tours {
  grid-template-columns: repeat(3, 1fr);
}

.tour-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(32, 44, 70, 0.06);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tour-card div {
  padding: 24px;
}

.tour-card p {
  color: var(--muted);
}

.tour-card a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration-color: var(--brand);
  text-underline-offset: 4px;
}

.whisky-feature {
  background: linear-gradient(90deg, rgba(32, 44, 70, 0.06), #fff 42%);
}

.whisky-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.whisky-grid > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.whisky-grid p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.whisky-grid .button-primary {
  margin-top: 10px;
  border-color: var(--brand);
  background: var(--brand);
  color: var(--ivory);
}

.seo-content {
  background: var(--paper);
}

.travel-collage {
  position: sticky;
  top: 190px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.travel-collage img,
.vehicle-cards img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.travel-collage img {
  aspect-ratio: 1 / 1;
}

.travel-collage img:first-child,
.travel-collage img:nth-child(5) {
  aspect-ratio: 4 / 5;
}

.seo-content article p {
  margin: 0 0 18px;
  color: var(--muted);
}

.why {
  color: var(--ivory);
  background: var(--green-900);
}

.why .section-label,
.hero .brand-kicker {
  color: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.why-grid div {
  min-height: 220px;
  padding: 28px;
  background: var(--green-900);
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.vehicles {
  background: #fff;
}

.vehicles .container > div:first-child {
  max-width: 760px;
}

.vehicles p {
  color: var(--muted);
  font-size: 18px;
}

.vehicle-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vehicle-cards article {
  padding: 14px 14px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(32, 44, 70, 0.08);
}

.vehicle-cards img {
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
}

.vehicle-cards h3,
.vehicle-cards p {
  padding: 0 10px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 220px;
  padding: 82px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 28px;
}

.step-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 10px;
  color: var(--muted);
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--green-900);
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.footer {
  padding: 70px 0 28px;
  color: var(--ivory);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 44px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer h2,
.footer h3 {
  margin-bottom: 16px;
}

.footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer a:hover {
  color: var(--ivory);
}

.trust-row {
  margin-top: 42px;
  padding-top: 26px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accreditations,
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.accreditations img {
  width: auto;
  height: 58px;
  padding: 6px;
  background: #fff;
  border-radius: 4px;
}

.payments span {
  color: rgba(255, 255, 255, 0.82);
}

.payments strong {
  display: inline-flex;
  min-width: 64px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 4px;
  background: #fff;
  color: var(--green-950);
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 1120px) {
  .header-top-grid {
    grid-template-columns: 1fr 160px 1fr;
  }

  .header-cta span {
    display: none;
  }

  .menu-links {
    gap: 12px;
  }

  .menu-links a {
    font-size: 12px;
  }

  .tour-grid,
  .why-grid,
  .vehicle-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .header-top {
    min-height: 150px;
  }

  .header-top-grid {
    min-height: 150px;
    grid-template-columns: 1fr;
    gap: 12px;
    align-content: center;
    padding: 12px 0;
  }

  .header-contact {
    justify-self: start;
    gap: 5px;
    max-width: 140px;
  }

  .header-link {
    gap: 6px;
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0.02em;
  }

  .header-link .line-icon {
    width: 18px;
    height: 18px;
  }

  .header-link span {
    max-width: 112px;
  }

  .header-cta {
    justify-self: end;
    align-self: end;
  }

  .header-cta a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .menu-strip {
    min-height: 50px;
    justify-content: center;
    padding: 0 20px;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    background: var(--brand);
    color: var(--ivory);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .logo-anchor {
    top: 18px;
    width: 112px;
  }

  .logo-anchor img {
    width: 112px;
  }

  .menu-links {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    padding: 16px 24px 20px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(32, 44, 70, 0.15);
  }

  .site-header.menu-open .menu-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-header.menu-open .menu-links a {
    grid-column: auto;
  }

  .menu-links a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(32, 44, 70, 0.24) 0%, rgba(32, 44, 70, 0.9) 58%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 68px 0;
  }

  .intro-grid,
  .content-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-copy {
    column-count: 1;
  }

  .tour-grid,
  .why-grid,
  .vehicle-cards,
  .steps,
  .whisky-grid {
    grid-template-columns: 1fr;
  }

  .travel-collage {
    position: static;
  }

  .intro-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 48px, 1180px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .header-top {
    min-height: 168px;
  }

  .header-top-grid {
    min-height: 168px;
  }

  .header-cta {
    max-width: 122px;
  }

  .header-cta a {
    text-align: center;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-copy p:not(.brand-kicker),
  .vehicles p,
  .section-heading > p:not(.section-label) {
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .intro-grid,
  .content-grid,
  .faq-grid {
    min-width: 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .travel-collage {
    grid-template-columns: 1fr;
  }
}
