:root {
  --ink: #0e1114;
  --ink-soft: #5c6570;
  --fog: #f3f1ec;
  --fog-deep: #e6e2d9;
  --line: rgba(14, 17, 20, 0.1);
  --ember: #c4452d;
  --ember-deep: #9e3421;
  --moss: #2f5d50;
  --header-h: 5.25rem;
  --page-pad: clamp(1rem, 4vw, 3.5rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "IBM Plex Serif", Georgia, serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --touch: 2.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  background:
    radial-gradient(900px 480px at 85% 8%, rgba(196, 69, 45, 0.08), transparent 55%),
    radial-gradient(700px 420px at 0% 35%, rgba(47, 93, 80, 0.1), transparent 50%),
    linear-gradient(180deg, #f7f5f1 0%, var(--fog) 45%, #ebe7df 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--page-pad);
  padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
  isolation: isolate;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  max-width: min(18rem, 42vw);
  color: #fff;
}

.site-logo {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(14, 17, 20, 0.18);
}

.site-brand-text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.site-brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.site-brand-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.site-header.is-scrolled .site-brand,
.site-header.is-solid .site-brand {
  color: var(--ink);
}

.site-header.is-scrolled .site-brand-tag,
.site-header.is-solid .site-brand-tag {
  color: var(--ink-soft);
}

.site-header.is-dark .site-brand {
  color: #fff;
}

.site-header.is-dark .site-brand-tag {
  color: rgba(243, 241, 236, 0.55);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(243, 241, 236, 0.96);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(14, 17, 20, 0.06);
}

.site-header.is-scrolled .nav a,
.site-header.is-solid .nav a {
  color: var(--ink-soft);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-solid .nav a:hover,
.site-header.is-scrolled .nav-cta,
.site-header.is-solid .nav-cta {
  color: var(--ink);
}

.site-header.is-dark {
  background: rgba(18, 22, 26, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header.is-dark .nav a {
  color: rgba(243, 241, 236, 0.78);
}

.site-header.is-dark .nav a:hover,
.site-header.is-dark .nav-cta {
  color: #fff;
}

.nav-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 1.35rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.site-header.is-solid .nav a[aria-current="page"],
.site-header.is-scrolled .nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  color: #fff !important;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-solid .nav-cta {
  border-bottom-color: var(--ember);
  color: var(--ember) !important;
}

.site-header.is-dark .nav-cta {
  border-bottom-color: #e8a090;
  color: #e8a090 !important;
}

.nav-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem 0.75rem;
  width: 100%;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-categories a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  min-height: 1.85rem;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-categories a:hover {
  color: #fff;
}

.nav-categories a[aria-current="page"] {
  color: #fff;
}

.site-header.is-scrolled .nav-categories,
.site-header.is-solid .nav-categories {
  border-top-color: var(--line);
}

.site-header.is-scrolled .nav-categories a,
.site-header.is-solid .nav-categories a {
  color: var(--ink-soft);
}

.site-header.is-scrolled .nav-categories a:hover,
.site-header.is-solid .nav-categories a:hover,
.site-header.is-scrolled .nav-categories a[aria-current="page"],
.site-header.is-solid .nav-categories a[aria-current="page"] {
  color: var(--ink);
}

.site-header.is-dark .nav-categories {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.site-header.is-dark .nav-categories a {
  color: rgba(243, 241, 236, 0.55);
}

.site-header.is-dark .nav-categories a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f7f5f1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.1);
  animation: heroZoom 14s var(--ease) forwards;
  filter: saturate(0.85) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(14, 17, 20, 0.82) 0%, rgba(14, 17, 20, 0.45) 42%, rgba(14, 17, 20, 0.2) 62%, rgba(14, 17, 20, 0.7) 100%),
    linear-gradient(180deg, rgba(14, 17, 20, 0.25) 0%, rgba(14, 17, 20, 0.15) 40%, rgba(14, 17, 20, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: calc(var(--header-h) + 2.5rem) var(--page-pad) clamp(3rem, 8vw, 6.5rem);
}

.brand-title {
  margin: 0 0 1.35rem;
  font-size: clamp(2.6rem, 9vw, 6.4rem);
  font-weight: 700;
  display: grid;
  gap: 0.08em;
  animation: rise 1s var(--ease) both;
}

.brand-title span:last-child {
  color: transparent;
  background: linear-gradient(105deg, #f7f5f1 20%, #e8b4a4 55%, #f7f5f1 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: rise 1s var(--ease) 0.08s both, shimmer 8s ease-in-out infinite;
}

.lead {
  margin: 0 0 2rem;
  max-width: 34ch;
  color: rgba(247, 245, 241, 0.82);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 300;
  animation: rise 1s var(--ease) 0.18s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation: rise 1s var(--ease) 0.28s both;
}

.scroll-hint {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.5rem);
  bottom: 2rem;
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.4rem;
  z-index: 2;
  animation: rise 1s var(--ease) 0.45s both;
}

.scroll-hint span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  animation: drip 1.6s var(--ease) infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0.8rem 1.35rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--ember);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ember-deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: clamp(5rem, 11vw, 8rem) 0;
  position: relative;
}

.section-inner {
  width: min(1120px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
}

.page-inner .section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.page-main {
  padding-top: var(--header-h);
  min-height: calc(100svh - 4.5rem);
}

.page-contact .page-main {
  min-height: calc(100svh - var(--header-h));
}

.page-contact .site-footer {
  background: #0e1114;
}

.package-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
}

.package-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.65rem 0.95rem;
  min-height: var(--touch);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.package-catalog {
  margin-top: 0.5rem;
}

.package-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-item {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0;
  display: grid;
  gap: 0;
  align-content: start;
  overflow: hidden;
  min-height: 0;
}

.package-item.is-hidden {
  display: none;
}

.package-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--fog-deep);
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.package-item:hover .package-media img {
  transform: scale(1.04);
}

.package-body {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 1.25rem 1.3rem 1.4rem;
}

.package-cat {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}

.package-item h2,
.package-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: none;
  color: var(--ink);
}

