/* Callas Aesthetics — original editorial design */
:root {
  --paper: #f3efe8;
  --paper-deep: #e6ded3;
  --ink: #201d1a;
  --muted: #6f685f;
  --line: rgba(32, 29, 26, 0.2);
  --wine: #681f2e;
  --wine-dark: #3a151d;
  --white: #fffdf9;
  --display: "DM Serif Display", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --gutter: clamp(20px, 4.8vw, 76px);
  --section: clamp(72px, 8vw, 128px);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -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; }
::selection { background: var(--wine); color: var(--white); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  transition: background-color .35s ease, height .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(243, 239, 232, .9);
  backdrop-filter: saturate(140%) blur(14px);
  border-color: var(--line);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: .02em;
}
.brand i, .footer-brand i { font-style: italic; color: var(--wine); }
.brand-mark { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1; }
.brand-mark path:nth-of-type(2), .brand-mark path:nth-of-type(3) { stroke: var(--wine); }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 45px); }
.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.header-cta:hover { background: var(--ink); color: var(--white); }
.menu-toggle { display: none; }

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px var(--gutter) 74px;
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 630px; }
.eyebrow {
  margin: 0 0 28px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, blockquote { font-family: var(--display); font-weight: 400; }
h1 {
  margin: 0;
  font-size: clamp(62px, 6.4vw, 96px);
  letter-spacing: -.035em;
  line-height: .98;
}
h1 em, h2 em { color: var(--wine); font-style: italic; }
.hero-intro {
  max-width: 510px;
  margin: 30px 0 0;
  color: #4f4943;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.button-dark { background: var(--ink); color: var(--white); transition: background .25s ease; }
.button-dark:hover { background: var(--wine); }
.text-link { font-size: 12px; font-weight: 600; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: 7px; color: var(--wine); transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.hero-note { max-width: 440px; margin: 25px 0 0; color: #57514b; font-size: 12px; line-height: 1.55; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 635px); }
.hero-image-wrap {
  position: relative;
  width: 100%;
  margin-left: auto;
  aspect-ratio: 4 / 4.75;
  overflow: hidden;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  pointer-events: none;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 64%; filter: saturate(.74) sepia(.07); }

.intro-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  min-height: 74px;
  padding: 18px var(--gutter);
  background: var(--wine);
  color: var(--white);
}
.intro-band p { margin: 0; font-family: var(--display); font-size: clamp(16px, 1.6vw, 24px); letter-spacing: .01em; }
.intro-band span { font-size: 10px; }

.section { max-width: var(--max); margin: 0 auto; padding: var(--section) var(--gutter); }
.section-heading { display: grid; grid-template-columns: .65fr 1.25fr .85fr; gap: clamp(30px, 5vw, 82px); align-items: end; margin-bottom: clamp(54px, 7vw, 92px); }
.section-heading .eyebrow { align-self: start; margin-top: 12px; }
.section-heading h2 { margin: 0; font-size: clamp(46px, 5vw, 76px); letter-spacing: -.025em; line-height: 1.03; }
.section-heading > p:last-child { margin: 0; color: #5d554e; font-size: 16px; line-height: 1.7; }
.section-heading.compact { grid-template-columns: .65fr 2.1fr; align-items: start; }

.service-list { border-top: 1px solid var(--ink); }
.service {
  display: grid;
  grid-template-columns: .45fr 1.7fr .65fr;
  gap: clamp(25px, 4vw, 65px);
  align-items: start;
  padding: clamp(30px, 3.2vw, 45px) 0;
  border-bottom: 1px solid var(--line);
}
.service-number { margin: 8px 0 0; color: var(--wine); font-size: 11px; font-weight: 600; letter-spacing: .12em; }
.service h3 { margin: 0 0 12px; font-size: clamp(31px, 3vw, 46px); letter-spacing: -.015em; line-height: 1.12; }
.service div p { max-width: 680px; margin: 0; color: #5d554e; font-size: 15px; line-height: 1.7; }
.service > a { align-self: center; justify-self: end; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.service > a span { margin-left: 8px; color: var(--wine); }

.editorial-panel {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: var(--ink);
  color: var(--white);
}
.editorial-image { min-height: 520px; overflow: hidden; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) sepia(.08); }
.editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 6.5vw, 96px); }
.editorial-copy .eyebrow { color: #d4a3ad; }
.editorial-copy blockquote { margin: 0; font-size: clamp(35px, 3.7vw, 56px); letter-spacing: -.02em; line-height: 1.14; }
.editorial-copy > p:last-child { max-width: 530px; margin: 30px 0 0; color: #d8d0c8; font-size: 15px; line-height: 1.7; }

.steps { margin: 0 0 0 28%; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.steps li { display: grid; grid-template-columns: .32fr 1fr; gap: 35px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.steps li > span { padding-top: 8px; color: var(--wine); font-size: 11px; font-weight: 600; letter-spacing: .1em; }
.steps h3 { margin: 0 0 12px; font-size: clamp(30px, 2.8vw, 42px); letter-spacing: -.015em; line-height: 1.12; }
.steps p { max-width: 600px; margin: 0; color: #5d554e; font-size: 15px; }

.promise { padding: clamp(74px, 8.5vw, 124px) var(--gutter); background: var(--wine-dark); color: var(--white); text-align: center; }
.promise .eyebrow { color: #d4a3ad; }
.promise h2 { margin: 0 auto; font-size: clamp(50px, 6vw, 88px); letter-spacing: -.03em; line-height: 1.04; }
.promise h2 em { color: #e9cbd0; }

.faq .section-heading { margin-bottom: 64px; }
.accordion { margin-left: 28%; border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
summary {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.3;
}
summary::-webkit-details-marker { display: none; }
summary:focus-visible { outline: 2px solid var(--wine); outline-offset: 5px; }
.plus { position: relative; flex: 0 0 25px; width: 25px; height: 25px; }
.plus::before, .plus::after { content: ""; position: absolute; top: 12px; left: 3px; width: 19px; height: 1px; background: var(--wine); transition: transform .25s ease; }
.plus::after { transform: rotate(90deg); }
details[open] .plus::after { transform: rotate(0); }
details > p { max-width: 780px; margin: -4px 65px 32px 0; color: #5d554e; font-size: 15px; line-height: 1.75; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(60px, 7vw, 110px);
  padding: var(--section) var(--gutter);
  background: var(--ink);
  color: var(--white);
}
.contact-copy .eyebrow { color: #d4a3ad; }
.contact-copy h2 { margin: 0; font-size: clamp(58px, 6vw, 88px); letter-spacing: -.03em; line-height: .98; }
.contact-copy h2 em { color: #e9cbd0; }
.contact-copy > p:last-child { max-width: 530px; margin: 30px 0 0; color: #d8d0c8; font-size: 15px; line-height: 1.7; }
.contact-list { align-self: end; border-top: 1px solid rgba(255,255,255,.42); }
.contact-list > a {
  display: grid;
  grid-template-columns: 1fr auto 30px;
  gap: 25px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: color .25s ease;
}
.contact-list > a:hover { color: #e9cbd0; }
.contact-list span { font-family: var(--display); font-size: 25px; }
.contact-list small { display: block; margin-bottom: 4px; color: #aaa096; font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.contact-list strong { font-size: 13px; font-weight: 500; letter-spacing: .07em; }
.contact-list i { justify-self: end; color: #d4a3ad; font-family: var(--body); font-size: 21px; font-style: normal; }
.contact-note { max-width: 610px; margin: 24px 0 0; color: #8f8780; font-size: 10px; line-height: 1.6; }

.site-footer { padding: 58px var(--gutter) 40px; background: #171411; color: var(--white); }
.footer-brand { margin-bottom: 50px; font-size: 23px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 35px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.footer-links a { color: #c9c0b7; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--white); }
.footer-legal { max-width: 850px; margin: 28px 0 0; color: #7e756d; font-size: 9px; line-height: 1.7; }
.mobile-contact-bar { display: none; }

.legal-page { min-height: 100svh; padding: 150px var(--gutter) 100px; }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-inner h1 { font-size: clamp(52px, 7vw, 88px); }
.legal-inner .updated { margin: 25px 0 55px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.legal-inner h2 { margin: 50px 0 16px; font-size: 31px; }
.legal-inner p, .legal-inner li { color: #514b44; font-size: 14px; line-height: 1.85; }
.legal-inner a { color: var(--wine); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal[data-delay="1"] { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 9px;
    padding: 100px var(--gutter);
    background: var(--wine-dark);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .site-nav a { font-family: var(--display); font-size: clamp(42px, 9vw, 70px); font-weight: 400; letter-spacing: -.03em; text-transform: none; }
  .site-nav a::after { display: none; }
  .site-nav.open { opacity: 1; visibility: visible; }
  .header-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    place-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 23px; height: 1px; margin: 4px 0; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] { color: var(--white); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .hero { grid-template-columns: .9fr 1fr; gap: 50px; }
  .section-heading { grid-template-columns: .45fr 1.2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .editorial-panel { grid-template-columns: 1fr 1fr; }
  .editorial-copy { padding: 70px 45px; }
  .contact { gap: 70px; }
}

@media (max-width: 760px) {
  :root { --gutter: 22px; --section: 72px; }
  .site-header, .site-header.scrolled { height: 68px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 0; display: flex; flex-direction: column; padding-top: 104px; padding-bottom: 42px; gap: 32px; }
  h1 { font-size: clamp(54px, 17vw, 68px); }
  .hero-intro { margin-top: 24px; font-size: 16px; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 26px; }
  .button { width: 100%; }
  .hero-note { margin-top: 22px; }
  .hero-visual { width: 100%; }
  .hero-image-wrap { width: 100%; margin-right: 0; aspect-ratio: 4 / 4.7; }
  .hero-image-wrap img { object-position: center 64%; }
  .intro-band { min-height: 76px; gap: 15px; justify-content: space-between; }
  .intro-band p { max-width: 44%; font-size: 14px; line-height: 1.2; }
  .intro-band p:last-child { text-align: right; }
  .section-heading, .section-heading.compact { display: block; margin-bottom: 48px; }
  .section-heading .eyebrow { margin-bottom: 24px; }
  .section-heading h2 { font-size: clamp(44px, 13vw, 56px); }
  .section-heading > p:last-child { margin-top: 24px; }
  .service { grid-template-columns: 36px 1fr; gap: 10px 16px; padding: 28px 0; }
  .service-number { grid-row: 1; }
  .service h3 { font-size: 31px; }
  .service > a { grid-column: 2; justify-self: start; margin-top: 10px; min-height: 44px; display: flex; align-items: center; }
  .editorial-panel { display: flex; flex-direction: column; min-height: 0; }
  .editorial-image { min-height: 310px; }
  .editorial-copy { padding: 58px 22px 64px; }
  .editorial-copy blockquote { font-size: 36px; }
  .steps, .accordion { margin-left: 0; }
  .steps li { grid-template-columns: 45px 1fr; gap: 8px; padding: 30px 0; }
  .steps h3 { font-size: 29px; }
  .promise { text-align: left; }
  .promise h2 { font-size: clamp(44px, 13vw, 58px); }
  summary { min-height: 80px; font-size: 24px; }
  details > p { margin-right: 20px; }
  .contact { display: block; padding-bottom: 110px; }
  .contact-copy h2 { font-size: clamp(58px, 18vw, 72px); }
  .contact-list { margin-top: 54px; }
  .contact-list > a { grid-template-columns: 1fr 26px; gap: 10px; min-height: 105px; }
  .contact-list strong { grid-column: 1; margin-top: -28px; color: #aaa096; font-size: 11px; }
  .contact-list i { grid-column: 2; grid-row: 1 / span 2; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .site-footer { padding-bottom: 104px; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--wine);
    box-shadow: 0 12px 34px rgba(32,29,26,.27);
  }
  .mobile-contact-bar a { min-height: 52px; display: grid; place-items: center; color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
  .mobile-contact-bar a + a { border-left: 1px solid rgba(255,255,255,.3); }
  .legal-page { padding-top: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
