:root {
  --navy: #101c33;
  --navy-soft: #1d2b46;
  --brass: #b38a45;
  --brass-light: #d9c39b;
  --red: #a83b36;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5e6675;
  --line: #e8e2d8;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 76rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
}

.brand-mark { line-height: 1; }

.brand-copy { display: grid; line-height: 1.1; }
.brand-copy > span { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.015em; }
.brand-copy small { margin-top: 0.28rem; color: var(--brass); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.menu-button {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.menu-button svg { width: 1.4rem; fill: none; stroke: currentColor; stroke-width: 1.8; }

.site-nav {
  position: fixed;
  inset: 4.75rem 0 auto;
  display: none;
  padding: 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1rem 2rem rgba(16, 28, 51, 0.08);
}

.site-nav.is-open { display: grid; }
.site-nav a { min-height: 3rem; display: flex; align-items: center; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 600; }
.header-call { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 5.5rem;
  border-bottom: 1px solid var(--line);
}

.care, .process, .service-area, .about, .faq, .contact { scroll-margin-top: 5.5rem; }

.hero-grid {
  min-height: calc(100svh - 4.75rem);
  display: grid;
  align-items: end;
  padding-top: 3.5rem;
}

.hero-copy { position: relative; z-index: 2; padding-bottom: 2.5rem; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-family: var(--serif); font-weight: 400; line-height: 1.04; }

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 14vw, 5.3rem);
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 34rem;
  margin-bottom: 1.7rem;
  color: var(--navy-soft);
  font-size: clamp(1.08rem, 4vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions { display: grid; gap: 0.75rem; }

.button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--brass);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.button-primary svg, .header-call svg, .mobile-call svg { width: 1.25rem; fill: var(--brass); }
.button-secondary { background: var(--white); color: var(--navy); }
.button-secondary svg { width: 1.1rem; fill: none; stroke: var(--brass); stroke-width: 1.8; }

.hero-contact { display: none; }

.portrait-stage {
  position: relative;
  min-height: 25rem;
  margin-top: -3.5rem;
  display: grid;
  align-items: end;
  justify-items: center;
}

.portrait-stage::before {
  content: "";
  position: absolute;
  inset: 18% 8% 0;
  border: 1px solid var(--brass-light);
  border-bottom: 0;
}

.portrait-stage::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  aspect-ratio: 1;
  top: 14%;
  right: 4%;
  border: 1px solid var(--red);
  transform: rotate(45deg);
}

.portrait-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: 36rem;
  object-fit: contain;
  object-position: bottom;
}

.portrait-stage picture {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  place-items: end center;
}

.section { padding-block: 5.5rem; }
.section-heading h2, .area-heading h2, .contact h2, .about h2, .process h2 { font-size: clamp(2.45rem, 8vw, 4.75rem); letter-spacing: -0.04em; }
.centered-heading { max-width: 50rem; margin-inline: auto; text-align: center; }
.centered-heading h2 { margin-bottom: 1.2rem; }
.centered-heading p { max-width: 43rem; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }

.service-list { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding-block: 2rem; border-bottom: 1px solid var(--line); }
.service-number { color: var(--red); font-family: var(--serif); font-size: 1.15rem; }
.service h3 { margin-bottom: 0.65rem; font-size: 2rem; }
.service p { max-width: 33rem; margin: 0; color: var(--muted); }

