/* Design DNA: Full-bleed cinematic hero with oversized serif headline over dawn beach photo; airy sea-glass palette; calm wellness mood */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

:root {
  --bg: #F3EDE3;
  --text: #1A2B2E;
  --muted: #5A7175;
  --accent: #2A7A7B;
  --accent-coral: #E07A5F;
  --line: rgba(26, 43, 46, 0.12);
  --radius: 12px;
  --maxw: 1140px;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-coral); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
}

/* ---- wrap ---- */
.yb-wrap {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

/* ---- header / nav / burger ---- */
.yb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s, box-shadow 0.3s;
}

.yb-header--transparent {
  background: linear-gradient(to bottom, rgba(26, 43, 46, 0.55) 0%, transparent 100%);
}

.yb-header--solid {
  background: var(--text);
  box-shadow: 0 2px 20px rgba(26, 43, 46, 0.15);
}

.yb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.yb-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.yb-logo span { color: var(--accent-coral); }

.yb-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.yb-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.yb-nav a:hover,
.yb-nav a.yb-nav__active { color: var(--accent-coral); }

.yb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.yb-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.yb-burger.yb-burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.yb-burger.yb-burger--open span:nth-child(2) { opacity: 0; }
.yb-burger.yb-burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- hero ---- */
.yb-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.yb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.yb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 43, 46, 0.75) 0%,
    rgba(26, 43, 46, 0.25) 45%,
    rgba(26, 43, 46, 0.1) 100%
  );
  z-index: 1;
}

.yb-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

.yb-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-coral);
  margin-bottom: 1rem;
}

.yb-hero__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  color: #fff;
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

.yb-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
  margin-bottom: 2rem;
}

.yb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.yb-page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  background: var(--text);
  color: #fff;
}

.yb-page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
}

.yb-page-hero__lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 55ch;
  font-size: 1.0625rem;
}

/* ---- sections ---- */
.yb-section {
  padding: 5rem 0;
}

.yb-section--alt { background: #fff; }

.yb-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.yb-section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.yb-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.yb-section__desc {
  color: var(--muted);
  font-size: 1.0625rem;
}

.yb-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.yb-feature {
  padding: 2rem 1.5rem;
  border-left: 3px solid var(--accent);
}

.yb-feature__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.yb-feature__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.yb-feature__text {
  color: var(--muted);
  font-size: 0.9375rem;
}

.yb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.yb-split__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.yb-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yb-split__body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.yb-split__body p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.yb-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.yb-value {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.yb-value__title {
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.yb-value__text {
  color: var(--muted);
  font-size: 0.9375rem;
}

.yb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.yb-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.yb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 43, 46, 0.1);
}

.yb-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.yb-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yb-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yb-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.yb-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.yb-card__text {
  color: var(--muted);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1rem;
}

.yb-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
}

.yb-card__price {
  font-weight: 700;
  color: var(--text);
}

.yb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.yb-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.yb-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.yb-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(26, 43, 46, 0.85));
  color: #fff;
}

.yb-gallery__caption h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.yb-gallery__caption p {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.yb-story {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}

.yb-story__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.yb-story__author {
  font-weight: 600;
  font-size: 0.9375rem;
}

.yb-story__role {
  color: var(--muted);
  font-size: 0.8125rem;
}

/* ---- steps ---- */
.yb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.yb-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.yb-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.yb-step__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.yb-step__text {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* ---- stats ---- */
.yb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3.5rem 0;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius);
}

.yb-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.yb-stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

/* ---- cta ---- */
.yb-cta {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.yb-cta__bg {
  position: absolute;
  inset: 0;
}

.yb-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yb-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 46, 0.65);
}

.yb-cta__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem;
  color: #fff;
  max-width: 520px;
}

.yb-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.yb-cta__text {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

/* ---- btn ---- */
.yb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.yb-btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.yb-btn--primary:hover {
  background: #236668;
  border-color: #236668;
  color: #fff;
}

.yb-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.yb-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.yb-btn--coral {
  background: var(--accent-coral);
  color: #fff;
  border-color: var(--accent-coral);
}

.yb-btn--coral:hover {
  background: #c96a52;
  border-color: #c96a52;
  color: #fff;
}

/* ---- form ---- */
.yb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.yb-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.yb-form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--text);
}

.yb-form__group input,
.yb-form__group select,
.yb-form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s;
}

.yb-form__group input:focus,
.yb-form__group select:focus,
.yb-form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.yb-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.yb-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.yb-info-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.yb-info-list strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.yb-info-list span,
.yb-info-list a {
  color: var(--muted);
  font-size: 0.9375rem;
}

.yb-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.yb-hours h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.yb-hours dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.375rem 1.5rem;
  font-size: 0.9375rem;
}

.yb-hours dt { color: var(--muted); }
.yb-hours dd { font-weight: 500; }

.yb-privacy {
  max-width: 760px;
}

.yb-privacy h2 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
}

.yb-privacy h2:first-child { margin-top: 0; }

.yb-privacy p,
.yb-privacy li {
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.yb-privacy ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* ---- footer ---- */
.yb-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.yb-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.yb-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.yb-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.yb-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.yb-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.yb-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.yb-footer__links a:hover { color: var(--accent-coral); }

.yb-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- cookie ---- */
.yb-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 0;
  box-shadow: 0 -4px 24px rgba(26, 43, 46, 0.2);
  transform: translateY(0);
  transition: transform 0.4s;
}

.yb-cookie.yb-cookie--hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.yb-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.yb-cookie__text {
  font-size: 0.875rem;
  flex: 1;
  min-width: 200px;
}

.yb-cookie__text a {
  color: var(--accent-coral);
  text-decoration: underline;
}

.yb-cookie__actions {
  display: flex;
  gap: 0.75rem;
}

.yb-cookie__btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.yb-cookie__btn--accept {
  background: var(--accent);
  color: #fff;
}

.yb-cookie__btn--accept:hover { background: #236668; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .yb-burger { display: flex; }

  .yb-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--text);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
    box-shadow: 0 8px 32px rgba(26, 43, 46, 0.2);
  }

  .yb-nav.yb-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .yb-features,
  .yb-steps,
  .yb-values,
  .yb-cards,
  .yb-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .yb-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .yb-split,
  .yb-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .yb-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .yb-wrap { width: min(100% - 1.5rem, var(--maxw)); }

  .yb-section { padding: 3.5rem 0; }

  .yb-features,
  .yb-steps,
  .yb-values,
  .yb-cards,
  .yb-gallery,
  .yb-stats {
    grid-template-columns: 1fr;
  }

  .yb-hero__actions { flex-direction: column; }
  .yb-hero__actions .yb-btn { width: 100%; text-align: center; }

  .yb-cta__content { padding: 2rem 1.5rem; }

  .yb-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .yb-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .yb-cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .yb-cookie__actions { justify-content: stretch; }
  .yb-cookie__btn { flex: 1; }
}
