:root {
  --ysl-pine: #1c3d34;
  --ysl-pine-deep: #122821;
  --ysl-sage: #5d7d6e;
  --ysl-gold: #c4a35a;
  --ysl-gold-deep: #a6863e;
  --ysl-cream: #f6f1e6;
  --ysl-linen: #ebe4d4;
  --ysl-ink: #24312c;
  --ysl-muted: #5d6b64;
  --ysl-white: #fffdf8;
  --ysl-line: rgba(28, 61, 52, 0.12);
  --ysl-shadow: 0 18px 40px rgba(18, 40, 33, 0.12);
  --ysl-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --ysl-sans: "Figtree", "Segoe UI", sans-serif;
  --ysl-top: 36px;
  --ysl-header: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ysl-header) + 12px);
}

body {
  margin: 0;
  color: var(--ysl-ink);
  background: var(--ysl-cream);
  font-family: var(--ysl-sans);
  font-size: 16.5px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.ysl-logo__text {
  font-family: var(--ysl-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ysl-pine);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1rem;
}

figure {
  margin: 0;
}

.ysl-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--ysl-header) + 16px);
}

.ysl-skip {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 80;
  background: var(--ysl-pine);
  color: var(--ysl-cream);
  padding: 8px 12px;
}

.ysl-skip:focus {
  top: 12px;
}

.ysl-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ysl-sage);
}

.ysl-eyebrow--gold {
  color: var(--ysl-gold);
}

.ysl-topbar {
  height: var(--ysl-top);
  background: var(--ysl-pine-deep);
  color: rgba(246, 241, 230, 0.78);
  font-size: 0.76rem;
}

.ysl-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.ysl-topbar a:hover {
  color: var(--ysl-gold);
}

.ysl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--ysl-header);
  background: rgba(246, 241, 230, 0.96);
  backdrop-filter: blur(10px);
  color: var(--ysl-pine);
  border-bottom: 1px solid var(--ysl-line);
}

.ysl-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(18, 40, 33, 0.08);
}

.ysl-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ysl-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ysl-logo__img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--ysl-white);
  border: 1px solid var(--ysl-line);
}

.ysl-logo__mark {
  display: flex;
  flex-direction: column;
}

.ysl-logo__text {
  margin: 0;
  color: var(--ysl-pine);
  font-size: 1.5rem;
  line-height: 1;
}

.ysl-logo__sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ysl-sage);
  font-weight: 600;
}

.ysl-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ysl-nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ysl-nav-list a {
  color: var(--ysl-sage);
  font-size: 0.94rem;
  font-weight: 600;
}

.ysl-nav-list a:hover,
.ysl-nav-list a.is-active {
  color: var(--ysl-pine);
}

.ysl-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.ysl-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ysl-pine);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ysl-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ysl-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.ysl-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ysl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.ysl-btn--gold {
  background: var(--ysl-gold);
  color: var(--ysl-pine-deep);
}

.ysl-btn--gold:hover {
  background: var(--ysl-gold-deep);
  color: var(--ysl-white);
}

.ysl-btn--ghost {
  background: transparent;
  color: var(--ysl-cream);
  border: 1px solid rgba(246, 241, 230, 0.45);
}

.ysl-btn--ghost:hover {
  background: rgba(246, 241, 230, 0.12);
}

.ysl-btn--full {
  width: 100%;
}

.ysl-hero {
  position: relative;
  min-height: calc(100vh - var(--ysl-top) - var(--ysl-header));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ysl-cream);
}

.ysl-hero__media {
  position: absolute;
  inset: 0;
}

.ysl-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ysl-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 40, 33, 0.82) 0%, rgba(18, 40, 33, 0.35) 58%, rgba(18, 40, 33, 0.12) 100%);
}

.ysl-hero__copy {
  position: relative;
  z-index: 1;
  padding: 80px 0 72px;
  max-width: 640px;
  margin-left: max(20px, calc((100% - 1120px) / 2));
}

.ysl-hero h1 {
  color: var(--ysl-cream);
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 11ch;
}

.ysl-lead {
  font-size: 1.08rem;
  max-width: 44ch;
  color: rgba(246, 241, 230, 0.88);
}

.ysl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 22px;
}

.ysl-hero__note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(246, 241, 230, 0.68);
  max-width: 48ch;
}

.ysl-hours {
  background: var(--ysl-white);
  border-bottom: 1px solid var(--ysl-line);
  padding: 0;
}

.ysl-hours__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ysl-hours__item {
  padding: 22px 8px;
  border-right: 1px solid var(--ysl-line);
}

.ysl-hours__item:last-child {
  border-right: 0;
}

.ysl-hours__label {
  margin: 0 0 4px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ysl-sage);
  font-weight: 700;
}

.ysl-hours__value {
  margin: 0;
  font-family: var(--ysl-display);
  color: var(--ysl-pine);
  font-size: 1.2rem;
}

.ysl-section {
  padding: 96px 0;
}

.ysl-section__intro {
  max-width: 620px;
  margin-bottom: 44px;
}

.ysl-section__intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.ysl-about {
  background: var(--ysl-cream);
}

.ysl-about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.ysl-about__copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.ysl-about__media {
  position: relative;
}

.ysl-about__media::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 28px;
  width: 18px;
  height: 62%;
  background: var(--ysl-gold);
}

.ysl-about__media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 2px;
}

.ysl-about__media figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--ysl-muted);
  letter-spacing: 0.04em;
}

.ysl-checklist {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ysl-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.ysl-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  background: var(--ysl-gold);
}

.ysl-care {
  background: var(--ysl-linen);
}

