:root {
  --parchment: #FAF8F5;
  --brown: #2C2420;
  --gold: #C9A96E;
  --blush: #EDD5C5;
  --white: #FFFFFF;
  --brown-soft: rgba(44, 36, 32, 0.75);
  --shadow: 0 22px 50px rgba(44, 36, 32, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--brown);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(250, 248, 245, 0.95);
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1;
}

.brand-mark {
  width: 36px;
  height: 48px;
  object-fit: contain;
  object-position: center bottom;
  flex: 0 0 auto;
}

.brand span {
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a,
.mobile-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px auto;
  background: var(--brown);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  display: grid;
  place-content: center;
  gap: 30px;
  background: rgba(250, 248, 245, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px 84px;
  text-align: center;
  background:
    linear-gradient(rgba(44, 36, 32, 0.45), rgba(44, 36, 32, 0.45)),
    url("images/hero.webp") center/cover no-repeat;
}

.hero-content {
  display: grid;
  justify-items: center;
  max-width: 920px;
}

.gold-mark {
  width: 80px;
  height: 16px;
  margin-bottom: 28px;
  color: var(--gold);
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1;
}

.hero-label,
.section-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.25em;
}

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

h1 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 10vw, 96px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
}

.hero-tagline {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 2px solid currentColor;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

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

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--brown);
  border-color: var(--brown);
}

.btn-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--white);
  color: var(--brown);
}

.btn-outline {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gold);
  color: var(--white);
}

.hero-silhouette {
  width: 156px;
  opacity: 0.32;
}

.hero-silhouette img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 10px;
  }
}

.section {
  padding: 120px 0;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

h2 {
  margin-bottom: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
}

.about h2 {
  max-width: 560px;
  font-size: clamp(38px, 4.8vw, 44px);
}

.about-copy > p:not(.section-label),
.contact-copy > p:not(.section-label) {
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 1.85;
}

blockquote {
  position: relative;
  margin: 42px 0 0;
  padding: 48px;
  background: var(--white);
  border-left: 4px solid var(--gold);
}

blockquote span {
  position: absolute;
  top: 6px;
  left: 28px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  line-height: 1;
  opacity: 0.4;
}

blockquote p {
  margin-bottom: 18px;
  color: var(--brown);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

blockquote cite {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-frame {
  height: min(62vw, 520px);
  min-height: 420px;
  overflow: hidden;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rule {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.4);
}

.services,
.testimonials {
  background: var(--white);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 58px;
  text-align: center;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--blush);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card > span {
  position: absolute;
  top: 10px;
  left: 26px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  line-height: 1;
  opacity: 0.2;
}

.service-card h3 {
  position: relative;
  margin: 118px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.service-card p {
  position: relative;
  margin-bottom: 0;
  color: rgba(44, 36, 32, 0.7);
  font-size: 15px;
}

.process {
  background: var(--parchment);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.timeline::before {
  position: absolute;
  top: 38px;
  left: 8%;
  width: 84%;
  border-top: 1px dashed var(--gold);
  content: "";
}

.step {
  position: relative;
  padding-top: 4px;
  background: var(--parchment);
}

.step span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.step p {
  color: rgba(44, 36, 32, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.why {
  padding: 104px 0;
  background: var(--brown);
  color: var(--white);
  text-align: center;
}

.why h2 {
  margin-bottom: 54px;
  color: var(--white);
  font-size: clamp(42px, 5.5vw, 52px);
  font-style: italic;
  font-weight: 300;
}

.trust-row {
  display: flex;
  justify-content: center;
}

.trust-row article {
  flex: 1;
  padding: 0 42px;
}

.trust-row article + article {
  border-left: 1px solid rgba(201, 169, 110, 0.45);
}

.trust-row h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.atmosphere {
  height: 400px;
  background:
    linear-gradient(rgba(201, 169, 110, 0.25), rgba(201, 169, 110, 0.25)),
    url("images/atmosphere.webp") center/cover no-repeat;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 40px;
  background: var(--parchment);
}

.testimonial-card span {
  display: block;
  height: 48px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 0.85;
  opacity: 0.5;
}

.testimonial-card p {
  color: var(--brown);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}

.testimonial-card cite {
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.silhouette-divider {
  display: grid;
  place-items: center;
  padding: 8px 0 72px;
  background: var(--white);
}

.divider-mark {
  width: 72px;
  height: 96px;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.42;
}

.contact-grid {
  align-items: start;
}

.contact-copy h2 {
  max-width: 530px;
}

.contact-copy .btn {
  margin: 18px 0 22px;
}

.small-note {
  color: rgba(44, 36, 32, 0.6) !important;
  font-size: 14px !important;
  font-style: italic;
}

.form-panel {
  padding: 4px 0;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: var(--brown);
  font: 300 15px/1.5 "Jost", sans-serif;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--brown);
  outline: none;
}

.contact-form button {
  justify-self: start;
  margin-top: 10px;
  cursor: pointer;
}

.success-message {
  display: none;
  min-height: 360px;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  text-align: center;
}

.form-panel.is-sent .contact-form {
  display: none;
}

.form-panel.is-sent .success-message {
  display: grid;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 72px 24px;
  background: var(--brown);
  color: var(--white);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1;
}

.footer-brand-mark {
  width: 52px;
  height: 68px;
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer a:not(.footer-brand) {
  color: var(--gold);
  font-size: 14px;
  font-weight: 300;
}

.footer small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 300;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    width: min(100% - 36px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 88px 0;
  }

  .container,
  .rule {
    width: min(100% - 36px, 1160px);
  }

  .two-column,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    height: 520px;
    min-height: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 620px;
    margin: 0 auto;
  }

  .timeline::before {
    top: 0;
    left: 17px;
    width: 0;
    height: 100%;
    border-top: 0;
    border-left: 1px dashed var(--gold);
  }

  .step {
    padding: 0 0 34px 58px;
  }

  .step span {
    margin-bottom: 12px;
  }

  .trust-row {
    display: grid;
    gap: 34px;
  }

  .trust-row article {
    padding: 0;
  }

  .trust-row article + article {
    padding-top: 34px;
    border-top: 1px solid rgba(201, 169, 110, 0.45);
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding-top: 112px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: min(100%, 310px);
  }

  blockquote {
    padding: 38px 30px;
  }

  .portrait-frame {
    height: 430px;
  }

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

  .atmosphere {
    height: 250px;
  }

  .testimonial-card:nth-child(3) {
    display: none;
  }

  .contact-form button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
