:root {
  --ink: #1b2723;
  --muted: #66746d;
  --paper: #fbf7ef;
  --panel: #fffdf8;
  --line: #e7dcc8;
  --green: #0d6b50;
  --green-dark: #07392f;
  --green-deep: #062821;
  --mint: #d9eee7;
  --mint-soft: #edf7f2;
  --gold: #c99a3b;
  --amber: #f18700;
  --shadow: 0 22px 60px rgba(22, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid rgba(231, 220, 200, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201, 154, 59, 0.45);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #31403b;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  padding: 10px 0;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--green);
  color: white;
}

.button {
  padding: 12px 20px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(13, 107, 80, 0.25);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.94);
  color: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.38fr);
  align-items: end;
  gap: clamp(24px, 5vw, 68px);
  overflow: hidden;
  padding: 140px clamp(18px, 4vw, 58px) 40px;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 28, 24, 0.86) 0%, rgba(6, 40, 33, 0.63) 48%, rgba(6, 40, 33, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 28, 24, 0.84) 0%, rgba(3, 28, 24, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.8rem, 6.1vw, 5.8rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.hero-card {
  position: relative;
  z-index: 2;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero-card div {
  padding: 20px;
  background: var(--green-dark);
  color: white;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
}

.hero-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(900px, 100%);
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.hero-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 1px clamp(18px, 4vw, 58px);
  background: var(--green-dark);
}

.trust-band span {
  display: grid;
  min-height: 74px;
  place-items: center;
  background: #0d3029;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 880px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.07;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro {
  background: var(--paper);
}

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

.intro-grid article,
.tour-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.intro-grid article {
  min-height: 230px;
  padding: 28px;
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
}

.intro-grid h3,
.tour-card h3 {
  margin: 22px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.intro-grid p,
.tour-card p {
  margin: 0;
  color: var(--muted);
}

.brochures {
  background: linear-gradient(180deg, #ffffff 0%, var(--mint-soft) 100%);
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.brochure-card {
  display: grid;
  gap: 18px;
}

.brochure-preview {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(7, 57, 47, 0.2);
  border-radius: 8px;
  background: #e7f1eb;
  box-shadow: var(--shadow);
}

.brochure-preview img {
  width: 100%;
  height: auto;
}

.brochure-copy {
  padding: 0 6px;
}

.brochure-copy span,
.tour-card.featured span {
  color: #9b5a18;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brochure-copy h3 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.brochure-copy p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tours {
  background: #f2eadb;
}

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

.tour-card {
  min-height: 230px;
  padding: 26px;
}

.tour-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) 1fr;
  gap: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.tour-card.featured div {
  padding: 30px 28px 30px 0;
  align-self: center;
}

.tour-card.featured h3 {
  margin-top: 12px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:last-child {
  grid-column: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--green-dark);
  color: white;
}

.contact .eyebrow {
  color: #e5bf75;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-lines a {
  width: fit-content;
  color: white;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #263630;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d2c4;
  border-radius: 8px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 26px clamp(18px, 4vw, 58px);
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.78);
}

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

.footer strong,
.footer a {
  color: white;
}

.footer a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: grid;
  gap: 12px;
}

.float-button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 35px rgba(9, 58, 52, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-button.phone {
  background: var(--green);
}

.float-button:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 45px rgba(9, 58, 52, 0.34);
}

.float-button svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 88vh;
  }

  .hero-card {
    display: none;
  }

  .hero-panel,
  .intro-grid,
  .brochure-grid {
    grid-template-columns: 1fr;
  }

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

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

  .tour-card.featured {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:last-child {
    grid-column: auto;
    grid-row: auto;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand {
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand strong {
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 94vh;
    padding: 112px 16px 24px;
  }

  .hero-content,
  .hero-panel {
    width: 100%;
    max-width: 360px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.1rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero .eyebrow {
    max-width: 30ch;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero-panel {
    margin-top: 38px;
  }

  .section {
    padding: 58px 16px;
  }

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

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

  .tour-card.featured img {
    min-height: 250px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }

  .footer {
    padding: 24px 16px;
  }

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 16px;
  }

  .trust-band span {
    min-height: 56px;
    font-size: 0.9rem;
  }

  .floating-actions {
    right: 18px;
    bottom: 18px;
  }

  .float-button {
    width: 54px;
    height: 54px;
  }
}
