:root {
  --ink: #17201d;
  --muted: #60706a;
  --sage: #6e8c77;
  --moss: #2f5d50;
  --aeon-blue: #1969dc;
  --aeon-cyan: #21bed1;
  --aeon-green: #62b946;
  --aeon-yellow: #f1cf42;
  --aeon-orange: #f28c2d;
  --aeon-red: #e33148;
  --clay: #bd7655;
  --ochre: #c59c45;
  --rose: #9b6a72;
  --paper: #fbf7ef;
  --cream: #f3eadc;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(23, 32, 29, 0.18);
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 52px);
  color: white;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 247, 239, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 92px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
  background: white;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.cart-button {
  width: auto;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
}

.cart-button strong {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: currentColor;
  color: var(--paper);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1f2f2a;
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 27, 24, 0.9), rgba(18, 27, 24, 0.48) 45%, rgba(18, 27, 24, 0.12)),
    linear-gradient(180deg, rgba(18, 27, 24, 0.14), rgba(18, 27, 24, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 92vw);
  padding: 120px clamp(18px, 6vw, 76px) 80px;
  color: white;
}

.hero-logo {
  display: block;
  width: min(360px, 78vw);
  margin-bottom: 26px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e6c071;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.92;
  font-weight: 500;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  font-weight: 500;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
}

.hero-content p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--aeon-blue), var(--aeon-cyan) 48%, var(--aeon-green));
  color: white;
}

.button.secondary {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.button.whatsapp {
  background: #25d366;
  color: #10261a;
}

.hero .button.primary {
  background: linear-gradient(135deg, var(--aeon-yellow), var(--aeon-orange));
  color: #24342e;
}

.header-button {
  min-height: 42px;
  padding-inline: 16px;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fffaf1;
}

.quick-bar article {
  min-height: 132px;
  padding: 26px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.quick-bar article:last-child {
  border-right: 0;
}

.quick-bar span {
  display: block;
  margin-bottom: 18px;
  color: var(--aeon-red);
  font-weight: 800;
}

.quick-bar strong {
  display: block;
  margin-bottom: 8px;
}

.quick-bar p,
.intro p,
.contact p,
.journal p,
.ritual-result p,
.card p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.intro p {
  max-width: 760px;
  font-size: 19px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 760px;
}

.session-grid,
.product-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.journal-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 44px rgba(35, 51, 46, 0.08);
}

.session-card,
.journal-grid article {
  padding: 24px;
}

.session-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}

.session-card .session-meta,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #e9efe6;
  color: #315349;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.session-price {
  margin-top: auto;
  color: var(--moss);
  font-size: 24px;
  font-weight: 900;
}

.session-card .button {
  margin-top: 18px;
}

.shop {
  background: #eef2e9;
}

.booking-hero {
  min-height: 76svh;
  display: flex;
  align-items: center;
  padding-top: clamp(120px, 14vw, 170px);
  background:
    linear-gradient(135deg, rgba(33, 190, 209, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(241, 207, 66, 0.2), transparent 34%),
    #fffaf1;
}

.booking-hero > div {
  max-width: 780px;
}

.booking-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.booking-logo {
  box-shadow: 0 20px 60px rgba(23, 32, 29, 0.14);
}

.booking-sessions {
  background: #eef2e9;
}

.about-hero {
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 380px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(120px, 14vw, 170px);
  background:
    linear-gradient(135deg, rgba(98, 185, 70, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(227, 49, 72, 0.13), transparent 34%),
    #fffaf1;
}

.about-copy {
  max-width: 780px;
}

.about-copy p:not(.eyebrow),
.about-text p,
.about-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.about-copy p:not(.eyebrow) {
  font-size: clamp(18px, 2vw, 22px);
}

.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 14px 44px rgba(35, 51, 46, 0.08);
}

.about-panel strong {
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 7vw, 88px);
}

.about-text {
  max-width: 760px;
  font-size: 19px;
}

.admin-page {
  min-height: 100svh;
  padding-top: clamp(120px, 14vw, 160px);
  background: #eef2e9;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-login {
  display: grid;
  max-width: 440px;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-weekdays span {
  padding: 10px;
}

.calendar-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

.calendar-cell {
  min-height: 124px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px;
}

.calendar-cell:nth-child(7n) {
  border-right: 0;
}

.calendar-cell strong,
.calendar-cell span {
  display: block;
}

.calendar-cell strong {
  margin-bottom: 8px;
}

.calendar-cell span {
  margin-top: 6px;
  border-radius: 6px;
  background: #e9efe6;
  padding: 6px;
  color: #214d43;
  font-size: 12px;
  line-height: 1.35;
}

.calendar-cell.is-empty {
  background: #f6f4ee;
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.booking-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
}

.booking-row strong,
.booking-row span,
.booking-row small {
  display: block;
}

.booking-row p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.booking-row small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.shop-heading {
  align-items: center;
}

.shop-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.search-field {
  position: relative;
}

.search-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 12px 14px;
}

.shop-tools input {
  width: min(280px, 72vw);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.filter-row button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.filter-row button.is-active {
  background: linear-gradient(135deg, var(--aeon-blue), var(--aeon-cyan));
  color: white;
}

.product-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
}

.product-art {
  display: grid;
  min-height: 188px;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, var(--tone-a), var(--tone-b));
}

.product-symbol {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  color: white;
  font-family: Georgia, serif;
  font-size: 32px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-actions strong {
  color: var(--moss);
  font-size: 22px;
}

.ritual {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 16px;
  background: #f8f0e7;
}

.ritual-panel,
.ritual-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
}

.ritual-panel {
  background: #fffaf1;
}

.ritual-result {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  background: #263b35;
  color: white;
}

.ritual-result p {
  color: rgba(255, 255, 255, 0.75);
}

.ritual-result strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.ritual-form {
  display: grid;
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.journal-grid article span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(25, 105, 220, 0.24), transparent 28%),
    linear-gradient(315deg, rgba(227, 49, 72, 0.2), transparent 28%),
    var(--ink);
  color: white;
}

.contact p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}

.contact .contact-detail {
  margin: 18px 0 0;
  color: white;
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: flex;
  width: min(430px, 100vw);
  transform: translateX(102%);
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-size: 30px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.cart-empty {
  padding: 24px 18px;
  color: var(--muted);
}

.cart-footer {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #fffaf1;
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
}

.checkout {
  width: 100%;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  border: 0;
  background: rgba(10, 16, 14, 0.42);
}

.scrim.is-open {
  display: block;
}

.booking-dialog {
  width: min(520px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-dialog::backdrop {
  background: rgba(10, 16, 14, 0.46);
}

.booking-dialog form {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.booking-dialog .drawer-header {
  margin: 0 -18px 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .quick-bar,
  .intro,
  .about-hero,
  .about-section,
  .admin-heading,
  .session-grid,
  .product-grid,
  .journal-grid,
  .ritual,
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-row {
    grid-template-columns: 1fr;
  }

  .calendar-weekdays,
  .calendar-grid {
    min-width: 760px;
  }

  .admin-calendar {
    overflow-x: auto;
  }

  .quick-bar article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .shop-heading {
    display: block;
  }

  .shop-tools {
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand small,
  .header-actions .icon-button {
    display: none;
  }

  .brand-logo {
    width: 76px;
    height: 36px;
  }

  .brand-copy {
    display: none;
  }

  .hero-content {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(50px, 18vw, 84px);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-actions {
    display: grid;
  }
}
