:root {
  --paper: #fffaf8;
  --petal: #edc6cb;
  --rose: #b76572;
  --deep-rose: #8d3d49;
  --ink: #3a3432;
  --charcoal: #3c3633;
  --soft-ink: #655d59;
  --line: rgba(48, 43, 41, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(58, 38, 34, 0.08);
  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--soft-ink);
  font-family: var(--body);
  line-height: 1.6;
}

body::selection {
  background: var(--petal);
  color: var(--ink);
}

a {
  color: inherit;
}

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

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

section[id] {
  scroll-margin-top: 7.5rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 248, 247, 0.94), rgba(255, 248, 247, 0.66));
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
}

.brand-lockup,
.nav-links,
.hero-actions,
.contact-list {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(48, 43, 41, 0.22);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  gap: 1.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.28rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
  z-index: -2;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 247, 0.98) 0%, rgba(255, 248, 247, 0.72) 42%, rgba(255, 248, 247, 0.08) 74%),
    linear-gradient(0deg, rgba(255, 248, 247, 0.62), rgba(255, 248, 247, 0));
}

.hero-content {
  width: min(560px, 88vw);
  padding: 10.4rem 0 4.8rem 6vw;
}

.eyebrow,
.vision-notes span {
  margin: 0;
  color: var(--deep-rose);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-title,
.section-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.96;
}

.hero-title {
  margin-top: 0.95rem;
  line-height: 1;
}

.hero-wordmark {
  width: min(500px, 72vw);
  height: auto;
  opacity: 0.94;
}

.hero-tagline {
  margin: 0.85rem 0 0;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(1.95rem, 3.2vw, 3.1rem);
  font-weight: 600;
  line-height: 0.95;
}

.hero-copy {
  max-width: 36rem;
  margin: 0.55rem 0 0;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(48, 43, 41, 0.34);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg,
.contact-list svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

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

.button:focus-visible,
.contact-list a:focus-visible,
.brand-lockup:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid rgba(141, 61, 73, 0.34);
  outline-offset: 4px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.button-light {
  color: var(--charcoal);
  background: rgba(255, 250, 248, 0.72);
  box-shadow: 0 14px 36px rgba(58, 38, 34, 0.08);
}

.vision-notes p,
.visit-copy p {
  margin: 0.65rem 0 0;
  color: var(--soft-ink);
}

.editorial-section,
.visit-section {
  display: grid;
  gap: 3rem;
  padding: 4.6rem 5vw;
}

.vision-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  background:
    radial-gradient(circle at 8% 18%, rgba(243, 196, 203, 0.4), transparent 24rem),
    linear-gradient(135deg, var(--paper), #ffffff 58%, rgba(237, 198, 203, 0.22));
}

.section-copy h2 {
  color: var(--charcoal);
  margin-top: 0.65rem;
  max-width: 34rem;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.visit-copy h2 {
  color: var(--charcoal);
  margin-top: 0.65rem;
  font-size: 4rem;
  font-weight: 500;
}

.section-copy p:last-child {
  max-width: 45rem;
}

.vision-notes {
  display: grid;
  gap: 1rem;
}

.vision-notes article,
.visit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(58, 38, 34, 0.08);
}

.vision-notes article {
  padding: 1.25rem;
}

.visit-section {
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(237, 198, 203, 0.24), transparent 36%),
    #fffdfc;
  color: var(--ink);
}

.visit-card {
  min-height: 14rem;
  padding: 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(58, 38, 34, 0.055);
}

.visit-card::before {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--line);
}

.visit-card .eyebrow {
  margin-top: 1.25rem;
}

.visit-card strong {
  display: block;
  margin: 0.8rem 0;
  color: rgba(60, 54, 51, 0.86);
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.3vw, 3.45rem);
  font-weight: 500;
  line-height: 0.96;
}

.visit-card span {
  display: block;
  max-width: 24rem;
  color: var(--soft-ink);
  font-size: 0.92rem;
}

.visit-copy p,
.visit-copy .eyebrow {
  color: var(--soft-ink);
}

.visit-copy .eyebrow {
  color: var(--deep-rose);
}

.contact-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.7rem;
  scroll-margin-top: 7.5rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #443d3a;
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.64);
}

.contact-list svg {
  color: var(--deep-rose);
  opacity: 0.78;
}

.instagram-icon:empty {
  width: 1.05rem;
  height: 1.05rem;
  border: 1.7px solid currentColor;
  border-radius: 0.3rem;
  position: relative;
}

.instagram-icon:empty::before,
.instagram-icon:empty::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.instagram-icon:empty::before {
  width: 0.36rem;
  height: 0.36rem;
  inset: 50% auto auto 50%;
  border: 1.45px solid currentColor;
  transform: translate(-50%, -50%);
}

.instagram-icon:empty::after {
  width: 0.14rem;
  height: 0.14rem;
  top: 0.2rem;
  right: 0.2rem;
  background: currentColor;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: #ffffff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 5vw;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 0.88rem;
}

.footer-logo img {
  width: 9.5rem;
  opacity: 0.86;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero-content {
    padding-top: 9rem;
  }

  .hero-wordmark {
    width: min(440px, 78vw);
  }

  .vision-section,
  .visit-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.85rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 248, 247, 0.94) 0%, rgba(255, 248, 247, 0.84) 58%, rgba(255, 248, 247, 0.24) 100%),
      linear-gradient(0deg, rgba(255, 248, 247, 0.56), rgba(255, 248, 247, 0));
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-content {
    width: min(92vw, 33rem);
    padding: 10.2rem 0 3.8rem 5vw;
  }

  .hero-wordmark {
    width: min(340px, 84vw);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .section-copy h2 {
    font-size: 1.9rem;
  }

  .visit-copy h2 {
    font-size: 2.5rem;
  }

  .editorial-section,
  .visit-section {
    padding-block: 3.4rem;
  }

  .visit-card {
    min-height: 18rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
