:root {
  --ink: #1f2326;
  --muted: #5e666b;
  --stone: #f4efe7;
  --mist: #e7edf0;
  --gold: #c7923e;
  --green: #244a3f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 231, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 35, 38, 0.08);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  flex: 0 0 auto;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  color: var(--ink);
  opacity: 0.88;
  flex: 0 0 auto;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--green);
}

.book-link {
  display: inline-flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(36, 74, 63, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(36, 74, 63, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(18, 38, 30, 0.42),
      rgba(22, 44, 36, 0.62)
    ),
    radial-gradient(
      circle at top left,
      rgba(111, 152, 115, 0.18),
      transparent 38%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(201, 146, 62, 0.14),
      transparent 42%
    ),
    url("images/p0.jpg")
    center center / cover no-repeat;
  color: var(--white);
  min-height: 82vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 22px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f0cc86;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  margin: 0 0 22px;
  max-width: 820px;
}

.hero p {
  font-family: Arial, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.landmark-tile {
  min-height: 170px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.landmark-tile.contain {
	background-size: contain;
	background-repeat: no-repeat;
	background-color: rgba(255,255,255,0.1);
}

.landmark-tile.large {
  grid-column: span 2;
  min-height: 230px;
}

.landmark-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(31, 35, 38, 0.72);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.castle {
  background-image:
    linear-gradient(rgba(31, 35, 38, 0.08), rgba(31, 35, 38, 0.35)),
    url("images/w0.jpg");
  box-shadow: 0 12px 30px rgba(0, 0, 0, 1);
}

.victoria {
  background-image:
    url("images/zora240.png");
  box-shadow: none;
}

.calton {
  background-image:
    url("images/logo240.png");
  box-shadow: none;
}

.section {
  padding: 86px 22px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-title .eyebrow {
  color: var(--gold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--green);
}

.section-title p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

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

.tour-card {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background-size: cover;
  background-position: center;
}

.tour-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(31, 35, 38, 0.06), rgba(31, 35, 38, 0.82));
}

.tour-card-content {
  position: relative;
  z-index: 1;
}

.tour-card h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.tour-card p {
  margin: 0;
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.86);
}

.old-town {
  background-image: url("images/p4.jpg");
}

.new-town {
  background-image: url("images/p3.jpg");
}

.haunted {
  background-image: url("images/p1.jpg");
}

.feature {
  background: var(--green);
  color: var(--white);
}

.feature .container {
  display: grid;
  gap: 34px;
}

.why-zora-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.why-zora-copy {
  max-width: 720px;
}

.why-zora-copy h2 {
  color: var(--white);
}

.why-zora-copy p {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin: 0 0 18px;
}

.why-zora-cards {
  display: grid;
  gap: 16px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 20px;
}

.feature-item strong {
  display: block;
  margin-bottom: 5px;
  color: #f5d28d;
  font-family: Arial, sans-serif;
}

.feature-item span {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.78);
}

.why-zora-photos {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
}

.mini-tile {
  min-height: 150px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.mini-tile.tall {
  grid-row: span 2;
  min-height: 312px;
}

.mini-tile.wide {
  grid-column: span 2;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quote-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote-box p {
  font-size: 1.55rem;
  line-height: 1.35;
  margin: 0 0 18px;
  color: var(--green);
}

.quote-box small {
  font-family: Arial, sans-serif;
  color: var(--muted);
}

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

.step {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: 22px;
  top: 12px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(36, 74, 63, 0.08);
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.step h3 {
  margin: 0 0 10px;
  color: var(--green);
}

.step p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  margin: 0;
}

.gallery-section {
  padding-top: 20px;
}

.landmark-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.strip-tile {
  min-height: 130px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.photo-royal-mile {
  background-image: url("images/p2.jpg");
}

.photo-old-town {
  background-image: url("images/p5.jpg");
}

.photo-calton {
  background-image: url("images/p6.jpg");
}

.photo-castle {
  background-image: url("images/p7.jpg");
}

.photo-new-town {
  background-image: url("images/p8.jpg");
}

.photo-haunted {
  background-image: url("images/p9.jpg");
}

.cta {
  text-align: center;
  background:
    linear-gradient(rgba(36, 74, 63, 0.78), rgba(36, 74, 63, 0.82)),
    url("https://images.unsplash.com/photo-1577466942910-df5c11c5a2e4?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.site-footer {
  background: #17211e;
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 22px;
  font-family: Arial, sans-serif;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: var(--white);
}

@media (max-width: 920px) {
  .hero-inner,
  .split,
  .why-zora-panel {
    grid-template-columns: 1fr;
  }

  .tour-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 70px 22px;
  }

  .section {
    padding: 66px 22px;
  }

  .why-zora-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .nav {
	  align-items: center;
	  flex-direction: column;
	  justify-content: center;
	  text-align: center;
	  padding: 12px 14px;
	  gap: 12px;
	}

  .logo {
    font-size: 1.28rem;
  }

.nav-links {
  width: 100%;
  justify-content: center;
  gap: 14px;
  padding-bottom: 2px;
  font-size: 0.86rem;
  flex-wrap: wrap;
}

  .nav-links .book-link {
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white) !important;
  }

  .hero-inner {
    padding: 54px 18px;
	  text-align: center;
	}

	.hero p {
	  margin-left: auto;
	  margin-right: auto;
	}

	.hero-actions {
	  justify-content: center;
    flex-direction: column;
	}

.landmark-tiles {
  margin: 0 auto;
}


  .button {
    width: 100%;
  }

.landmark-tiles {
  width: 100%;
  max-width: 420px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.landmark-tile,
.landmark-tile.large {
  width: 100%;
  min-height: 220px;
  grid-column: auto;
  border-radius: 18px;
}

.landmark-tile.large {
  grid-column: 1 / -1;
  min-height: 180px;
}

.landmark-tile:not(.large) {
  min-height: 140px;
}

  .why-zora-panel {
    gap: 24px;
  }

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

  .mini-tile,
  .mini-tile.tall,
  .mini-tile.wide {
    min-height: 130px;
    grid-row: auto;
    grid-column: auto;
  }

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

  .strip-tile {
    min-height: 115px;
  }

  .tour-card {
    min-height: 300px;
  }

  .quote-box,
  .step {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}