.ysl-care__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ysl-card {
  background: var(--ysl-white);
  overflow: hidden;
  box-shadow: var(--ysl-shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 240px;
}

.ysl-card__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.ysl-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
}

.ysl-card__index {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--ysl-gold-deep);
  font-weight: 700;
}

.ysl-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  font-weight: 600;
  color: var(--ysl-sage);
  border-bottom: 1px solid var(--ysl-gold);
  align-self: flex-start;
}

.ysl-path {
  background: var(--ysl-pine);
  color: var(--ysl-cream);
}

.ysl-path h2,
.ysl-path h3 {
  color: var(--ysl-cream);
}

.ysl-path .ysl-eyebrow {
  color: var(--ysl-gold);
}

.ysl-path__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.ysl-path__list li {
  padding: 8px 22px 8px 0;
  border-right: 1px solid rgba(246, 241, 230, 0.14);
}

.ysl-path__list li:last-child {
  border-right: 0;
  padding-right: 0;
}

.ysl-path__num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--ysl-display);
  font-size: 2rem;
  color: var(--ysl-gold);
}

.ysl-faq {
  background: var(--ysl-cream);
}

.ysl-faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.ysl-faq__item {
  background: var(--ysl-white);
  border-left: 3px solid var(--ysl-gold);
  margin-bottom: 10px;
  padding: 4px 18px 4px 20px;
}

.ysl-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}

.ysl-faq__item summary::-webkit-details-marker {
  display: none;
}

.ysl-faq__item p {
  color: var(--ysl-muted);
  padding-bottom: 12px;
}

.ysl-contact {
  padding-bottom: 0;
  background: var(--ysl-linen);
}

.ysl-contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding-bottom: 56px;
}

.ysl-contact__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ysl-contact__list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ysl-sage);
  margin-bottom: 4px;
}

.ysl-contact__list a:hover {
  color: var(--ysl-gold-deep);
}

address,
.ysl-contact__list p {
  font-style: normal;
  margin: 0;
}

.ysl-form {
  background: var(--ysl-white);
  padding: 30px;
  box-shadow: var(--ysl-shadow);
  display: grid;
  gap: 14px;
}

.ysl-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 0.9rem;
}

.ysl-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ysl-form input,
.ysl-form textarea,
.ysl-form select {
  width: 100%;
  border: 1px solid var(--ysl-line);
  border-radius: 2px;
  padding: 11px 12px;
  font: inherit;
  background: var(--ysl-cream);
}

.ysl-form input:focus,
.ysl-form textarea:focus,
.ysl-form select:focus {
  outline: 2px solid var(--ysl-gold);
  border-color: transparent;
}

.ysl-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ysl-form__legal {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ysl-muted);
  font-weight: 400;
}

.ysl-form__legal a {
  text-decoration: underline;
  color: var(--ysl-pine);
}

.ysl-form__status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 500;
}

.ysl-form__status.is-success {
  color: var(--ysl-sage);
}

.ysl-form__status.is-error {
  color: #9a3b2a;
}

.ysl-map {
  height: 360px;
}

.ysl-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ysl-footer {
  background: var(--ysl-pine-deep);
  color: rgba(246, 241, 230, 0.82);
  padding: 64px 0 0;
}

.ysl-footer .ysl-logo__text {
  color: var(--ysl-cream);
}

.ysl-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.ysl-footer__heading {
  margin: 0 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ysl-gold);
  font-weight: 700;
}

.ysl-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ysl-footer__links li {
  margin-bottom: 8px;
}

.ysl-footer a:hover {
  color: var(--ysl-cream);
}

.ysl-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.ysl-footer__bar {
  border-top: 1px solid rgba(246, 241, 230, 0.12);
  padding: 16px 0 22px;
  font-size: 0.88rem;
}

.ysl-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ysl-footer__bar p {
  margin: 0;
}

.ysl-footer__bar a {
  margin-left: 10px;
  text-decoration: underline;
}

.ysl-page {
  padding: 48px 0 88px;
}

.ysl-page__inner {
  max-width: 760px;
}

.ysl-article__header h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ysl-article__body h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.ysl-404 {
  padding: 40px 0 80px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .ysl-hero__copy,
  .ysl-about__grid,
  .ysl-care__grid,
  .ysl-path__list,
  .ysl-faq__layout,
  .ysl-contact__grid,
  .ysl-hours__row,
  .ysl-footer__grid,
  .ysl-card {
    grid-template-columns: 1fr;
  }

  .ysl-hero {
    min-height: 78vh;
  }

  .ysl-hero__copy {
    margin-left: 20px;
    margin-right: 20px;
    padding: 48px 0 40px;
  }

  .ysl-about__media img,
  .ysl-card__media img {
    min-height: 280px;
    height: 42vh;
  }

  .ysl-hours__item {
    border-right: 0;
    border-bottom: 1px solid var(--ysl-line);
  }

  .ysl-path__list li {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 241, 230, 0.14);
    padding: 18px 0;
  }
}

@media (max-width: 760px) {
  .ysl-topbar {
    display: none;
  }

  .ysl-toggle {
    display: block;
  }

  .ysl-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--ysl-header);
    background: var(--ysl-pine-deep);
    padding: 18px 22px 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .ysl-nav.is-open {
    display: flex;
  }

  .ysl-nav-list {
    flex-direction: column;
    gap: 14px;
  }

  .ysl-nav-list a {
    color: var(--ysl-cream);
  }

  .ysl-form__split,
  .ysl-footer__bar-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ysl-section {
    padding: 64px 0;
  }
}
