/* ============================================
   Maya Bilalis — original styles
   Brand: #7A316B magenta · #B89273 tan · cream + charcoal
   ============================================ */

:root {
  --magenta: #7A316B;
  --magenta-deep: #5C2451;
  --tan: #B89273;
  --tan-soft: #D4B89D;
  --cream: #FAF7F2;
  --cream-warm: #F2EBE0;
  --ink: #2A2024;
  --ink-soft: #5A4F50;
  --line: #E8DFD3;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1280px;
  --pad: clamp(20px, 5vw, 60px);

  --t-fast: 200ms ease;
  --t-med: 400ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--magenta); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
em { font-style: italic; color: var(--magenta); font-weight: 500; }
p { line-height: 1.6; margin: 0 0 1em; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-right { justify-content: flex-end; }
.nav-cta {
  background: var(--magenta);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
}
.nav-cta:hover { background: var(--magenta-deep); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.brand-lg .brand-logo { height: 56px; }
.footer .brand-logo {
  filter: brightness(0) invert(1) sepia(0.2) saturate(2) hue-rotate(180deg);
  opacity: 0.95;
}
/* Legacy text-mark fallback (kept for any other usages) */
.brand-mark {
  color: var(--magenta);
  font-size: 22px;
  display: inline-flex;
}
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.brand-name em { color: var(--ink); font-style: italic; font-weight: 400; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 80vh;
  min-height: 540px;
  max-height: 760px;
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; }
.hero-image img,
.hero-image .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  display: block;
  background: var(--ink);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero-content { z-index: 2; }
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: var(--pad);
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.85;
}
.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  margin: 0 0 36px;
  font-weight: 400;
  max-width: 18ch;
}
.hero-title em { color: var(--white); opacity: 0.95; }
.hero-sub {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 44ch;
  margin: 14px 0 26px;
}
.hero-cta {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--t-med);
}
.hero-cta:hover {
  background: var(--white);
  color: var(--ink) !important;
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--white);
  animation: scrollLine 2.2s cubic-bezier(.5,0,.5,1) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}
.hero-scroll-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================
   MARQUEE — animated brand keywords
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.marquee-track .dot {
  color: var(--tan-soft);
  font-style: normal;
  font-size: 0.6em;
  display: inline-flex;
  align-items: center;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TITLE DECORATIONS — animated reveal + accent line
   ============================================ */
.about-headline,
.services-headline,
.testimonials-headline,
.discover-title,
.page-title {
  position: relative;
  display: inline-block;
}
.about-headline::after,
.services-headline::after,
.testimonials-headline::after,
.discover-title::after,
.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--magenta);
  margin: 22px auto 0;
  transform-origin: left center;
  animation: lineGrow 900ms cubic-bezier(.2,.8,.2,1) 200ms both;
}
.about-headline::after { margin-left: 0; }
.services-headline,
.testimonials-headline,
.discover-title,
.page-title {
  display: block;
}
.services-headline::after,
.testimonials-headline::after,
.discover-title::after,
.page-title::after {
  margin-left: auto;
  margin-right: auto;
}
@keyframes lineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* Reveal-on-scroll utility */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Italic em accents in headlines */
.hero-title em,
.about-headline em,
.services-headline em,
.testimonials-headline em,
.discover-title em,
.page-title em {
  position: relative;
  display: inline-block;
}
.hero-title em::after,
.about-headline em::after,
.discover-title em::after,
.page-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.08em;
  background: currentColor;
  opacity: 0.18;
  transform: scaleX(0);
  transform-origin: left center;
  animation: emUnderline 1.1s cubic-bezier(.2,.8,.2,1) 600ms both;
}
@keyframes emUnderline {
  to { transform: scaleX(1); }
}

/* ============================================
   PILLARS — three large serif words
   ============================================ */
