:root {
  --paper: #f7f1e7;
  --white: #fffdf8;
  --ink: #1f2525;
  --muted: #5f6865;
  --teal: #0f5b57;
  --teal-dark: #0a3e3b;
  --gold: #b9812f;
  --rust: #9b3f24;
  --line: #e0d6c7;
  --shadow: 0 18px 50px rgba(31, 37, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brand span {
  font-size: clamp(1rem, 2vw, 1.25rem);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

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

.nav a:hover,
.site-footer a:hover {
  color: var(--rust);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--teal);
}

.header-action:hover,
.button.primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--teal-dark);
  background: transparent;
  border: 1px solid var(--teal);
}

.button.secondary:hover {
  border-color: var(--rust);
  color: var(--rust);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.95), rgba(247, 241, 231, 0.74)),
    radial-gradient(circle at 20% 20%, rgba(185, 129, 47, 0.18), transparent 34%),
    var(--paper);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.5vw, 1.6rem);
}

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

.hero-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.35);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.section-alt {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.book-feature img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 37, 37, 0.18);
}

.book-feature p,
.service-card p,
.about-copy p,
.contact p {
  color: var(--muted);
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 8px 0;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

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

.service-card {
  min-height: 210px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-note {
  max-width: 880px;
  margin: 24px auto 0;
  padding: 18px 22px;
  color: var(--teal-dark);
  background: #e8f0ec;
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.about,
.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 6vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
}

.about-copy,
.contact-panel {
  font-size: 1.08rem;
}

.contact-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel a {
  color: var(--teal-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #d7d0c5;
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

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

  .hero,
  .book-feature,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    min-height: 260px;
  }

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

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span {
    white-space: normal;
  }

  .header-action {
    width: 100%;
  }

  .nav {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

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