:root {
  color-scheme: light;
  --ink: #171512;
  --muted: #756f67;
  --paper: #fbfaf7;
  --ivory: #f2eee6;
  --line: #ded5c7;
  --night: #11100e;
  --gold: #a9824d;
  --sage: #7d876f;
  --rose: #a46f65;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(31, 24, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(222, 213, 199, 0.75);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav {
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 42px;
  color: var(--white);
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.72) 0%, rgba(17, 16, 14, 0.34) 42%, rgba(17, 16, 14, 0.06) 100%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.24) 0%, rgba(17, 16, 14, 0.14) 52%, rgba(17, 16, 14, 0.72) 100%),
    url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=2200&q=84") center / cover;
  transform: scale(1.01);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 830px;
}

.hero h1,
.section-intro h2,
.experience-copy h2,
.statement p,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.92;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.hero-note {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

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

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.hero-note span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.section {
  padding: clamp(74px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.section-intro {
  max-width: 1160px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: start;
}

.section-intro.compact {
  max-width: 980px;
}

.section-intro > span,
.experience-copy > span {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  padding-top: 12px;
}

.section-intro h2,
.experience-copy h2,
.contact h2 {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 0.98;
}

.section-intro p,
.experience-copy p,
.contact p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.gallery-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 315px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.statement {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 8vw, 150px);
  background: var(--night);
  color: var(--ivory);
}

.statement p {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--ivory);
}

.image-band {
  min-height: 720px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience-copy {
  max-width: 690px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.process-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.process-list strong {
  color: var(--gold);
  font-size: 13px;
}

.process-list h3 {
  margin: 0;
  font-size: 18px;
}

.process-list p {
  grid-column: 2;
  margin-top: 8px;
  font-size: 15px;
}

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

.package-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.package-card.featured {
  background: var(--night);
  color: var(--white);
  border-color: var(--night);
  transform: translateY(-16px);
}

.package-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.package-card p {
  margin: 16px 0 24px;
  color: var(--muted);
  line-height: 1.55;
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-top: 12px;
  border-top: 1px solid rgba(125, 135, 111, 0.3);
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 7vw, 90px);
  background: #e7e2d8;
}

.quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
}

.quote span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 800;
}

.proof-list {
  display: grid;
  gap: 14px;
  align-content: center;
}

.proof-list article {
  padding: 24px;
  border: 1px solid rgba(23, 21, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
}

.proof-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  max-width: 720px;
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 90px);
  padding: clamp(74px, 9vw, 132px) clamp(18px, 5vw, 72px);
  background: var(--night);
  color: var(--white);
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 11px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

select option {
  color: var(--ink);
}

.contact-form .button.primary {
  border: 0;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--night);
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer span:first-child {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
  }

  .section-intro,
  .experience,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-auto-rows: 360px;
  }

  .gallery-card.tall {
    grid-row: span 1;
  }

  .image-band {
    min-height: 460px;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 20px;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 88svh;
    padding: 110px 16px 28px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

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

  .section,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-grid {
    grid-auto-rows: 300px;
  }

  .package-card,
  .proof-list article,
  .contact-form {
    padding: 20px;
  }

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