:root {
  --ink: #171214;
  --paper: #fbf8f6;
  --rose: #b86e70;
  --rose-deep: #7f3f47;
  --blush: #ead7d3;
  --line: rgba(23, 18, 20, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: .65rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: .65rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 246, .92);
  backdrop-filter: blur(14px);
}
.brand img { width: 112px; height: 54px; object-fit: cover; object-position: center 56%; }
.site-nav { display: flex; gap: 2rem; align-items: center; }
.site-nav a { text-decoration: none; font-size: .9rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--rose-deep); }
.menu-button { display: none; border: 0; padding: .5rem; background: transparent; }
.menu-button span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 4vw;
  padding: clamp(3.5rem, 9vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  overflow: hidden;
  background: radial-gradient(circle at 80% 35%, rgba(184,110,112,.14), transparent 33%);
}
.hero-copy { max-width: 750px; }
.eyebrow { margin: 0 0 1rem; color: var(--rose-deep); font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); line-height: .98; }
h1 { margin-bottom: 1.5rem; font-size: clamp(4rem, 8.5vw, 8.6rem); font-weight: 600; letter-spacing: -.045em; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.8rem, 5.4vw, 5.5rem); font-weight: 600; letter-spacing: -.035em; }
h3 { margin-bottom: .85rem; font-size: 2.25rem; }
.hero-text { max-width: 620px; margin: 0; color: #50474a; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .8rem 1.45rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: 600 .9rem/1 var(--sans);
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button-primary { background: var(--ink); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: var(--rose-deep); border-color: var(--rose-deep); }
.text-link { font-weight: 600; text-decoration-color: var(--rose); text-underline-offset: .3em; }
.hero-art { position: relative; display: grid; place-items: center; aspect-ratio: 1; }
.hero-art img { position: relative; z-index: 2; width: min(92%, 610px); mix-blend-mode: multiply; border-radius: 50%; }
.rose-orbit { position: absolute; inset: 6%; border: 1px solid var(--rose); border-radius: 50%; animation: orbit 22s linear infinite; }
.rose-orbit::before { content: ""; position: absolute; width: 14px; height: 14px; top: 16%; right: 3%; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 9px var(--paper); }
@keyframes orbit { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .rose-orbit { animation: none; } }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem); }
.section-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 3rem; align-items: start; margin-bottom: 4rem; }
.section-heading h2 { max-width: 850px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 370px; padding: 2rem; border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.service-card.featured { color: white; background: var(--ink); }
.card-number { margin: 0 0 5rem; color: var(--rose); font-size: .82rem; letter-spacing: .15em; }
.service-card p:not(.card-number) { color: #655b5e; }
.service-card.featured p:not(.card-number) { color: #d8ced0; }
.service-card a { display: inline-block; margin-top: 1.1rem; font-weight: 600; text-underline-offset: .3em; }

.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; color: white; background: var(--rose-deep); }
.about-mark { font: 600 clamp(14rem, 30vw, 30rem)/.75 var(--serif); color: rgba(255,255,255,.09); text-align: center; }
.about-copy { max-width: 740px; }
.about .eyebrow { color: var(--blush); }
.about-copy > p:last-child { max-width: 650px; color: #f0e7e6; font-size: 1.08rem; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: start; }
.contact-intro { position: sticky; top: 120px; }
.contact-intro p:last-child { max-width: 490px; color: #655b5e; }
.contact-form { display: grid; gap: 1.3rem; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); background: white; box-shadow: 0 25px 70px rgba(55,31,37,.08); }
.contact-form label { display: grid; gap: .45rem; font-size: .86rem; font-weight: 600; letter-spacing: .04em; }
input, select, textarea { width: 100%; border: 0; border-bottom: 1px solid #bfb4b6; border-radius: 0; padding: .7rem .15rem; background: transparent; color: var(--ink); font: 1rem var(--sans); }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--rose); outline-offset: 3px; }
.contact-form .button { justify-self: start; margin-top: .5rem; }
.hidden-field { display: none; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 2rem 4rem; padding: 3rem clamp(1.25rem, 7vw, 7rem); color: #d8ced0; background: var(--ink); font-size: .85rem; }
.site-footer p { margin: .2rem 0; }
.footer-name { color: white; font: 600 1.45rem var(--serif); }
.fine-print { grid-column: 1 / -1; max-width: 720px; color: #a89da0; }

@media (max-width: 820px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: .85rem 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 5rem; }
  .hero-art { width: min(92vw, 520px); margin: 0 auto; }
  .section-heading, .about, .contact { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .card-number { margin-bottom: 3rem; }
  .about-mark { display: none; }
  .contact-intro { position: static; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .section-heading { gap: 1rem; }
}