.process { background: var(--navy); color: rgba(255,255,255,0.78); }
.process h2, .process h3 { color: var(--white); }
.process-intro > p { max-width: 32rem; }
.text-link { min-height: 2.75rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--brass); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--brass); }
.steps { margin: 3.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.2); }
.steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding-block: 1.7rem; border-bottom: 1px solid rgba(255,255,255,0.2); }
.steps li > span { color: var(--brass); font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.steps h3 { margin-bottom: 0.45rem; font-size: 1.7rem; }
.steps p { margin: 0; }

.service-area { padding-bottom: 3rem; }
.area-heading { display: grid; gap: 0.5rem; margin-bottom: 3rem; }
.area-heading h2 { margin-bottom: 0.5rem; }
.area-heading p { color: var(--muted); }
.area-row { padding-block: 2rem; border-top: 1px solid var(--brass-light); }
.area-row h3 { color: var(--brass); font-family: var(--sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.area-row ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem 1.2rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.area-row li { position: relative; padding-left: 0.85rem; color: var(--navy); font-family: var(--serif); font-size: 1.15rem; }
.area-row li::before { content: ""; position: absolute; left: 0; top: 0.78em; width: 0.23rem; aspect-ratio: 1; background: var(--red); transform: rotate(45deg); }

.about { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { padding-inline: 0; }
.monogram-panel { min-height: 22rem; display: grid; place-items: center; background: var(--navy); border: 1rem solid var(--white); outline: 1px solid var(--brass); outline-offset: -2.25rem; }
.monogram-panel span { color: var(--brass); font-family: var(--serif); font-size: clamp(6rem, 30vw, 12rem); letter-spacing: -0.08em; }
.about-copy { padding: 4rem 1.25rem; }
.about-copy h2 { margin-bottom: 1.4rem; }
.about-lead { max-width: 26rem; color: var(--navy); font-family: var(--serif); font-size: 1.55rem; line-height: 1.3; }
.about-copy p:not(.about-lead) { max-width: 38rem; color: var(--muted); }

.faq { background: #f8f7f4; }
.faq-grid { margin-top: 3.5rem; border-top: 1px solid var(--brass-light); }
.faq-grid article { padding-block: 2rem; border-bottom: 1px solid var(--line); }
.faq-grid h3 { margin-bottom: 0.75rem; font-size: clamp(1.45rem, 5vw, 2rem); line-height: 1.2; }
.faq-grid p { max-width: 42rem; margin: 0; color: var(--muted); }
.faq-grid a { color: var(--navy); font-weight: 700; }

.contact { padding-bottom: 8rem; }
.contact h2 { margin-bottom: 1rem; }
.contact-grid > div:first-child > p { max-width: 32rem; color: var(--muted); }
.contact-links { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.contact-links a { display: grid; gap: 0.35rem; padding-block: 1.4rem; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-links small { color: var(--brass); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-links strong { color: var(--navy); font-size: 1.02rem; overflow-wrap: anywhere; }

.site-footer { padding-block: 2.5rem 7rem; background: #f8f7f4; }
.footer-inner { display: grid; gap: 1.5rem; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.mobile-call {
  position: fixed;
  z-index: 60;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 0.75rem 2rem rgba(16,28,51,0.25);
  text-decoration: none;
  font-weight: 700;
}

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

@media (min-width: 48rem) {
  .shell { padding-inline: 2rem; }
  .hero-grid { min-height: 43rem; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.8fr); align-items: stretch; padding-top: 4rem; }
  .hero-copy { align-self: center; padding-bottom: 4rem; }
  .hero-actions { display: flex; flex-wrap: wrap; }
  .button { min-width: 13rem; }
  .hero-contact { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; color: var(--muted); font-size: 0.9rem; }
  .hero-contact a { color: var(--navy); font-weight: 600; text-decoration: none; }
  .hero-contact span { width: 2rem; height: 1px; background: var(--brass); }
  .hero-contact p { margin: 0; }
  .portrait-stage { min-height: 39rem; margin-top: 0; }
  .portrait-stage img { width: min(100%, 34rem); max-height: 42rem; }
  .service-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .service { grid-template-columns: 1fr; padding: 2.25rem; border-right: 1px solid var(--line); }
  .service:last-child { border-right: 0; }
  .service-number { font-size: 1.5rem; }
  .area-heading { grid-template-columns: 1fr 20rem; align-items: end; }
  .area-row { display: grid; grid-template-columns: 10rem 1fr; gap: 2rem; }
  .area-row ul { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; }
  .about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; }
  .monogram-panel { min-height: 38rem; }
  .about-copy { display: flex; flex-direction: column; justify-content: center; padding: 5rem clamp(3rem, 8vw, 7rem); }
  .faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid article { padding: 2.5rem; }
  .faq-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
  .contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 6rem; }
  .contact-links { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 64rem) {
  .header-inner { min-height: 5.5rem; }
  .brand-copy > span { font-size: 1.25rem; }
  .brand-mark { width: 3rem; }
  .menu-button { display: none; }
  .site-nav { position: static; display: flex; align-items: center; gap: clamp(1.1rem, 2.3vw, 2.2rem); padding: 0; border: 0; box-shadow: none; }
  .site-nav a { min-height: 2.75rem; border: 0; font-size: 0.88rem; }
  .site-nav a:hover { color: var(--red); }
  .header-call { min-height: 3.1rem; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.9rem; background: var(--navy); color: var(--white); text-decoration: none; font-size: 0.88rem; font-weight: 700; }
  .hero-grid { min-height: calc(100svh - 5.5rem); max-height: 56rem; grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.78fr); padding-top: 0; }
  h1 { font-size: clamp(4.8rem, 6.6vw, 7rem); }
  .portrait-stage img { width: min(100%, 39rem); max-height: 50rem; }
  .portrait-stage { align-items: start; }
  .portrait-stage img { margin-top: -8rem; }
  .section { padding-block: 7.5rem; }
  .process-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 7rem; align-items: start; }
  .steps { margin-top: 0; }
  .mobile-call { display: none; }
  .contact { padding-bottom: 7.5rem; }
  .site-footer { padding-bottom: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
