:root {
  color: #26322d;
  background: #f7efd8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #26322d;
  --muted: #66736c;
  --paper: #f7efd8;
  --cream: #fff8df;
  --forest: #173f2b;
  --gold: #d7a321;
  --line: rgba(38, 50, 45, 0.14);
  --shadow: 0 24px 60px rgba(23, 63, 43, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(38, 50, 45, 0.08);
  background: rgba(247, 239, 216, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff8df;
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

nav a,
footer a,
.button {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(46px, 8vw, 100px) clamp(18px, 5vw, 70px);
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  line-height: 1.02;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.45rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

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

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

.intro {
  max-width: 720px;
  font-size: 1.12rem;
}

.portrait {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 12px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background: linear-gradient(145deg, #f0c84b, #6f7f45 48%, #173f2b);
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.primary {
  background: var(--forest);
  color: #fff8df;
  box-shadow: 0 14px 34px rgba(23, 63, 43, 0.24);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--forest);
}

.section {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 5vw, 70px);
}

.cream {
  background: #fff8df;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.82);
  box-shadow: var(--shadow);
}

.cream .card {
  background: rgba(247, 239, 216, 0.62);
}

.copy {
  max-width: 920px;
  margin: 0 auto;
}

.copy ul {
  padding-left: 20px;
}

.booking {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero,
  .grid,
  .booking {
    grid-template-columns: 1fr;
  }

  .portrait {
    max-width: 440px;
  }
}

@media (max-width: 640px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    width: 100%;
  }
}
