:root {
  --paper: #e1e1de;
  --linen: #cacbc7;
  --oat: #aaa99e;
  --sage: #8c9a88;
  --clay: #b77c64;
  --ink: #10110d;
  --deep: #07110d;
  --forest: #111d17;
  --muted: #646663;
  --line: rgba(16, 17, 13, 0.16);
  --white: #eeeee9;
  --shadow: 0 28px 80px rgba(7, 17, 13, 0.2);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(7, 17, 13, 0.82);
  border-bottom: 1px solid rgba(247, 240, 230, 0.16);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px 5px 5px 11px;
  border-left: 1px solid var(--sage);
  border-top: 1px solid var(--sage);
  border-radius: 50%;
  transform: rotate(-18deg);
}

nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: rgba(247, 240, 230, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a:hover,
.brand:hover {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(247, 240, 230, 0.56);
  background: transparent;
  color: var(--white);
}

.button {
  border: 1px solid var(--line);
  padding: 0 22px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.secondary {
  background: rgba(255, 250, 243, 0.5);
  color: var(--ink);
}

.wide {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  padding: clamp(54px, 6vw, 84px) clamp(18px, 5vw, 76px) 28px;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 13, 0.82), rgba(7, 17, 13, 0.48) 35%, rgba(7, 17, 13, 0.12) 62%, transparent 100%),
    linear-gradient(0deg, rgba(7, 17, 13, 0.38), transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero h1 {
  font-size: clamp(3.15rem, 5.2vw, 5.4rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.3rem, 6.2vw, 6.4rem);
  overflow-wrap: break-word;
  hyphens: none;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(247, 240, 230, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-situations {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(247, 240, 230, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
}

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

.hero .primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero .secondary {
  background: rgba(7, 17, 13, 0.18);
  color: var(--white);
  border-color: rgba(247, 240, 230, 0.42);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(247, 240, 230, 0.7);
  font-size: 0.9rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(247, 240, 230, 0.24);
  border-radius: 2px;
  background: rgba(7, 17, 13, 0.24);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: var(--deep);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 56% 38%;
  transform: scale(1.42);
  transform-origin: 78% 12%;
  filter: saturate(0.94) contrast(1.04) brightness(0.9) hue-rotate(2deg);
}

.recognition-section {
  padding-block: clamp(48px, 5vw, 68px);
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(24px, 4vw, 64px);
}

.recognition-grid p {
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading::after,
.booking-panel-heading::after {
  content: "";
  display: block;
  width: clamp(72px, 12vw, 150px);
  height: 8px;
  margin-top: 18px;
  background:
    linear-gradient(92deg, transparent 0 3%, currentColor 4% 86%, transparent 88%),
    linear-gradient(88deg, transparent 0 10%, currentColor 11% 80%, transparent 82%);
  color: rgba(16, 17, 13, 0.84);
  opacity: 0.9;
  clip-path: polygon(0 39%, 7% 26%, 24% 36%, 49% 30%, 73% 42%, 100% 34%, 99% 64%, 75% 58%, 51% 66%, 27% 58%, 8% 70%, 0 62%);
  transform: rotate(-1.4deg);
}

.services {
  background: var(--forest);
  color: var(--white);
}

.services .section-heading::after {
  width: min(100%, 760px);
  max-width: 100%;
  height: 9px;
  color: rgba(247, 240, 230, 0.78);
}

.services .eyebrow,
.services .service-card small {
  color: var(--oat);
}

.services .service-card p {
  color: rgba(247, 240, 230, 0.68);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 7px;
  background: rgba(247, 240, 230, 0.74);
  clip-path: polygon(38% 0, 64% 0, 57% 22%, 70% 48%, 52% 75%, 62% 100%, 34% 100%, 42% 76%, 30% 48%, 44% 20%);
  opacity: 0.46;
  transform: rotate(0.7deg);
}

.service-card h3 {
  margin-top: 0;
}

.service-card p,
.booking-copy p,
.about p,
.instagram-copy p,
.podcast-copy p,
.contact p {
  color: var(--muted);
}

.service-card small {
  display: inline-flex;
  margin-top: 16px;
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 700;
}

.services .service-card p {
  color: rgba(247, 240, 230, 0.68);
}

.services .service-card small {
  color: var(--oat);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-copy::after {
  content: "";
  display: block;
  width: clamp(120px, 20vw, 260px);
  height: 8px;
  margin-top: 18px;
  background:
    linear-gradient(92deg, transparent 0 3%, currentColor 4% 86%, transparent 88%),
    linear-gradient(88deg, transparent 0 10%, currentColor 11% 80%, transparent 82%);
  color: rgba(16, 17, 13, 0.72);
  opacity: 0.9;
  clip-path: polygon(0 39%, 7% 26%, 24% 36%, 49% 30%, 73% 42%, 100% 34%, 99% 64%, 75% 58%, 51% 66%, 27% 58%, 8% 70%, 0 62%);
  transform: rotate(-0.9deg);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 1px 1px 0 rgba(16, 17, 13, 0.18);
  opacity: 0.78;
  transform: rotate(14deg) scaleX(1.12);
}

.instagram-nudge {
  position: relative;
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
}

.instagram-nudge a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(185, 129, 105, 0.5);
  text-underline-offset: 4px;
}

.booking-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-panel-heading {
  position: relative;
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 0;
}

.booking-panel-heading::after {
  width: 100%;
  height: 7px;
  margin-top: 13px;
  color: rgba(16, 17, 13, 0.62);
  transform: rotate(-0.5deg);
}

.booking-panel-heading span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-panel-heading strong {
  font-family: var(--serif);
  font-size: 1.56rem;
  line-height: 1.2;
}

.booking-step {
  display: grid;
  gap: 8px;
}

label,
.label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

select,
input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0 13px;
}

.price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(141, 154, 134, 0.34);
  border-radius: 2px;
  background: rgba(141, 154, 134, 0.12);
}

.price-summary span {
  color: var(--muted);
  font-weight: 600;
}

.price-summary strong {
  font-family: var(--serif);
  font-size: 1.24rem;
}

.privacy-note,
.integration-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-block: 1px solid var(--line);
}

.payment-row span {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.94);
}

.media-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(46px, 6vw, 72px);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.media-copy {
  max-width: 520px;
}

.media-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.media-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.instagram-card,
.podcast-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 176px;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(45, 41, 36, 0.14);
  border-radius: 2px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(7, 17, 13, 0.16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.media-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-card .media-icon {
  color: var(--clay);
}

.podcast-card .media-icon {
  color: var(--sage);
}

.media-icon .media-icon-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-card {
  background:
    linear-gradient(135deg, rgba(7, 17, 13, 0.78) 0%, rgba(7, 17, 13, 0.54) 48%, rgba(7, 17, 13, 0.16) 100%),
    url("assets/mina-mood-profile.jpg") center 42% / cover;
}

.instagram-card:hover,
.podcast-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 129, 105, 0.36);
}

.instagram-card span,
.podcast-card span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instagram-card strong,
.podcast-card strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.14;
}

