:root {
  --sunrise-ivory: #fff7ec;
  --sunrise-sand: #f8e7c0;
  --sunrise-gold: #e8c56a;
  --rose-copper: #a1593b;
  --antique-ember: #8c4a32;
  --deep-plum: #3b1d21;
  --warm-brown: #6e302c;
  --ink: #2b1719;
  --muted: #6e4238;
  --surface: rgba(255, 247, 236, 0.84);
  --line: rgba(161, 89, 59, 0.24);
  --shadow: 0 28px 90px rgba(140, 74, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 197, 106, 0.42), transparent 27%),
    radial-gradient(circle at 92% 18%, rgba(161, 89, 59, 0.17), transparent 32%),
    linear-gradient(135deg, var(--sunrise-ivory), var(--sunrise-sand) 48%, var(--sunrise-ivory));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-linear-gradient(45deg, transparent 0 38px, var(--sunrise-gold) 39px 40px, transparent 41px 78px),
    radial-gradient(circle at 50% 80%, rgba(255, 247, 236, 0.85), transparent 38%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  padding: 10px 14px;
  background: var(--deep-plum);
  color: var(--sunrise-ivory);
  z-index: 100;
}

.skip-link:focus {
  top: 18px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 247, 236, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(140, 74, 50, 0.12);
}

.brand {
  margin-right: auto;
  text-decoration: none;
  font-weight: 900;
  color: var(--deep-plum);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(140, 74, 50, 0.16);
}

nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--warm-brown);
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero-shell {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 24px;
  padding: 54px 0 24px;
}

.hero-copy,
.section-block,
.booking-shell,
.identity-strip article {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-copy {
  border-radius: 34px;
  padding: clamp(26px, 4.4vw, 50px);
  width: 100%;
  background:
    linear-gradient(145deg, rgba(255, 247, 236, 0.9), rgba(248, 231, 192, 0.68)),
    radial-gradient(circle at 90% 10%, rgba(232, 197, 106, 0.28), transparent 32%);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: min(42vw, 420px);
  aspect-ratio: 1;
  right: -120px;
  bottom: -140px;
  border-radius: 999px;
  border: 1px solid var(--sunrise-gold);
  box-shadow:
    0 0 0 34px rgba(232, 197, 106, 0.12),
    0 0 0 72px rgba(161, 89, 59, 0.08),
    0 0 0 112px rgba(232, 197, 106, 0.08);
  pointer-events: none;
}

.brand-art-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-copper);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
}

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

h1,
h2,
h3 {
  color: var(--deep-plum);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.06;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
  margin-bottom: 18px;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.28rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-line {
  font-size: 1.25rem;
  color: var(--warm-brown);
}

.hero-actions,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-summary {
  align-self: stretch;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  margin: 0;
  min-height: 420px;
  background:
    linear-gradient(145deg, rgba(255, 247, 236, 0.86), rgba(248, 231, 192, 0.68)),
    radial-gradient(circle at 70% 20%, rgba(232, 197, 106, 0.24), transparent 38%);
}

.hero-summary img {
  width: min(210px, 70%);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(140, 74, 50, 0.14);
}

.hero-summary h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 0;
}

.hero-summary p:last-child {
  margin-bottom: 0;
}

.button,
button,
.contact-list a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button.primary,
.booking-form button {
  background: linear-gradient(135deg, var(--deep-plum), var(--warm-brown));
  color: var(--sunrise-ivory);
  box-shadow: 0 18px 46px rgba(59, 29, 33, 0.24);
}

.button.ghost,
.contact-list a {
  color: var(--deep-plum);
  background: rgba(255, 247, 236, 0.66);
  border: 1px solid var(--line);
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 28px;
}

.identity-strip article {
  border-radius: 24px;
  padding: 22px;
}

.identity-strip span,
.price-stack span {
  display: block;
  color: var(--rose-copper);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.identity-strip strong,
.price-stack strong {
  display: block;
  color: var(--deep-plum);
  font-size: 1.35rem;
}

.section-block,
.card,
.booking-shell {
  border-radius: 34px;
  padding: clamp(24px, 5vw, 44px);
  margin: 28px 0;
}

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.section-heading {
  max-width: 720px;
}

.trust-panel h2 {
  max-width: 920px;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 26px;
  align-items: center;
}

.photo-placeholder,
.brand-art-panel {
  min-height: 280px;
  border: 1px dashed rgba(161, 89, 59, 0.44);
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 247, 236, 0.62), rgba(248, 231, 192, 0.72)),
    radial-gradient(circle at 50% 32%, rgba(232, 197, 106, 0.25), transparent 40%);
  color: var(--warm-brown);
  font-weight: 900;
  text-align: center;
}

.brand-art-panel {
  border-style: solid;
  padding: 18px;
  overflow: hidden;
}

.brand-art-panel img {
  border-radius: 18px;
}

