:root {
  --bg: #fffaf4;
  --paper: #ffffff;
  --ink: #322a25;
  --muted: #756b62;
  --line: #eadfd3;
  --peach: #e9b79f;
  --sage: #8d9a7c;
  --clay: #9d6752;
  --rose: #f6e3d9;
  --shadow: 0 24px 70px rgba(86, 57, 42, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(233, 183, 159, 0.28), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #fbf3ea 52%, #fffaf4 100%);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(234, 223, 211, 0.86);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 14px 42px rgba(86, 57, 42, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.footer a {
  transition: color 160ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: #9d6752;
  box-shadow: 0 16px 36px rgba(157, 103, 82, 0.24);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

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

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 68px;
  min-height: calc(100vh - 80px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.2vw, 82px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-facts span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.portrait-wrap {
  position: relative;
  margin: 0;
}

.portrait-wrap::before {
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: -1;
  border-radius: 34px;
  background: var(--rose);
  content: "";
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 0.84;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 54% 44%;
}

.intro {
  padding-top: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.72;
  text-align: center;
}

.intro p:last-child,
.method-copy p:last-child,
.booking-copy p:last-child,
.footer p {
  margin-bottom: 0;
}

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

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

.themes-grid article,
.method-list div,
.setting-grid div,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(86, 57, 42, 0.06);
}

.themes-grid article {
  min-height: 128px;
  padding: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 48px;
}

.method-copy {
  align-self: center;
}

.method-copy p {
  color: var(--muted);
  font-size: 18px;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-list div {
  padding: 24px;
}

.method-list p,
.setting-grid p,
.booking-copy p,
.form-note {
  color: var(--muted);
}

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

.setting-grid div {
  padding: 24px;
}

.setting-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.setting-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.3;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

label span {
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffaf6;
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 4px rgba(233, 183, 159, 0.22);
}

details {
  border-top: 1px solid var(--line);
  padding-top: 4px;
}

summary {
  padding: 12px 0;
  color: var(--clay);
  font-weight: 800;
  cursor: pointer;
}

details label {
  margin-top: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: -4px 0 0;
  font-size: 14px;
}

.form-result {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.form-result p {
  margin-bottom: 0;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--clay);
  font-weight: 800;
}

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

  .nav {
    display: none;
  }

  .hero,
  .method,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    min-height: auto;
  }

  .portrait-wrap {
    max-width: 520px;
  }

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

  .booking-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    padding: 10px 10px 10px 16px;
  }

  .logo {
    font-size: 25px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 62px 0;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 44px;
  }

  .lead,
  .intro {
    font-size: 18px;
  }

  .button {
    width: 100%;
    padding: 0 16px;
    text-align: center;
  }

  .portrait-wrap::before {
    inset: 14px -10px -14px 10px;
    border-radius: 24px;
  }

  .portrait-wrap img {
    border-width: 7px;
    border-radius: 24px;
  }

  .themes-grid,
  .setting-grid {
    grid-template-columns: 1fr;
  }

  .themes-grid article {
    min-height: auto;
  }

  .booking-form {
    padding: 20px;
  }

  .footer {
    flex-direction: column;
  }
}