.package-price {
  margin: 0.15rem 0 0.55rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ember);
}

.package-item .btn {
  justify-self: start;
  min-height: 2.55rem;
  padding: 0.55rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.btn-dark {
  color: var(--ink) !important;
  border-color: rgba(14, 17, 20, 0.25) !important;
}

.btn-dark:hover {
  background: rgba(14, 17, 20, 0.05) !important;
}

.page-next {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin: 3rem 0 0;
}

.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.blog-list li {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.blog-date {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
}

.blog-list h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  max-width: 22ch;
}

.blog-list p:last-child {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
  font-weight: 300;
}

.section h1,
.section h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 5vw, 3.35rem);
  max-width: 12ch;
}

.service-list h2,
.steps h2 {
  font-size: 1.2rem;
  max-width: none;
  margin: 0 0 0.5rem;
}

.steps h2 {
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}

.section-lead {
  margin: 0;
  max-width: 36ch;
  color: var(--ink-soft);
  font-weight: 300;
}

.categories {
  background:
    linear-gradient(180deg, rgba(196, 69, 45, 0.05), transparent 50%),
    transparent;
}

.category-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
}

.category-grid > li {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.5rem 0 1.75rem;
  border-top: 2px solid var(--ink);
}

.category-mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--moss);
}

.category-grid h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  letter-spacing: -0.03em;
  max-width: none;
}

.category-grid > li > p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 34ch;
  line-height: 1.6;
}

.category-tags {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
}

.category-tags li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.28rem 0.55rem;
  border: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(47, 93, 80, 0.08);
}

.category-link {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1px;
  width: fit-content;
}

.category-link:hover {
  color: var(--ember-deep);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}

.service-list li:hover {
  transform: translateX(6px);
}

.service-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--moss);
  padding-top: 0.25rem;
}

.service-list h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.service-list p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 32ch;
  font-weight: 300;
}

.process {
  background:
    linear-gradient(180deg, rgba(47, 93, 80, 0.07), transparent 55%),
    transparent;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 2rem 0 0;
  border-top: 2px solid var(--ink);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -2.6rem;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ember);
  letter-spacing: 0.06em;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 28ch;
}

.capability-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: stretch;
}

.capability-visual {
  margin: 0;
  overflow: hidden;
  min-height: 380px;
  position: relative;
}

.capability-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(14, 17, 20, 0.35));
  pointer-events: none;
}

.capability-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1.4s var(--ease);
}

