@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&display=swap");

:root {
  --wine: #5b0012;
  --wine-dark: #330009;
  --gold: #d3b476;
  --ink: #21070d;
  --paper: #f6f1eb;
  --white: #fffaf6;
  --line: rgba(255, 250, 246, 0.28);
}
*, *::before, *::after { box-sizing: border-box; }
html { font-family: "Archivo", Arial, sans-serif; font-size: 10px; scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }
.page-shell { min-height: 100svh; padding: 0 3.4rem 3.4rem; overflow-x: clip; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  width: 100%;
  max-width: 1440px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 2.6rem;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  background: transparent;
  transition: top 180ms ease, border-radius 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrollable {
  top: 24px;
  border-radius: 200px;
  background: rgba(255, 250, 246, 0.96);
  box-shadow: 0 1rem 3rem rgba(33, 7, 13, 0.1);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; width: fit-content; align-items: center; gap: 1.1rem; }
.brand-symbol {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: contain;
  animation: symbol-in 700ms cubic-bezier(.2, .72, .22, 1) both;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  animation: word-in 550ms ease-out 120ms both;
}
.brand-name strong { font-size: 1.55rem; font-weight: 600; letter-spacing: .02em; }
.brand-name small {
  margin-top: .55rem;
  color: #80646a;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 5rem; }
.main-nav a { font-size: 14px; transition: color 180ms ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--wine); }
.contact-button {
  display: inline-flex;
  min-height: 54px;
  padding: 10px 13px 10px 22px;
  justify-self: end;
  align-items: center;
  gap: 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 200px;
  font-size: 13px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}
.contact-button span, .hero-cta span {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  transition: transform 180ms ease;
}
.contact-button svg, .hero-cta svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.contact-button:hover, .contact-button:focus-visible { background: var(--ink); color: var(--white); }
.contact-button:hover span, .contact-button:focus-visible span,
.hero-cta:hover span, .hero-cta:focus-visible span { transform: translateX(3px); }

.hero {
  --hero-expand-x: 0px;
  --hero-expand-width: 0px;
  --hero-corner-radius: 3.8rem;
  position: relative;
  width: calc(100% + var(--hero-expand-width));
  min-height: calc(100svh - 116px);
  margin-left: calc(0px - var(--hero-expand-x));
  overflow: hidden;
  border-radius: var(--hero-corner-radius);
  background: var(--wine-dark);
  color: var(--white);
  isolation: isolate;
  will-change: width, margin-left, border-radius;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  /* filter: brightness(1.14) contrast(1.2) saturate(.82); */
}
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(40, 0, 8, .3) 0%, rgba(55, 0, 11, .1) 52%, transparent 72%),
    linear-gradient(0deg, rgba(30, 0, 7, .54), transparent 43%, rgba(30, 0, 7, .04));
}
.hero-overlay::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 250, 246, .16) 1px, transparent 1.4px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(90deg, #000 0%, #000 43%, transparent 72%);
  opacity: .7;
}
.hero-inner {
  position: relative;
  display: flex;
  min-height: inherit;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5.8rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-content {
  display: flex;
  width: min(100%, 780px);
  min-width: 0;
  max-width: 780px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(56, 0, 11, .32);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.status-pill::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(211, 180, 118, .15);
  content: "";
}
.hero-title {
  max-width: min(820px, 57vw);
  margin: 0;
  font-size: 8.6rem;
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .92;
}
.hero-description {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 246, .82);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex;
  min-height: 58px;
  padding: 10px 13px 10px 24px;
  align-items: center;
  gap: 2.2rem;
  border-radius: 200px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.hero-cta span { background: var(--gold); color: var(--ink); }
.hero-bottom {
  position: absolute;
  right: 5.8rem;
  bottom: 4.6rem;
  left: 5.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.8rem;
}
.hero-note { margin: 0; font-size: 1.6rem; }
.hero-note strong { display: block; margin-bottom: .8rem; font-size: 1.4rem; }
.hero-note span { color: rgba(255, 250, 246, .68); font-size: 1.2rem; }
.practice-pills { display: flex; gap: .9rem; }
.practice-pills a {
  display: flex;
  min-height: 51px;
  padding: 7px 18px 7px 8px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(48, 0, 10, .46);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease;
}
.practice-pills a:hover, .practice-pills a:focus-visible {
  border-color: var(--gold);
  background: rgba(48, 0, 10, .74);
}
.practice-pills b {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: rgba(211, 180, 118, .2);
  color: var(--gold);
  font-size: 1.1rem;
}

@media (max-width: 1440px) { html { font-size: 8px; } }
@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero-title { max-width: 58vw; font-size: 7.8rem; }
  .practice-pills a { padding-right: 10px; }
  .practice-pills a span { display: none; }
}
@media (max-width: 700px) {
  .page-shell { padding: 0 10px 10px; }
  .site-header { min-height: 70px; padding: 0 1.2rem; }
  .brand-symbol { width: 4.6rem; height: 4.6rem; }
  .brand-name strong { font-size: 1.4rem; }
  .contact-button { min-height: 44px; padding: 6px; border: 0; }
  .contact-button strong { display: none; }
  .contact-button span { width: 36px; height: 36px; }
  .hero { min-height: 780px; border-radius: 22px; }
  .hero-media { object-position: 72% center; }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(44, 0, 9, .92) 0%, rgba(59, 0, 12, .5) 45%, rgba(55, 0, 11, .02) 78%);
  }
  .hero-overlay::after {
    mask-image: linear-gradient(0deg, #000 0%, #000 42%, transparent 75%);
    opacity: .5;
  }
  .hero-inner { padding: 3rem 2.4rem; justify-content: flex-end; }
  .hero-content { width: 100%; min-width: 0; margin-bottom: 19rem; align-self: stretch; gap: 1.8rem; }
  .status-pill { font-size: 10px; }
  .hero-title { width: 100%; max-width: 100%; overflow-wrap: break-word; font-size: 5.2rem; line-height: .96; }
  .hero-description { font-size: 1.7rem; }
  .hero-bottom { right: 2.4rem; bottom: 2.4rem; left: 2.4rem; display: block; }
  .hero-note { margin-bottom: 1.8rem; }
  .practice-pills { display: grid; width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .practice-pills a { justify-content: center; min-height: 44px; padding: 4px; }
  .practice-pills a { min-width: 0; }
  .practice-pills b { width: 34px; height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
@keyframes symbol-in {
  from { opacity: 0; transform: translateX(-20px) scale(.94); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes word-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