.pillars {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.pillars-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 480px;
}
.pillars-words {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-word {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--t-med), transform var(--t-med), font-style var(--t-med);
  display: inline-block;
  width: fit-content;
  text-decoration: none;
}
.pillar-word.offset { margin-left: clamp(40px, 9vw, 110px); }
.pillar-word:hover,
.pillar-word.is-active {
  font-style: italic;
  color: var(--magenta);
}
.pillars-words:hover .pillar-word:not(:hover) {
  opacity: 0.55;
}
.pillars-art {
  position: relative;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blob-mask {
  position: relative;
  width: clamp(280px, 38vw, 460px);
  aspect-ratio: 1 / 1;
  border-radius: 62% 38% 56% 44% / 48% 62% 38% 52%;
  overflow: hidden;
  background: var(--tan-soft);
  opacity: 0;
  transform: scale(0.85) translateX(20px);
  transition: opacity 500ms ease, transform 600ms cubic-bezier(.2,.8,.2,1), border-radius 600ms ease;
  box-shadow: 0 30px 60px rgba(184, 146, 115, 0.25);
}
.blob-mask.is-visible {
  opacity: 1;
  transform: scale(1) translateX(0);
}
.blob-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 350ms ease;
}
.blob-mask.is-swapping img { opacity: 0; }
/* gentle morph on each reveal */
.blob-mask[data-shape="0"] { border-radius: 62% 38% 56% 44% / 48% 62% 38% 52%; }
.blob-mask[data-shape="1"] { border-radius: 38% 62% 44% 56% / 62% 48% 52% 38%; }
.blob-mask[data-shape="2"] { border-radius: 50% 50% 38% 62% / 38% 56% 44% 62%; }
.pillars-hint {
  text-align: center;
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.65;
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser {
  padding: clamp(70px, 10vw, 120px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.section-eyebrow-sm {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 16px;
  font-weight: 500;
}
.section-eyebrow-sm.centered { text-align: center; }
.about-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 1.1;
}
.about-lead {
  font-size: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}
.about-body {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.text-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta);
  padding-bottom: 3px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.text-link:hover { color: var(--magenta-deep); border-color: var(--magenta-deep); }
.about-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SERVICES — three program tiles
   ============================================ */
.services {
  background: var(--cream-warm);
  padding: clamp(70px, 10vw, 130px) var(--pad);
}
.services-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.services-headline {
  text-align: center;
  font-size: clamp(34px, 4.5vw, 52px);
  margin: 0 0 60px;
  font-weight: 400;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-tile {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(122, 49, 107, 0.1);
}
.service-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.service-tile:hover .service-img img { transform: scale(1.05); }
.service-tile h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 28px 28px 12px;
}
.service-tile p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 28px 20px;
  flex-grow: 1;
}
.service-tile .text-link {
  margin: 0 28px 28px;
  align-self: flex-start;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-headline {
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 24px;
  font-weight: 400;
}
.testimonials-lead {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 60ch;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.testimonial {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 32px;
  margin: 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--magenta);
  opacity: 0.25;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 16px 0 22px;
  position: relative;
  z-index: 1;
}
.testimonial figcaption {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--magenta);
}

/* ============================================
   BLOG TEASER (uses .shop-head + .cards)
   ============================================ */
.blog-teaser {
  padding: 60px var(--pad) 100px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--cream);
}

/* ============================================
   SHOP / RESOURCES
   ============================================ */
.shop {
  padding: 60px var(--pad) 100px;
  max-width: var(--max);
  margin: 0 auto;
}
.shop-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.section-eyebrow {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0;
}
.dark-button {
  background: var(--ink);
  color: var(--white) !important;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--t-fast);
}
.dark-button:hover { background: var(--magenta); }
.dark-button.wide { width: 100%; padding: 16px 28px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(122, 49, 107, 0.12);
}
.card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-warm);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body {
  padding: 18px 20px 22px;
}
.card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
  font-weight: 500;
}
.card-body h4 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 500;
}
.card-body p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================
   MEET MAYA
   ============================================ */
.meet {
  padding: 0 var(--pad) 100px;
  max-width: var(--max);
  margin: 0 auto;
}
.meet-image {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
}
.meet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meet-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(30px, 6vw, 70px);
  background: linear-gradient(180deg, transparent 0%, rgba(42, 32, 36, 0.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.meet-overlay h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 24px;
  font-weight: 400;
}
.meet-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}
.tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink) !important;
  font-weight: 500;
  transition: background var(--t-fast);
}
.tab.active { background: var(--ink); color: var(--white) !important; }
.tab:hover:not(.active) { background: var(--cream-warm); }

/* ============================================
   DISCOVER / BOOKING
   ============================================ */
.discover {
  background: var(--cream-warm);
  padding: clamp(70px, 10vw, 130px) var(--pad);
}
.discover-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.discover-title {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 24px;
  font-weight: 400;
}
.discover-lead {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 50ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.discover-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.discover-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.discover-form .row:nth-child(3) { grid-template-columns: 1fr; }

.discover-form input,
.discover-form select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--t-fast);
}
.discover-form input:focus,
.discover-form select:focus {
  outline: none;
  border-color: var(--magenta);
}
.discover-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237A316B' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}
.terms {
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.terms a { text-decoration: underline; }

/* ============================================
   INSTAGRAM
   ============================================ */
.insta {
  padding: 80px var(--pad) 100px;
  max-width: var(--max);
  margin: 0 auto;
}
.insta-handle {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: var(--ink-soft);
}
.insta-handle a { color: var(--magenta); font-weight: 500; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.insta-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med), filter var(--t-med);
  filter: saturate(0.9);
}
.insta-grid a:hover img { transform: scale(1.05); filter: saturate(1.1); }

/* ============================================
   BLOG PAGE
   ============================================ */
