:root {
  --gold: #b89a4f;
  --gold-dark: #947a36;
  --ink: #2c2924;
  --muted: #746f66;
  --cream: #fbfaf7;
  --white: #ffffff;
  --line: #e7dfce;
  --max: 1180px;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(184, 154, 79, 0.2);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand img {
  width: 192px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  color: #4f4a43;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-dark);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(47, 45, 38, 0.12), rgba(47, 45, 38, 0.18)), var(--hero) center / cover no-repeat;
}

.hero-inner {
  max-width: 880px;
  padding: 86px 28px;
}

.eyebrow,
.spaced {
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero p {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(18px, 2vw, 25px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 70px;
  align-items: stretch;
}

.gold-panel {
  background: var(--gold);
  color: var(--white);
  padding: 70px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gold-panel h2 {
  margin: 0 0 46px;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.85;
}

.gold-panel p {
  margin: 0 0 22px;
}

.photo-frame {
  min-height: 520px;
  background: var(--image) center / cover no-repeat;
}

.callout-band {
  position: relative;
  min-height: 420px;
  background: var(--image) center / cover no-repeat;
  margin-top: 16px;
}

.callout-card {
  position: absolute;
  right: 70px;
  top: 70px;
  width: min(320px, calc(100% - 56px));
  background: var(--gold);
  color: var(--white);
  padding: 62px 42px;
  text-align: center;
}

.callout-card h2 {
  margin: 0 0 38px;
  font-size: 29px;
  font-weight: 300;
}

.callout-card p {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.18em;
  font-size: 19px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 28px;
  border: 1px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  background: transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.button:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.page-title {
  padding: 92px 28px 56px;
  text-align: center;
  background: var(--white);
}

.page-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
}

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

.text-block {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px;
}

.text-block h2,
.text-block h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.packages {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.price-list,
.details-list {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
}

.price-list dl {
  margin: 0;
}

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

.price-list dt {
  font-weight: 600;
}

.price-list dd {
  margin: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.details-list ul {
  margin: 0;
  padding-left: 19px;
}

.details-list li {
  margin: 0 0 10px;
}

.tour-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.tour-box h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 38px;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.contact-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffefa;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  max-width: var(--max);
  margin: 90px auto 36px;
  background: var(--gold);
  color: var(--white);
  padding: 42px 58px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 34px;
  align-items: center;
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: var(--white);
    padding: 22px 28px 30px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 470px;
  }

  .split,
  .packages,
  .contact-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .gold-panel {
    padding: 46px 30px;
  }

  .photo-frame {
    min-height: 360px;
  }

  .callout-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 220px auto 0;
  }

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

  .field-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 166px;
  }

  .section {
    padding: 48px 20px;
  }

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

  .eyebrow,
  .spaced {
    letter-spacing: 0.16em;
  }

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

  .site-footer {
    margin-top: 48px;
    padding: 32px 26px;
  }
}
