:root {
  --ink: #23191c;
  --muted: #67575d;
  --paper: #fffaf4;
  --white: #ffffff;
  --rose: #8f1d35;
  --rose-dark: #5c1324;
  --marigold: #d99a28;
  --teal: #1f6b67;
  --sage: #e2ebe3;
  --line: rgba(35, 25, 28, 0.14);
  --shadow: 0 24px 80px rgba(35, 25, 28, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(26, 14, 17, 0.8), rgba(26, 14, 17, 0));
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 10px 34px rgba(35, 25, 28, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: currentColor;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--marigold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(620px, 86svh, 800px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--rose-dark);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=2200&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 14, 17, 0.82) 0%, rgba(26, 14, 17, 0.58) 44%, rgba(26, 14, 17, 0.28) 100%),
    linear-gradient(180deg, rgba(26, 14, 17, 0.2), rgba(26, 14, 17, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--marigold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.hire h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(64px, 12vw, 150px);
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(860px, 100%);
  margin: 54px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(26, 14, 17, 0.28);
}

.hero-stats strong {
  display: block;
  color: var(--marigold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

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

.intro {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro h2 {
  max-width: 560px;
  font-size: clamp(34px, 5vw, 68px);
}

.intro p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.services,
.packages,
.hire {
  padding: clamp(76px, 9vw, 120px) 0;
}

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

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2,
.hire h2,
.contact h2 {
  font-size: clamp(38px, 5.8vw, 76px);
}

.section-heading p:not(.section-kicker),
.hire-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 0.46fr);
  min-height: 292px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(35, 25, 28, 0.06);
}

.service-card img {
  height: 100%;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.service-card span,
.package-label {
  width: fit-content;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3,
.process-list h3,
.package-card h3 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: 0;
}

.service-card p,
.process-list p,
.package-card p,
.package-card li,
.site-footer p {
  color: var(--muted);
}

.service-card p {
  margin: 14px 0 0;
}

.process {
  padding: clamp(70px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.process-list article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(143, 29, 53, 0.25);
  border-radius: 50%;
  color: var(--rose);
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(35, 25, 28, 0.08);
}

.package-card.featured {
  color: var(--white);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  box-shadow: var(--shadow);
}

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

.package-card.featured .package-label {
  color: var(--marigold);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--marigold);
  content: "•";
}

.package-card a {
  margin-top: auto;
  color: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  padding: clamp(76px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--rose-dark);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(26, 14, 17, 0.72);
  font-weight: 800;
}

.hire {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.hire-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hire-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.contact {
  padding: clamp(76px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 24px;
  border-left: 4px solid var(--marigold);
  background: var(--paper);
}

.contact-panel a,
.contact-panel span {
  color: var(--ink);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.quote-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(143, 29, 53, 0.12);
}

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

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .service-grid,
  .package-grid,
  .process-list,
  .hire,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .process-list article {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 11px 18px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 20px;
  }

  .nav-toggle {
    position: relative;
    z-index: 36;
    display: block;
  }

  .site-header.nav-active {
    background: var(--paper);
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 34;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 28px;
    color: var(--ink);
    background: var(--paper);
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 28px, 1160px);
    padding-bottom: 34px;
  }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 30px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-stats div {
    flex: 1 1 170px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
  }

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

  .service-card img {
    height: 230px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-grid figure:first-child {
    grid-row: auto;
  }

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

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

@media (max-width: 460px) {
  .hero h1 {
    font-size: clamp(56px, 18vw, 84px);
  }

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

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .section-heading h2,
  .hire h2,
  .contact h2,
  .intro h2 {
    font-size: 36px;
  }

  .service-card h3,
  .process-list h3,
  .package-card h3 {
    font-size: 25px;
  }
}