.guide-grid,
.prep-grid,
.prep-list,
.simple-grid,
.price-stack,
.grid,
.price-grid,
.steps,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.guide-card,
.prep-grid article,
.prep-list article,
.simple-grid article,
.price-stack article,
.grid article,
.price-grid article,
.steps div,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 247, 236, 0.62);
}

.simple-grid article {
  border-radius: 18px;
  padding: 18px 20px;
}

.simple-grid p {
  margin: 0;
}

.prep-list article {
  border-radius: 18px;
  padding: 22px;
}

.prep-list h3 {
  margin-bottom: 12px;
}

.prep-list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.prep-list li + li {
  margin-top: 4px;
}

.card-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: var(--sunrise-gold);
  color: var(--deep-plum);
  font-weight: 900;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.price-stack {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

.service-section {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 247, 236, 0.62);
}

.service-section-large {
  background:
    linear-gradient(145deg, rgba(255, 247, 236, 0.8), rgba(248, 231, 192, 0.64)),
    radial-gradient(circle at 92% 14%, rgba(232, 197, 106, 0.24), transparent 34%);
}

.service-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-pill-grid span,
.steps span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(232, 197, 106, 0.42);
  color: var(--deep-plum);
  font-weight: 900;
}

.service-price {
  display: inline-flex;
  margin-top: 18px;
  font-size: 1.25rem;
  color: var(--deep-plum);
}

.price-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--deep-plum);
  font-size: 1.8rem;
}

.price-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--sunrise-gold);
  background: rgba(255, 247, 236, 0.54);
  border-radius: 14px;
  font-weight: 800;
}

.process-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sunrise-gold);
  color: var(--deep-plum);
  font-weight: 900;
  margin-bottom: 16px;
}

.booking-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  margin-top: 22px;
}

.contact-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 247, 236, 0.62);
}

.contact-note p {
  margin: 0;
}

.contact-note p + p {
  margin-top: 8px;
}

.contact-list a {
  width: 100%;
  justify-content: center;
}

.manual-booking {
  display: grid;
  gap: 18px;
}

.manual-booking article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 247, 236, 0.62);
}

.manual-booking p {
  margin-bottom: 0;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  color: var(--deep-plum);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--deep-plum);
  background: rgba(255, 247, 236, 0.78);
}

textarea {
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 28px;
  font-weight: 900;
}

.service-rule {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(232, 197, 106, 0.26);
  color: var(--warm-brown);
  font-weight: 900;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  margin-top: 12px;
  background: rgba(255, 247, 236, 0.62);
}

.faq summary {
  cursor: pointer;
  color: var(--deep-plum);
  font-weight: 900;
}

.faq details p {
  margin: 12px 0 0;
}

.audit-block {
  display: none;
}

.audit-report {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.audit-report p {
  margin: 0;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255, 247, 236, 0.68);
}

.footer {
  width: min(1180px, calc(100% - 28px));
  margin: 34px auto;
  color: var(--muted);
  text-align: center;
}

.footer-contact {
  margin: 8px auto 12px;
  font-weight: 900;
  color: var(--warm-brown);
}

.thank-you-shell {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 54px 0 24px;
}

.thank-you-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(26px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 247, 236, 0.9), rgba(248, 231, 192, 0.68)),
    radial-gradient(circle at 90% 10%, rgba(232, 197, 106, 0.28), transparent 32%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.thank-you-card::after {
  content: "";
  position: absolute;
  width: min(42vw, 420px);
  aspect-ratio: 1;
  right: -120px;
  bottom: -140px;
  border-radius: 999px;
  border: 1px solid var(--sunrise-gold);
  box-shadow:
    0 0 0 34px rgba(232, 197, 106, 0.12),
    0 0 0 72px rgba(161, 89, 59, 0.08),
    0 0 0 112px rgba(232, 197, 106, 0.08);
  pointer-events: none;
}

.thank-you-card > * {
  position: relative;
  z-index: 1;
}

.thank-you-logo {
  width: min(180px, 44vw);
  display: block;
  margin: 0 0 20px;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(140, 74, 50, 0.14);
}

@media (max-width: 860px) {
  .topbar,
  .hero-shell,
  .booking-shell,
  .split-block {
    display: block;
  }

  nav {
    margin-top: 12px;
  }

  .hero-copy {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .hero-line {
    font-size: 1.08rem;
  }

  .hero-summary {
    min-height: 0;
    justify-items: center;
    text-align: center;
  }

  .hero-summary img {
    width: min(170px, 60%);
  }

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

  .brand span {
    font-size: 0.92rem;
  }

  .identity-strip,
  .guide-grid,
  .prep-grid,
  .prep-list,
  .simple-grid,
  .price-stack,
  .grid,
  .price-grid,
  .price-grid-three,
  .steps,
  .process-grid,
  .process-grid-four,
  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .photo-placeholder,
  .brand-art-panel {
    min-height: 200px;
  }

  .booking-form .full {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