.instagram-card small,
.podcast-card small {
  color: rgba(247, 240, 230, 0.68);
  font-size: 0.82rem;
}

.podcast-card {
  background:
    linear-gradient(145deg, rgba(7, 17, 13, 0.78) 0%, rgba(7, 17, 13, 0.56) 52%, rgba(7, 17, 13, 0.16) 100%),
    url("assets/mina-mood-door.jpg") center 48% / cover;
}

.podcast-card span {
  color: var(--sage);
}

.store-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--forest);
  color: var(--white);
}

.store-copy {
  max-width: 760px;
}

.store-copy p {
  color: rgba(247, 240, 230, 0.68);
}

.store-card {
  display: grid;
  gap: 12px;
  min-height: 240px;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(247, 240, 230, 0.16);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(7, 17, 13, 0.82), rgba(7, 17, 13, 0.36)),
    url("assets/store-coming-soon.jpg") center 54% / cover;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.store-card:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 240, 230, 0.4);
}

.store-card span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.store-card strong {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.store-card small {
  color: rgba(247, 240, 230, 0.7);
  font-size: 0.92rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--forest);
  color: var(--white);
}

.contact p {
  color: rgba(247, 240, 230, 0.68);
}

.contact div {
  max-width: 720px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: rgba(247, 240, 230, 0.62);
  border-top: 1px solid rgba(247, 240, 230, 0.12);
  background: var(--deep);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-links a {
  color: rgba(247, 240, 230, 0.68);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 240, 230, 0.24);
}

.footer-links a:hover {
  color: var(--white);
  border-bottom-color: rgba(247, 240, 230, 0.72);
}

.legal-page {
  min-height: calc(100vh - 168px);
  padding: clamp(86px, 10vw, 136px) clamp(18px, 5vw, 76px);
  background: var(--white);
}

.legal-document {
  max-width: 820px;
}

.legal-document h1 {
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  color: var(--ink);
}

.legal-document p {
  max-width: 74ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-document a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(185, 129, 105, 0.48);
  text-underline-offset: 4px;
}

.legal-updated {
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.store-page {
  min-height: calc(100vh - 168px);
  display: grid;
  place-items: center;
  padding: clamp(86px, 10vw, 136px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(7, 17, 13, 0.9), rgba(7, 17, 13, 0.58) 42%, rgba(7, 17, 13, 0.14)),
    url("assets/store-coming-soon.jpg") center 50% / cover;
  color: var(--white);
}

.store-hero {
  width: min(760px, 100%);
}

.store-hero p {
  max-width: 58ch;
  color: rgba(247, 240, 230, 0.76);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.store-hero .button {
  margin-top: 22px;
}

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

  .site-header nav {
    display: none;
  }

  .hero,
  .booking-section,
  .about,
  .media-section,
  .store-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .hero-visual img {
    object-position: 62% 32%;
    transform: scale(1.3);
    transform-origin: 76% 12%;
  }

  .booking-copy {
    position: static;
  }

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

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

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

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

  .header-cta {
    padding: 0 13px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .section,
  .hero {
    padding-inline: 16px;
  }

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

  .media-section {
    gap: 22px;
    padding-block: 40px;
  }

  .media-copy h2 {
    font-size: 1.8rem;
  }

  .media-links {
    gap: 8px;
  }

  .instagram-card,
  .podcast-card {
    min-height: 132px;
    gap: 6px;
    padding: 14px;
    box-shadow: none;
  }

  .media-icon {
    top: 12px;
    right: 12px;
    width: 23px;
    height: 23px;
  }

  .instagram-card strong,
  .podcast-card strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .instagram-card small,
  .podcast-card small {
    display: none;
  }

}
