:root {
  --ink: #22201f;
  --muted: #6b625c;
  --paper: #fffaf4;
  --surface: #ffffff;
  --soft: #f2ede5;
  --line: #ded6cb;
  --teal: #2f8d8a;
  --teal-dark: #176866;
  --coral: #e9785f;
  --gold: #f2bd57;
  --shadow: 0 18px 60px rgba(34, 32, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(222, 214, 203, 0.7);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
}

.nav-links {
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  isolation: isolate;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  z-index: -2;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 18, 17, 0.76), rgba(19, 18, 17, 0.46) 44%, rgba(19, 18, 17, 0.08)),
    linear-gradient(180deg, rgba(19, 18, 17, 0.12), rgba(19, 18, 17, 0.35));
}

.hero-content {
  width: min(680px, calc(100% - 36px));
  align-self: center;
  margin-left: clamp(18px, 6vw, 80px);
  padding: 76px 0 112px;
  color: #ffffff;
}

.eyebrow,
.price-label,
.summary-label {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 10px 28px rgba(47, 141, 138, 0.28);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px);
}

.section-muted {
  background: var(--soft);
}

.section-heading,
.section-copy {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.price-card p,
.summary-panel p,
.process-list span,
.intro-grid span {
  color: var(--muted);
}

.intro-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro-grid {
  display: grid;
  gap: 14px;
}

.intro-grid div,
.process-list li {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.price-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(34, 32, 31, 0.06);
}

.price-card.featured {
  border-color: rgba(47, 141, 138, 0.5);
  box-shadow: var(--shadow);
}

.price-card strong {
  font-size: 2.45rem;
  line-height: 1;
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.addon-list span {
  padding: 10px 14px;
  color: var(--teal-dark);
  background: #ffffff;
  border: 1px solid rgba(47, 141, 138, 0.24);
  border-radius: 8px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #f7f1e9;
  border: 0;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
  transform: scale(1.03);
}

.gallery-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-weight: 700;
}

.lightbox {
  width: min(1120px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 18px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(20, 18, 17, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  background: #f7f1e9;
  border-radius: 8px;
}

.lightbox p {
  margin: 12px 42px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--soft);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.checkout-panel,
.summary-panel,
.contact-form {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(34, 32, 31, 0.06);
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  font-weight: 800;
}

.checkout-panel label,
.checkbox-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.checkout-panel input,
.contact-form input,
.contact-form textarea {
  accent-color: var(--teal);
}

.checkout-panel .button {
  width: 100%;
  margin-top: 18px;
}

.summary-panel h3 {
  font-size: 1.8rem;
}

.summary-panel dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.summary-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.summary-panel dt {
  color: var(--muted);
}

.summary-panel dd {
  margin: 0;
  font-weight: 800;
}

.summary-total {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  padding-top: 56px;
  counter-increment: steps;
}

.process-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: #1f2222;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 980px) {
  .pricing-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .payment-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(19, 18, 17, 0.36), rgba(19, 18, 17, 0.82)),
      linear-gradient(90deg, rgba(19, 18, 17, 0.46), rgba(19, 18, 17, 0.08));
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 70px;
  }

  .pricing-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 220px;
  }

  .checkout-panel,
  .summary-panel,
  .contact-form {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .button,
  .hero-actions {
    width: 100%;
  }

  .checkout-panel label,
  .checkbox-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checkout-panel label strong,
  .checkbox-row strong {
    grid-column: 2;
  }
}
