:root {
  --bg: #232120;
  --bg-deep: #1d1b1a;
  --card: #ede8e2;
  --card-alt: #e4dbd2;
  --taupe: #b3a59b;
  --taupe-deep: #9d8d81;
  --text: #f3ede7;
  --text-dark: #2e2926;
  --text-muted: #7f746c;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(46, 41, 38, 0.18);
  --accent: #bea17f;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  --radius: 0;
  --shell: min(1280px, calc(100% - 48px));
  --shell-narrow: min(980px, 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--wide {
  width: min(1120px, calc(100% - 48px));
}

.shell--narrow {
  width: var(--shell-narrow);
}

.section {
  position: relative;
}

.section--dark {
  background: var(--bg);
}

.section--taupe {
  background: linear-gradient(180deg, #b8aa9f 0%, #afa197 100%);
}

.section--light {
  background: var(--card);
  color: var(--text-dark);
}

.section--light-alt {
  background: #e9e2db;
  color: var(--text-dark);
}

.section--image {
  overflow: hidden;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.frame--light::before {
  border-color: rgba(255, 255, 255, 0.35);
}

.section-kicker {
  margin: 0 0 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-kicker--dark {
  color: #7d6f64;
}

.display-title {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.display-title--dark {
  color: var(--text-dark);
}

.display-title--small {
  text-align: left;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
}

.display-title--compact {
  text-align: left;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  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: #8c7e73;
  border-color: #8c7e73;
}

.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: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.brand__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.92;
  color: #e7d6c7;
}

.brand__subtitle {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(231, 214, 199, 0.74);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(0, 0.83fr);
  min-height: calc(100vh - 66px);
}

.hero-card {
  position: relative;
  min-height: calc(100vh - 66px);
  overflow: hidden;
}

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

.hero-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-card__content {
  position: absolute;
  z-index: 2;
}

.hero-card__content--left {
  left: 42px;
  right: 42px;
  bottom: 38px;
  max-width: 520px;
}

.hero-card__content--left .overline {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.hero-card__content--left h1 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-card__content--right {
  top: 24px;
  right: 26px;
  text-align: right;
}

.hero-card__content--right p,
.hero-card__content--right span {
  display: block;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card__content--right span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.story {
  padding: 110px 0 96px;
}

.story__inner {
  min-height: 760px;
}

.monogram {
  width: 62px;
  height: 62px;
  margin: 22px auto 0;
  border: 1px solid rgba(221, 200, 177, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  color: #b9a694;
}

.story__photo {
  position: absolute;
  box-shadow: var(--shadow);
}

.story__photo--one {
  width: 102px;
  height: 158px;
  top: 290px;
  left: 36px;
}

.story__photo--two {
  width: 98px;
  height: 145px;
  top: 610px;
  right: 110px;
}

.story__photo--three {
  width: 224px;
  height: 145px;
  top: 588px;
  left: 425px;
}

.story__photo--four {
  width: 190px;
  height: 132px;
  top: 360px;
  right: 52px;
}

.services-teaser {
  padding: 64px 0 68px;
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #d9cec5;
}

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

.service-card__body {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(237, 232, 226, 0.92);
  padding: 16px 14px;
  color: var(--text-dark);
  text-align: center;
}

.service-card__body h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.service-card__body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.about-teaser {
  padding: 76px 0 88px;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.about-teaser__media img {
  aspect-ratio: 0.73;
  object-fit: cover;
}

.about-teaser__content {
  position: relative;
  max-width: 520px;
  padding-top: 30px;
}

.about-teaser__content .section-kicker {
  text-align: left;
}

.about-teaser__content p {
  margin: 0 0 18px;
  font-size: 14px;
  color: #403834;
}

.intro-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem !important;
  line-height: 1.05 !important;
  color: #8f8074 !important;
}

.about-teaser__accent {
  position: absolute;
  right: 10px;
  bottom: -58px;
  width: 128px;
  height: 160px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.testimonial {
  min-height: 610px;
}

.testimonial__bg,
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__overlay,
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 20, 19, 0.44);
}

.testimonial__content {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-mark {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--accent);
}

blockquote {
  max-width: 860px;
  margin: 0;
}

blockquote p {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

blockquote footer {
  margin-top: 18px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.portfolio-teaser {
  padding: 60px 0 64px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(2, 176px);
  gap: 10px;
}

.mosaic__item {
  position: relative;
  overflow: hidden;
}

.mosaic__item--large {
  grid-row: 1 / span 2;
}

.mosaic__item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic__item:hover img {
  transform: scale(1.04);
}

.mosaic__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.46) 100%);
}

.mosaic__item span {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: #fff;
}

.guide {
  padding: 78px 0;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  background: #f2ece7;
  color: var(--text-dark);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guide-card__body {
  padding: 40px 42px 36px;
}

.guide-card__body .section-kicker {
  text-align: left;
}

.guide-card__body p:last-of-type {
  margin: 0 0 22px;
  color: #453d38;
}

.guide-card__image img {
  height: 100%;
  object-fit: cover;
}

.blog-teaser {
  padding: 62px 0 68px;
}

.blog-cards .journal-card {
  color: var(--text-dark);
}

.journal-card img {
  aspect-ratio: 0.82;
  object-fit: cover;
  margin-bottom: 12px;
}

.journal-card span {
  display: block;
  margin-bottom: 7px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #85786f;
}

.journal-card h3 {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.48rem;
  line-height: 1.04;
  font-weight: 500;
}

.cta {
  min-height: 760px;
}

.cta__content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.cta__mini-gallery {
  display: flex;
  gap: 16px;
}

.cta__mini-gallery img {
  width: 118px;
  height: 150px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.cta__footer p {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.gallery-strip {
  background: var(--bg);
  padding: 10px 14px 0;
}

.gallery-strip__track {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.gallery-strip__track img {
  height: 170px;
  object-fit: cover;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 32px;
  align-items: start;
  padding: 42px 0 54px;
}

.footer-links {
  display: flex;
  gap: 46px;
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand {
  text-align: center;
}

.footer-brand__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.88;
  color: #ccbdb1;
}

.footer-brand__subtitle {
  margin: 2px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand__meta {
  margin: 22px 0 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-cta {
  text-align: right;
}

.footer-cta h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  font-weight: 500;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0 14px;
  border-top: 1px solid var(--line);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1100px) {
  .story__inner {
    min-height: 820px;
  }

  .story__photo--one { left: 10px; }
  .story__photo--four { right: 18px; }
  .story__photo--two { right: 40px; }
  .story__photo--three { left: 50%; transform: translateX(-50%); }

  .about-teaser__grid {
    gap: 46px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-cta {
    text-align: center;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav.is-open {
    display: flex;
  }

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

  .hero-card,
  .hero-card--small {
    min-height: 72vh;
  }

  .hero-card--small {
    min-height: 440px;
  }

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

  .about-teaser__grid,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .about-teaser__accent {
    position: static;
    margin-top: 22px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mosaic__item,
  .mosaic__item--large {
    min-height: 260px;
    grid-row: auto;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: min(100%, calc(100% - 28px));
    --shell-narrow: min(100%, calc(100% - 28px));
  }

  .site-header__inner {
    min-height: 60px;
    gap: 12px;
  }

  .brand__title {
    font-size: 1.55rem;
  }

  .hero-card__content--left {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .hero-card__content--left h1 {
    font-size: 3rem;
  }

  .hero-card__content--right {
    top: 18px;
    right: 18px;
  }

  .story {
    padding: 86px 0 78px;
  }

  .story__inner {
    min-height: 720px;
  }

  .story__photo--one {
    width: 76px;
    height: 120px;
    top: 300px;
  }

  .story__photo--two {
    width: 74px;
    height: 112px;
    top: 575px;
    right: 10px;
  }

  .story__photo--three {
    width: 150px;
    height: 102px;
    top: 550px;
  }

  .story__photo--four {
    width: 130px;
    height: 96px;
    top: 402px;
  }

  .service-card {
    min-height: 360px;
  }

  .testimonial {
    min-height: 460px;
  }

  .testimonial__content {
    min-height: 460px;
  }

  blockquote p {
    font-size: 2rem;
  }

  .cta,
  .cta__content {
    min-height: 620px;
  }

  .cta__mini-gallery {
    gap: 10px;
  }

  .cta__mini-gallery img {
    width: 86px;
    height: 112px;
  }

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

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