.capability-visual:hover img {
  transform: scale(1.05);
}

.capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: center;
  gap: 0;
}

.capability-list li {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.contact {
  background:
    linear-gradient(145deg, #1a2421 0%, #12161a 48%, #2a1a16 100%);
  color: var(--fog);
}

.contact .eyebrow {
  color: #e8a090;
}

.contact .section-lead {
  color: rgba(243, 241, 236, 0.68);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.35rem;
  margin-bottom: 1.35rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.55);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(243, 241, 236, 0.28);
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0.85rem 0;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 241, 236, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #e8a090;
}

.contact-form .btn-primary {
  justify-self: start;
  margin-top: 0.5rem;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.4em;
  color: #e8a090;
  font-weight: 500;
}

.direct-mail {
  margin: 0;
  color: rgba(243, 241, 236, 0.62);
  font-weight: 300;
}

.direct-mail a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.studio-address {
  margin: 1rem 0 0;
  color: rgba(243, 241, 236, 0.62);
  font-weight: 300;
  line-height: 1.55;
  max-width: 28ch;
}

.faqs {
  background:
    radial-gradient(700px 380px at 100% 0%, rgba(47, 93, 80, 0.08), transparent 55%),
    transparent;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 46rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ember);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0 0 1.2rem;
  max-width: 40ch;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.65;
}

.page-home .contact .faq-list,
.page-contact .contact .faq-list {
  margin-top: 0.5rem;
  max-width: none;
}

.faq-block {
  margin-top: 2.75rem;
  padding-top: 0.5rem;
}

.faq-block .section-head {
  margin-bottom: 1.5rem;
}

.page-home .contact .faq-list details,
.page-contact .contact .faq-list details {
  border-top-color: rgba(243, 241, 236, 0.14);
}

.page-home .contact .faq-list details:last-child,
.page-contact .contact .faq-list details:last-child {
  border-bottom-color: rgba(243, 241, 236, 0.14);
}

.page-home .contact .faq-list summary,
.page-contact .contact .faq-list summary {
  color: #fff;
}

.page-home .contact .faq-list summary::after,
.page-contact .contact .faq-list summary::after {
  color: #e8a090;
}

.page-home .contact .faq-list details p,
.page-contact .contact .faq-list details p {
  color: rgba(243, 241, 236, 0.68);
}

.site-footer {
  padding: 3.75rem var(--page-pad) 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #0e1114;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  width: min(1120px, 100%);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 0.9rem;
}

.footer-brand .footer-logo img {
  height: 3.6rem;
  width: auto;
  display: block;
  border-radius: 0.65rem;
}

