:root {
  --bg: #232120;
  --bg-deep: #1b1918;
  --card: #ede8e2;
  --card-alt: #e7dfd7;
  --taupe: #b9a79a;
  --taupe-deep: #a59488;
  --text: #f4ede6;
  --text-dark: #2e2926;
  --text-muted: #857870;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(46, 41, 38, 0.15);
  --accent: #c68d42;
  --accent-soft: #c7a987;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  --shell: min(1280px, calc(100% - 48px));
  --shell-narrow: min(1100px, calc(100% - 48px));
  --ease: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell--narrow {
  width: var(--shell-narrow);
}

.section {
  position: relative;
}

.section--dark {
  background: var(--bg);
}

.section--light {
  background: var(--card);
  color: var(--text-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background-color var(--ease),
    color var(--ease),
    border-color var(--ease),
    transform var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  color: var(--text-dark);
  border-color: rgba(46, 41, 38, 0.28);
  background: transparent;
}

.button--dark:hover {
  background: rgba(46, 41, 38, 0.06);
}

.button--soft {
  color: #fff;
  border-color: var(--taupe-deep);
  background: var(--taupe-deep);
}

.button--soft:hover {
  background: #8f8074;
  border-color: #8f8074;
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(33, 31, 30, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav--right {
  justify-content: flex-end;
}

.nav__link {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #ddc8b1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.brand {
  display: grid;
  justify-items: center;
  gap: 0;
  color: #f4ebe1;
}

.brand__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.brand__subtitle {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 6px auto;
  background: #fff;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 24px 24px;
  background: rgba(33, 31, 30, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.mobile-nav.is-open {
  display: flex;
}

/* Hero */
.services-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.services-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.4);
}

.services-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
}

.services-hero__content h1 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  font-weight: 500;
}

.services-hero__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Story */
.story {
  padding: 110px 0 120px;
}

.story__layout {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 40px;
  align-items: center;
}

.story__img {
  object-fit: cover;
}

.story__img--left {
  height: 260px;
}

.story__img--right {
  height: 220px;
}

.story__content {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
}

.story__mini {
  width: 120px;
  height: 110px;
  object-fit: cover;
  margin: 0 auto 24px;
}

.story__content h2 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 0.95;
  font-weight: 500;
  color: #c1aea1;
}

.story__content p {
  margin: 0 0 14px;
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
}

/* Service blocks */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.service-block--reverse {
  grid-template-columns: 1fr 1fr;
}

.service-block__media img {
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.service-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 72px;
}

.service-block--light .service-block__content {
  background: var(--card);
  color: var(--text-dark);
}

.service-block--dark .service-block__content {
  background: var(--bg);
  color: var(--text);
}

.service-block__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-block__content h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
}

.service-block__content p {
  margin: 0 0 14px;
  max-width: 500px;
}

.service-block--light .service-block__content p {
  color: #514a46;
}

.service-block--dark .service-block__content p {
  color: rgba(255, 255, 255, 0.84);
}

.service-block__price {
  margin: 12px 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 1;
  color: var(--accent-soft);
}

/* Testimonial */
.testimonial {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.testimonial__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 25, 0.55);
}

.testimonial__inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial__label {
  margin: 0 0 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}

.testimonial__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote-mark {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent-soft);
}

.testimonial blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
}

.testimonial__author {
  margin: 24px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #d9cdc2;
}

/* Process */
.process {
  padding: 110px 0 120px;
}

.process__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 36px;
  align-items: start;
}

.process__left h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
  color: var(--accent);
}

.process__left img {
  max-width: 520px;
  height: 640px;
  object-fit: cover;
}

.process__steps {
  border-left: 1px solid rgba(198, 141, 66, 0.45);
  padding-left: 28px;
}

.process-step {
  position: relative;
  margin-bottom: 48px;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 500;
  color: #463f3a;
}

.process-step h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9e8670;
}

.process-step p {
  margin: 0;
  color: #534d48;
}

/* FAQ */
.faq {
  padding: 100px 0 120px;
}

.faq__title {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 0.9;
  font-weight: 500;
  color: var(--accent);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 38px;
  border-bottom: 1px solid rgba(198, 141, 66, 0.45);
  padding-bottom: 12px;
}

.faq-tab {
  position: relative;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.faq-tab.is-active {
  color: var(--accent);
}

.faq-tab.is-active::after {
  transform: scaleX(1);
}

.faq-panel {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 42px 32px;
  border: 1px solid rgba(198, 141, 66, 0.3);
}

.faq-panel.is-active {
  display: block;
}

.faq-panel h3 {
  margin: 0 0 38px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 500;
  color: #c8b5a7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 42px;
}

.faq-grid article h4 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.faq-grid article p {
  margin: 0;
  color: rgba(255,255,255,0.84);
}

/* CTA */
.cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 15, 14, 0.52);
}

.cta__inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.cta__card {
  width: min(100%, 430px);
  padding: 46px 40px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--text-dark);
  text-align: center;
}

.cta__card h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 3.7rem);
  line-height: 0.95;
  font-weight: 500;
}

.cta__card p {
  margin: 0 0 24px;
  color: #5d5550;
}

/* Footer */
.site-footer {
  background: #232120;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  padding-top: 14px;
}

.site-footer__gallery img {
  height: 220px;
  object-fit: cover;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 58px 0 40px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 34px;
  justify-content: start;
}

.site-footer__col {
  display: grid;
  gap: 12px;
}

.site-footer__nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__brand {
  text-align: center;
}

.site-footer__brand h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.9;
  font-weight: 500;
  color: #c8b7aa;
}

.site-footer__brand p {
  margin: 10px 0 0;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__cta {
  text-align: right;
}

.site-footer__cta p {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: #f1e7de;
}

.site-footer__bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

/* Responsive */
@media (max-width: 1200px) {
  .story__layout,
  .process__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .story__img--left,
  .story__img--right {
    display: none;
  }

  .site-footer__nav,
  .site-footer__cta {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .service-block,
  .service-block--reverse {
    grid-template-columns: 1fr;
  }

  .service-block--reverse .service-block__media {
    order: -1;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__gallery img {
    height: 180px;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .service-block__content {
    padding: 56px 28px;
  }

  .service-block__media img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1000px);
    --shell-narrow: min(100% - 28px, 1000px);
  }

  .brand__title {
    font-size: 1.55rem;
  }

  .brand__subtitle {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .services-hero {
    min-height: 430px;
  }

  .services-hero__inner {
    min-height: 430px;
  }

  .story {
    padding: 80px 0 90px;
  }

  .faq-panel {
    padding: 28px 18px;
  }

  .process__left img {
    height: auto;
  }

  .site-footer__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__gallery img {
    height: 150px;
  }

  .cta__card {
    padding: 30px 22px;
  }
}