.page-header {
  padding: clamp(70px, 10vw, 120px) var(--pad) clamp(40px, 6vw, 70px);
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
}
.page-title {
  font-size: clamp(48px, 7vw, 88px);
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 1.05;
}
.page-lead {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Featured post — large card */
.featured-post {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(122, 49, 107, 0.08);
  transition: transform var(--t-med), box-shadow var(--t-med);
  text-decoration: none;
  color: inherit;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px rgba(122, 49, 107, 0.14);
}
.featured-img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.featured-card:hover .featured-img img { transform: scale(1.04); }
.featured-body {
  padding: clamp(30px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin: 14px 0 18px;
  font-weight: 500;
  line-height: 1.15;
}
.featured-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 22px;
}

/* Blog grid section */
.blog-grid-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.filter {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter:hover { border-color: var(--magenta); color: var(--magenta); }
.filter.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.blog-cards { grid-template-columns: repeat(3, 1fr); }
.blog-cards .card { display: flex; flex-direction: column; }
.blog-cards .card .card-body { display: flex; flex-direction: column; flex-grow: 1; }
.blog-cards .card p { flex-grow: 1; margin-bottom: 16px; }
.blog-cards .card .text-link { align-self: flex-start; font-size: 11px; }
.card.is-hidden { display: none; }

/* Newsletter */
.newsletter {
  background: var(--cream-warm);
  padding: clamp(70px, 10vw, 120px) var(--pad);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0 0 12px;
  font-weight: 400;
}
.newsletter-inner p {
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
}
.newsletter-form input:focus { outline: none; border-color: var(--magenta); }

@media (max-width: 880px) {
  .featured-card { grid-template-columns: 1fr; }
  .blog-cards { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .dark-button { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--pad) 30px;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-lg .brand-name { font-size: 28px; }
.brand-lg .brand-name em { color: var(--tan-soft); }
.brand-tag {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan-soft);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--tan-soft);
  font-weight: 600;
}
.footer-col p,
.footer-col ul {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(250, 247, 242, 0.75);
}
.footer-col a:hover { color: var(--tan-soft); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
}
.socials { display: flex; gap: 18px; margin: 0; }
.socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.socials a:hover { border-color: var(--tan-soft); color: var(--tan-soft); }

/* ============================================
   CALENDAR / SERVICE MENU EMBED
   ============================================ */
.calendar {
  background: var(--cream);
  padding: clamp(70px, 10vw, 130px) var(--pad);
}
.calendar-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.calendar .discover-lead {
  max-width: 56ch;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.calendar-embed {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 40px);
  box-shadow: 0 30px 60px rgba(122, 49, 107, 0.08);
  min-height: 600px;
}
.calendar-embed iframe {
  width: 100%;
  min-height: 600px;
  display: block;
}

/* ============================================
   CHAT WIDGET (demo)
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  font-family: var(--sans);
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: var(--magenta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(122, 49, 107, 0.4), 0 0 0 0 rgba(122, 49, 107, 0.5);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  animation: chatPulse 2.6s ease-out infinite;
}
.chat-toggle:hover { transform: scale(1.06); background: var(--magenta-deep); }
.chat-toggle svg { width: 26px; height: 26px; }
.chat-toggle .chat-icon-close { display: none; }
.chat-widget.is-open .chat-toggle { animation: none; }
.chat-widget.is-open .chat-icon-open { display: none; }
.chat-widget.is-open .chat-icon-close { display: block; }
@keyframes chatPulse {
  0% { box-shadow: 0 12px 28px rgba(122, 49, 107, 0.4), 0 0 0 0 rgba(122, 49, 107, 0.5); }
  60%, 100% { box-shadow: 0 12px 28px rgba(122, 49, 107, 0.4), 0 0 0 22px rgba(122, 49, 107, 0); }
}

.chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 70vh;
  transform-origin: bottom right;
  animation: chatPanelIn 280ms cubic-bezier(.2,.8,.2,1);
}
.chat-widget.is-open .chat-panel { display: flex; }
@keyframes chatPanelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  color: var(--white);
}
.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4);
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-name { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.chat-status {
  font-size: 11px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6cda8c;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(108, 218, 140, 0.7);
  animation: chatPulse 1.8s ease-out infinite;
}

.chat-body {
  padding: 18px;
  overflow-y: auto;
  flex-grow: 1;
  background: var(--cream);
}
.chat-msg {
  max-width: 85%;
  margin-bottom: 10px;
  animation: msgIn 280ms ease both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg p {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.chat-msg-in p {
  background: var(--white);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-msg-out { margin-left: auto; }
.chat-msg-out p {
  background: var(--magenta);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-quick {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chat-quick button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--magenta);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.chat-quick button:hover {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.chat-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
}
.chat-input input:focus { outline: none; border-color: var(--magenta); }
.chat-input button {
  width: 42px; height: 42px;
  border: 0;
  background: var(--magenta);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.chat-input button:hover { background: var(--magenta-deep); }
.chat-input button svg { width: 16px; height: 16px; }

.chat-foot {
  text-align: center;
  font-size: 10px;
  color: var(--ink-soft);
  padding: 8px;
  margin: 0;
  background: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 880px) {
  .nav-inner { grid-template-columns: 1fr auto 1fr; gap: 16px; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: flex; justify-self: end; grid-column: 3; }
  .brand { grid-column: 1 / 2; }
  .brand-name { font-size: 16px; }

  .nav.nav-open .nav-left,
  .nav.nav-open .nav-right {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 18px;
    padding: 16px 0;
  }

  .pillars-inner { grid-template-columns: 1fr; }
  .pillars-art { height: 240px; order: -1; }
  .pillar-word.italic { margin-left: 30px; }

  .about-teaser-inner { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16 / 12; max-width: 480px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .shop-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid a:nth-child(n+4) { display: none; }

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