.footer-brand p {
  margin: 0;
  max-width: 260px;
  font-size: 0.82rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.site-footer ul a:hover {
  color: #e8a090;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.fc-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.fc-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}

.fc-val {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.fc-val a {
  color: #e8a090;
}

.fc-val a:hover {
  color: #fff;
}

.footer-legal-bar {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #e8a090;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: lowercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-btn:hover {
  background: var(--ember);
  color: #fff;
}

.footer-bottom {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 0 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.policy-inner {
  width: min(760px, calc(100% - (var(--page-pad) * 2)));
}

.policy-body {
  display: grid;
  gap: 0.35rem;
}

.policy-body h2 {
  margin: 1.75rem 0 0.55rem;
  font-size: 1.15rem;
  max-width: none;
}

.policy-body p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
}

.policy-body a {
  color: var(--ember);
  border-bottom: 1px solid rgba(196, 69, 45, 0.35);
}

@media (max-width: 720px) {
  :root {
    --header-h: 4.5rem;
    --page-pad: 1rem;
  }

  .site-header {
    min-height: var(--header-h);
    padding: 0.65rem var(--page-pad);
    align-items: flex-start;
  }

  .site-brand {
    max-width: calc(100% - 2.5rem);
  }

  .site-logo {
    width: 2.4rem;
    height: 2.4rem;
  }

  .site-brand-name {
    font-size: 0.82rem;
  }

  .site-brand-tag {
    font-size: 0.55rem;
  }

  .nav-wrap {
    display: block;
    flex: 0 0 auto;
    width: auto;
    max-width: calc(100vw - 4rem);
    overflow: visible;
  }

  .nav,
  .nav-categories {
    position: absolute;
    right: 0;
    top: 3.15rem;
    width: min(16rem, calc(100vw - 2rem));
    padding: 0.45rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(243, 241, 236, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(14, 17, 20, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-wrap.is-open .nav,
  .nav-wrap.is-open .nav-categories,
  .nav-wrap:hover .nav,
  .nav-wrap:focus-within .nav,
  .nav-wrap:hover .nav-categories,
  .nav-wrap:focus-within .nav-categories {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a,
  .nav-categories a {
    min-height: var(--touch);
    padding: 0.55rem 0.1rem;
    color: var(--ink-soft) !important;
    border-bottom: 1px solid var(--line);
  }

  .nav-categories {
    top: calc(3.15rem + 14.5rem);
    border-top: 0;
  }

  .nav-categories a {
    font-size: 0.68rem;
  }

  .nav-wrap::before {
    content: "";
    display: block;
    width: 1.35rem;
    height: 1rem;
    margin: 0.85rem 0.7rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: inset 0 4px 0 transparent;
    cursor: pointer;
  }

  .nav-wrap::after {
    content: "";
    position: absolute;
    right: 0.7rem;
    top: 1.52rem;
    width: 1.35rem;
    border-top: 2px solid currentColor;
    pointer-events: none;
  }

  .site-header:not(.is-scrolled):not(.is-solid) .nav-wrap::before,
  .site-header.is-dark .nav-wrap::before {
    color: #fff;
  }
}


section[id],
#top {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.page-home .contact {
  padding-top: clamp(5rem, 11vw, 8rem);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes drip {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* —— Laptop / large tablet —— */
@media (max-width: 1100px) {
  .site-brand-name {
    font-size: 0.88rem;
  }

  .nav {
    gap: 0.1rem 1rem;
  }

  .nav a {
    font-size: 0.82rem;
  }

  .nav-categories {
    gap: 0.15rem 0.55rem;
  }

  .nav-categories a {
    font-size: 0.66rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Tablet & phone: compact always-visible header —— */
@media (max-width: 900px) {
  :root {
    --header-h: 7.25rem;
  }

  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.55rem 0.75rem;
  }

  .site-brand {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    max-width: 100%;
  }

  .site-brand-tag {
    display: none;
  }

  .site-logo {
    width: 2.35rem;
    height: 2.35rem;
  }

  .site-brand-name {
    font-size: 0.84rem;
  }

  .nav-wrap {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 0.4rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.15rem 0.85rem;
    width: 100%;
  }

  .nav a {
    font-size: 0.82rem;
    min-height: 2.25rem;
    padding: 0.15rem 0;
  }

  .nav-cta {
    border-bottom-width: 1px;
  }

  .nav-categories {
    justify-content: flex-start;
    gap: 0.2rem 0.65rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--line);
  }

  .site-header:not(.is-solid):not(.is-scrolled) .nav-categories {
    border-top-color: rgba(255, 255, 255, 0.18);
  }

  .nav-categories a {
    font-size: 0.64rem;
    min-height: 1.75rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .service-list,
  .steps,
  .capability-strip,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .steps li {
    padding-top: 2.4rem;
  }

  .scroll-hint {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-visual,
  .capability-visual img {
    min-height: 280px;
  }

  .section {
    padding: clamp(3.5rem, 9vw, 6rem) 0;
  }

  .section-lead {
    max-width: none;
  }

  .section h1,
  .section h2 {
    max-width: 16ch;
  }
}

/* —— Phone —— */
@media (max-width: 600px) {
  :root {
    --header-h: 8.5rem;
  }

  body {
    font-size: 1rem;
  }

  .brand-title {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .lead {
    max-width: 28ch;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 1.75rem);
    padding-bottom: 2.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-item {
    min-height: 0;
  }

  .package-item h2,
  .package-item h3 {
    font-size: 1.15rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-next {
    flex-direction: column;
    align-items: stretch;
  }

  .page-next .btn {
    width: 100%;
  }

  .contact-form .btn-primary {
    width: 100%;
    justify-self: stretch;
  }

  .service-list li:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .brand-title,
  .brand-title span:last-child,
  .lead,
  .hero-actions,
  .scroll-hint,
  .scroll-hint span,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
