/* =========================================================
   TREBACI PATISSERIE
   Clean, Elegant, Minimal Landing Page
   Horizontal Hero Banner Version
   ========================================================= */


/* -------------------------
   ROOT
------------------------- */

:root {
  --orange: #f26f21;
  --orange-dark: #d95c14;
  --orange-soft: #f8dfcf;

  --ink: #201a17;
  --dark: #181411;
  --brown: #6f625b;

  --cream: #f7f2e9;
  --paper: #fffdf8;
  --white: #ffffff;

  --line: rgba(32, 26, 23, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1120px;
  --container-narrow: 820px;

  --header-height: 82px;

  --transition:
    300ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* -------------------------
   RESET
------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;

  background: var(--paper);
  color: var(--ink);

  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

::selection {
  background: var(--orange);
  color: var(--white);
}


/* -------------------------
   LAYOUT
------------------------- */

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 48px), var(--container-narrow));
}

.section {
  padding: 128px 0;
}


/* -------------------------
   TYPOGRAPHY
------------------------- */

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  margin-bottom: 32px;

  font-size: clamp(3.7rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h1 em {
  display: block;
  color: var(--orange);

  font-weight: 500;
}

h2 {
  margin-bottom: 0;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 em {
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;

  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.eyebrow {
  margin-bottom: 22px;

  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-orange {
  color: var(--orange);
}


/* -------------------------
   PRELOADER
------------------------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-content: center;
  gap: 18px;

  background: var(--paper);

  transition:
    opacity 600ms ease,
    visibility 600ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__brand {
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: 0.16em;
}

.preloader__line {
  width: 180px;
  height: 1px;
  overflow: hidden;

  background: var(--line);
}

.preloader__line span {
  display: block;
  width: 100%;
  height: 100%;

  background: var(--orange);

  transform: translateX(-100%);
  animation: preloaderLine 1.2s ease infinite;
}

@keyframes preloaderLine {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}


/* -------------------------
   HEADER
------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  width: 100%;
  height: var(--header-height);

  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    background var(--transition),
    border-color var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
}

.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
}

.main-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.main-navigation a {
  position: relative;

  font-size: 0.76rem;
  font-weight: 500;
}

.main-navigation a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;

  height: 1px;

  background: var(--orange);

  transform: scaleX(0);
  transform-origin: right;

  transition: transform var(--transition);
}

.main-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 10px 0;

  border-bottom: 1px solid var(--ink);

  font-size: 0.74rem;
  font-weight: 600;

  transition:
    color var(--transition),
    border-color var(--transition);
}

.header-cta:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.menu-toggle {
  display: none;

  width: 40px;
  height: 40px;
  padding: 0;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;

  background: var(--ink);

  transition: transform var(--transition);
}


/* -------------------------
   BUTTONS
------------------------- */

.button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.button-group-center {
  justify-content: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 27px;

  border: 1px solid transparent;

  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  cursor: pointer;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

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

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

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

.button-dark:hover {
  background: var(--orange);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

.button-text {
  min-height: auto;
  padding: 8px 0;

  border-bottom-color: var(--ink);
}

.button-text span {
  margin-left: 18px;
}

.button-text-light {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.button-text-light:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;

  padding-bottom: 8px;

  border-bottom: 1px solid currentColor;

  font-size: 0.77rem;
  font-weight: 600;

  transition:
    gap var(--transition),
    color var(--transition);
}

.inline-link:hover {
  gap: 40px;
  color: var(--orange);
}

.inline-link-light {
  color: var(--white);
}


/* -------------------------
   HERO — HORIZONTAL BANNER
------------------------- */

.hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 82px;
}

.hero-banner {
  position: relative;

  width: 100%;
  min-height: 610px;
  aspect-ratio: 16 / 7;

  border-radius: 5px;

  overflow: hidden;

  background: var(--dark);
}

.hero-banner-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
	
  border-radius: 5px;

  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-banner:hover .hero-banner-image {
  transform: scale(1.025);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(20, 15, 12, 0.9) 0%,
      rgba(20, 15, 12, 0.76) 34%,
      rgba(20, 15, 12, 0.38) 60%,
      rgba(20, 15, 12, 0.08) 100%
    );
	opacity: 0.3;
}

.hero-banner-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 610px;
  height: 100%;
  padding: clamp(38px, 5vw, 72px);

  color: var(--white);
}

.hero-copy {
  max-width: 650px;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-banner h1 {
  max-width: 650px;
  margin-bottom: 28px;

  color: var(--white);

  /* font-size: clamp(3.8rem, 6.3vw, 6.8rem); */
  font-size: 50px;
}

.hero-banner h1 em {
  color: var(--orange);
}

.hero-description {
  max-width: 500px;
  margin-bottom: 36px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.95rem;
  line-height: 1.8;
}

.hero-banner-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;

  margin-top: 50px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta span + span {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-badge {
  position: static;

  display: none !important;
  
  gap: 2px;

  min-width: 145px;
  padding: 18px 20px;

  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge span {
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}


/* -------------------------
   INTRO
------------------------- */

.intro {
  background: var(--cream);
}

.section-index {
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
  padding-bottom: 18px;

  border-bottom: 1px solid var(--line);

  color: var(--brown);

  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-content h2 {
  max-width: 750px;
  margin-bottom: 45px;
}

.intro-content > p {
  max-width: 550px;
  margin-left: auto;
  margin-bottom: 0;

  color: var(--brown);

  font-size: 1.03rem;
  line-height: 1.85;
}


/* -------------------------
   FEATURED PRODUCT
------------------------- */

.featured-product {
  background: var(--dark);
  color: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.featured-media {
  height: 700px;
  overflow: hidden;
}

.featured-media img {
  height: 100%;
  object-fit: cover;
}

.featured-content h2 {
  margin-bottom: 36px;
}

.featured-content h2 em {
  display: block;
  color: var(--orange);
}

.featured-content > p:not(.eyebrow) {
  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.67);

  line-height: 1.85;
}

.product-detail {
  display: grid;
  gap: 5px;

  margin-bottom: 38px;
  padding: 20px 0;

  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.product-detail span {
  color: rgba(255, 255, 255, 0.55);

  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}


/* -------------------------
   SECTION HEADING
------------------------- */

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 70px;

  margin-bottom: 66px;
}

.section-heading > p {
  margin-bottom: 0;

  color: var(--brown);

  font-size: 0.92rem;
  line-height: 1.75;
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.64);
}


/* -------------------------
   MENU
------------------------- */

.menu-section {
  background: var(--paper);
}

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

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
	border-radius: inherit;
}

.product-card {
  min-width: 0;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  transition: background var(--transition);
	border-radius: inherit;
}

.product-card:hover {
  background: var(--cream);
}

.product-image {
  position: relative;

  aspect-ratio: 4 / 3;
  overflow: hidden;

  background: var(--cream);
	border-radius: inherit;
}

.product-image img {
  height: 100%;

  object-fit: cover;

  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: inherit;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-info {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 28px;
}

.product-number {
  margin-bottom: 20px;

  color: var(--brown);

  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.product-info p {
  max-width: 260px;
  margin-bottom: 25px;

  color: var(--brown);

  font-size: 0.82rem;
  line-height: 1.7;
}

.product-info strong {
  margin-top: auto;

  font-size: 0.74rem;
}

.product-card-featured {
  background: var(--orange-soft);
}

.featured-label {
  position: absolute;
  top: 16px;
  right: 16px;

  padding: 8px 11px;

  background: var(--orange);
  color: var(--white);

  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.size-guide {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.7fr) auto;
  align-items: center;
  gap: 25px;

  margin-top: 30px;
  padding: 28px 30px;

  border: 1px solid var(--line);
}

.size-guide-intro span {
  display: block;
  margin-bottom: 4px;

  font-family: var(--serif);
  font-size: 1.35rem;
}

.size-guide-intro p {
  margin-bottom: 0;

  color: var(--brown);

  font-size: 0.73rem;
}

.size-item {
  display: grid;
  gap: 4px;

  padding-left: 22px;

  border-left: 1px solid var(--line);
}

.size-item strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.size-item span {
  color: var(--brown);
  font-size: 0.65rem;
}


/* -------------------------
   RITUAL
------------------------- */

.ritual-section {
  background: var(--cream);
  /* background-color: #fffdf8 !important;*/
}

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

  border-top: 1px solid rgba(32, 26, 23, 0.28);
}

.ritual-card {
  /* min-height: 390px; */
  padding: 36px 40px 30px 0;

  border-right: 1px solid rgba(32, 26, 23, 0.28);
}

.ritual-card + .ritual-card {
  padding-left: 40px;
}

.ritual-card:last-child {
  border-right: 0;
}

.ritual-number {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.ritual-symbol {
  margin: 72px 0 36px;

  font-family: var(--serif);
  font-size: 6.5rem;
  line-height: 0.7;
}

.ritual-card p {
  max-width: 250px;
  margin-bottom: 0;

  color: rgba(32, 26, 23, 0.7);

  font-size: 0.82rem;
}


/* -------------------------
   MORE PRODUCTS
------------------------- */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.experience-card {
  background: var(--cream);
}

.experience-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.experience-image img {
  height: 100%;

  object-fit: cover;

  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-card:hover img {
  transform: scale(1.03);
}

.experience-content {
  min-height: 310px;
  padding: 42px;
}

.experience-content h3 {
  max-width: 420px;
}

.experience-content > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 32px;

  color: var(--brown);

  font-size: 0.87rem;
}

.experience-content strong {
  font-size: 0.76rem;
}


/* -------------------------
   MOMENTS
------------------------- */

.moments-section {
  background: var(--cream);
}

.moments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.66fr);
  align-items: end;
  gap: clamp(60px, 10vw, 130px);
}

.moments-content h2 {
  max-width: 680px;
  margin-bottom: 35px;
}

.moments-content > p:last-child {
  max-width: 540px;
  margin-bottom: 0;

  color: var(--brown);

  line-height: 1.85;
}

.addon-list {
  padding: 34px;

  background: var(--paper);
}

.addon-heading {
  padding-bottom: 20px;

  border-bottom: 1px solid var(--line);

  font-family: var(--serif);
  font-size: 1.35rem;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding: 17px 0;

  border-bottom: 1px solid var(--line);

  font-size: 0.78rem;
}

.addon-item:last-child {
  border-bottom: 0;
}


/* -------------------------
   OUTLETS
------------------------- */

.outlets-section {
  background: var(--dark);
  color: var(--white);
}

.outlet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.outlet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;

  border: 1px solid var(--line-light);
	border-radius: 5px;
}

.outlet-image {
  position: relative;

  overflow: hidden;

  background: #28221e;
}

.outlet-card .outlet-image {
  aspect-ratio: 16 / 10;
}

.outlet-image-placeholder {
  display: grid;
  place-items: end start;
  padding: 28px;

  background:
    linear-gradient(135deg, rgba(242, 111, 33, 0.94), rgba(24, 20, 17, 0.72)),
    var(--dark);
}

.outlet-image-placeholder::before {
  content: "03";

  position: absolute;
  top: 22px;
  right: 24px;

  color: rgba(255, 255, 255, 0.45);

  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
}

.outlet-placeholder-copy {
  position: relative;
  z-index: 1;

  display: grid;
  gap: 4px;
}

.outlet-placeholder-copy span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.outlet-placeholder-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
}

.outlet-image img {
  width: 100%;
  height: 100%;
	
	border-radius: 5px;

  object-fit: cover;

  filter: saturate(0.86);

  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.outlet-card:hover img {
  transform: scale(1.025);
}

.outlet-badge {
  position: absolute;
  top: 18px;
  left: 18px;

  padding: 9px 12px;

  background: var(--orange);

  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outlet-content {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 34px;
}

.outlet-title {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;

  margin-bottom: 26px;
}

.outlet-title > span {
  padding-top: 8px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.65rem;
}

.outlet-title h3 {
  margin-bottom: 5px;
}

.outlet-title p {
  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.76rem;
  line-height: 1.65;
}

.outlet-content > p {
  max-width: 470px;
  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 0.83rem;
}

.outlet-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;

  margin-top: auto;
}


/* -------------------------
   FINAL CTA
------------------------- */

.final-cta {
  padding: 145px 0;

  text-align: center;
}

.final-cta-inner h2 {
  margin-bottom: 30px;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 36px;

  color: var(--brown);

  line-height: 1.8;
}


/* -------------------------
   FOOTER
------------------------- */

.site-footer {
  padding: 75px 0 30px;

  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.55fr;
  gap: 50px;

  padding-bottom: 60px;

  border-bottom: 1px solid var(--line);
}

.footer-brand a {
  display: block;
  margin-bottom: 5px;

  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
}

.footer-brand span,
.footer-label {
  color: var(--brown);

  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column p,
.footer-column a {
  margin-bottom: 0;

  font-size: 0.76rem;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-label {
  margin-bottom: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding-top: 28px;

  color: var(--brown);

  font-size: 0.65rem;
}

.footer-bottom p {
  margin-bottom: 0;
}


/* -------------------------
   MOBILE CTA
------------------------- */

.mobile-cta {
  display: none;
}


/* -------------------------
   PRICE MODAL
------------------------- */

.price-modal {
  width: min(820px, calc(100% - 30px));
  max-height: 90vh;
  padding: 55px;

  overflow-y: auto;

  background: var(--paper);
  border: 0;
  color: var(--ink);

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.price-modal::backdrop {
  background: rgba(24, 20, 17, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;

  width: 42px;
  height: 42px;

  background: transparent;
  border: 0;

  font-family: var(--serif);
  font-size: 2rem;

  cursor: pointer;
}

.modal-heading {
  margin-bottom: 40px;
}

.modal-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;

  border-collapse: collapse;
}

th,
td {
  padding: 16px 14px;

  border-bottom: 1px solid var(--line);

  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--brown);

  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  font-size: 0.8rem;
}

.table-highlight {
  background: var(--orange-soft);
}

.modal-size-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;

  margin-top: 30px;

  background: var(--line);
}

.modal-size-guide div {
  display: grid;
  gap: 4px;
  padding: 20px;

  background: var(--paper);
}

.modal-size-guide strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.modal-size-guide span {
  color: var(--brown);
  font-size: 0.66rem;
}

.modal-note {
  margin: 24px 0 0;

  color: var(--brown);

  font-size: 0.67rem;
}


/* -------------------------
   REVEAL ANIMATION
------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* -------------------------
   RESPONSIVE — TABLET
------------------------- */

@media (max-width: 960px) {

  .section {
    padding: 100px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 35px);
    padding-bottom: 70px;
  }

  .hero-banner {
    min-height: 650px;
    aspect-ratio: auto;
  }

  .hero-banner-content {
    min-height: 650px;
  }

  .hero-copy {
    max-width: 590px;
  }

  .hero-banner h1 {
    max-width: 590px;
  }

  .hero-banner-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(20, 15, 12, 0.9) 0%,
        rgba(20, 15, 12, 0.7) 52%,
        rgba(20, 15, 12, 0.2) 100%
      );
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-media {
    height: 650px;
  }

  .featured-content {
    max-width: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 540px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .size-guide {
    grid-template-columns: repeat(3, 1fr);
  }

  .size-guide-intro {
    grid-column: 1 / -1;
  }

  .size-guide .button {
    grid-column: 1 / -1;
  }

  .moments-grid {
    grid-template-columns: 1fr;
  }

  .moments-content {
    max-width: 720px;
  }

  .addon-list {
    max-width: 580px;
    margin-left: auto;
  }

  .outlet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outlet-card-primary {
    grid-column: 1 / -1;
  }

  .outlet-card-secondary {
    max-width: none;
    margin-left: 0;
  }

}


/* -------------------------
   RESPONSIVE — MOBILE NAV
------------------------- */

@media (max-width: 760px) {

  :root {
    --header-height: 72px;
  }

  body {
    padding-bottom: 64px;
  }

  .container,
  .container-narrow {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;

    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;

    background: var(--paper);
    border-bottom: 1px solid var(--line);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);

    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .main-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-navigation a {
    padding: 17px 6px;

    border-bottom: 1px solid var(--line);
  }

  .main-navigation a:last-child {
    border-bottom: 0;
  }

  .menu-toggle.is-active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: clamp(3.6rem, 15vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 58px;
  }

  .hero .container {
    width: calc(100% - 24px);
  }

  .hero-banner {
    min-height: 700px;
    aspect-ratio: auto;
  }

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

  .hero-banner-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(20, 15, 12, 0.52) 0%,
        rgba(20, 15, 12, 0.72) 45%,
        rgba(20, 15, 12, 0.96) 100%
      );
  }

  .hero-banner-content {
    justify-content: flex-end;

    min-height: 700px;
    padding: 30px 26px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-banner h1 {
    max-width: 100%;

    font-size: clamp(3.25rem, 14vw, 5rem);
    line-height: 0.95;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-banner-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;

    margin-top: 38px;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-meta span + span {
    padding-left: 0;
    border-left: 0;
  }

  .hero-badge {
    position: absolute;
    top: 18px;
    right: 18px;

    min-width: 120px;
    padding: 14px 16px;
  }

  .featured-media {
    height: 540px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-info {
    min-height: 220px;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .ritual-card {
    min-height: auto;
    padding: 36px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(32, 26, 23, 0.28);
  }

  .ritual-card + .ritual-card {
    padding-left: 0;
  }

  .ritual-card:last-child {
    border-bottom: 0;
  }

  .ritual-symbol {
    margin: 40px 0 28px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-content {
    min-height: auto;
    padding: 32px;
  }

  .outlet-content {
    padding: 28px;
  }

  .outlet-grid {
    grid-template-columns: 1fr;
  }

  .outlet-card-primary {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    height: 64px;

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-cta a:last-child {
    background: var(--orange);
    color: var(--white);
  }

}


/* -------------------------
   RESPONSIVE — SMALL MOBILE
------------------------- */

@media (max-width: 520px) {

  .button-group {
    align-items: stretch;
    flex-direction: column;
  }

  .button-group .button {
    width: 100%;
  }

  .button-group .button-text {
    width: fit-content;
  }

  .hero-banner {
    min-height: 720px;
  }

  .hero-banner-content {
    min-height: 720px;
  }

  .hero-banner h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-banner .button-group {
    align-items: flex-start;
  }

  .hero-banner .button-primary {
    width: 100%;
  }

  .hero-banner .button-text {
    width: fit-content;
  }

  .featured-media {
    height: 450px;
  }

  .intro-content > p {
    margin-left: 0;
  }

  .size-guide {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 18px;
  }

  .size-item {
    padding-left: 12px;
  }

  .size-item strong {
    font-size: 1.25rem;
  }

  .size-item span {
    font-size: 0.56rem;
  }

  .experience-image {
    aspect-ratio: 4 / 3;
  }

  .addon-list {
    padding: 26px;
  }

  .outlet-card .outlet-image {
    aspect-ratio: 4 / 3;
  }

  .outlet-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .outlet-actions .button {
    width: 100%;
  }

  .price-modal {
    padding: 48px 22px 30px;
  }

  .modal-size-guide div {
    padding: 15px 10px;
  }

}


/* -------------------------
   REDUCED MOTION
------------------------- */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}
