:root {
  --ivory: #f7f3ec;
  --paper: #fbf8f2;
  --ink: #203746;
  --blue: #355a70;
  --deep-blue: #15384d;
  --water: #6faabe;
  --gold: #ad8f53;
  --line: rgba(32, 55, 70, 0.16);
  --soft-line: rgba(173, 143, 83, 0.25);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  padding: 13px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(247, 243, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  width: 64px;
  height: 48px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 82px;
  max-width: none;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.15rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 26px);
}

.nav-links a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.95), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(111,170,190,0.18), transparent 34%),
    linear-gradient(135deg, #faf6ef 0%, #f4eee5 48%, #f8f4ee 100%);
}

/* Pure CSS water-like accent so the page still works even if no water image file exists. */
.hero-water {
  position: absolute;
  width: min(900px, 84vw);
  height: min(360px, 40vw);
  right: -7vw;
  bottom: -90px;
  z-index: -2;
  opacity: 0.38;
  border-radius: 50% 0 0 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(111,170,190,0.34) 0 10%, transparent 11% 22%, rgba(53,90,112,0.15) 23% 28%, transparent 29% 40%),
    repeating-radial-gradient(ellipse at 30% 120%, rgba(111,170,190,0.22) 0 4px, transparent 5px 18px);
  transform: rotate(-5deg);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(173,143,83,0.27);
  border-radius: 50%;
  right: 9vw;
  top: 10vh;
  z-index: -1;
}

.hero-content {
  width: min(1080px, 100%);
  text-align: center;
}

.eyebrow,
.section-kicker,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.about h2,
.philosophy h2,
.contact h2,
.meditation-content h2,
.journal-copy h2,
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.hero h1 {
  font-size: clamp(3.3rem, 7.2vw, 7rem);
  max-width: 1060px;
  margin: 22px auto 30px;
}

.hero h1 em {
  font-weight: 400;
  color: var(--blue);
}

.hero-copy {
  max-width: 790px;
  margin: 0 auto;
  font-size: clamp(1.03rem, 1.3vw, 1.18rem);
  color: rgba(32,55,70,0.82);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.primary {
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(21,56,77,0.18);
}

.text-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.text-link span {
  margin-left: 7px;
  color: var(--gold);
}

.light-link {
  color: rgba(255,255,255,0.9);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about {
  padding: 130px 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 52% 52% 8px 8px;
  box-shadow: 0 22px 60px rgba(32,55,70,0.12);
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -18px 22px 22px -18px;
  border: 1px solid var(--soft-line);
  border-radius: 52% 52% 8px 8px;
  z-index: -1;
}

.portrait-note {
  position: absolute;
  right: -34px;
  bottom: 34px;
  background: var(--paper);
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.15;
  box-shadow: 0 12px 25px rgba(32,55,70,0.08);
}

.about h2 {
  font-size: clamp(2.8rem, 5.1vw, 5rem);
  margin: 16px 0 30px;
}

.about-copy > p:not(.section-kicker) {
  margin-top: 18px;
}

.pull-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.32;
  color: var(--blue);
  padding: 20px 0 20px 26px;
  border-left: 2px solid var(--gold);
}

.philosophy {
  position: relative;
  padding: 120px 0;
  background: var(--deep-blue);
  color: #f7f3ec;
  overflow: hidden;
}

.philosophy::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  right: -180px;
  top: -120px;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.section-kicker.light {
  color: #d9c490;
}

.philosophy h2 {
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  margin: 18px 0 28px;
}

.philosophy-copy > p:not(.section-kicker) {
  color: rgba(247,243,236,0.82);
  margin-top: 18px;
}

.big-line {
  margin-top: 32px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  line-height: 1.25;
}

.framework {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.framework article {
  padding: 28px 0 30px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.framework span,
.card-number {
  font-family: "Cormorant Garamond", serif;
  color: #d9c490;
  font-size: 1.15rem;
}

.framework h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 2px 0 6px;
}

.framework p {
  color: rgba(247,243,236,0.69);
  font-size: 0.95rem;
}

.offerings,
.for-you,
.testimonials,
.contact {
  padding: 125px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading h2 {
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  margin: 16px 0 22px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: rgba(32,55,70,0.72);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.offering-card {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.offering-card:hover {
  background: rgba(255,255,255,0.55);
  transform: translateY(-3px);
}

.offering-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.05;
  margin: 36px 0 14px;
}

.offering-card p {
  font-size: 0.93rem;
  color: rgba(32,55,70,0.72);
}

.offering-card.featured {
  background: #efe8dc;
}

.for-you {
  border-top: 1px solid var(--line);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 46px;
}

.reason-grid p {
  position: relative;
  padding: 22px 0 22px 30px;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.3;
}

.reason-grid p::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.meditation-band {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(111,170,190,0.42), transparent 28%),
    repeating-radial-gradient(ellipse at 50% 120%, rgba(255,255,255,0.10) 0 3px, transparent 4px 20px),
    linear-gradient(125deg, #15384d, #356b83 58%, #76b6c8);
}

.meditation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21,56,77,0.82), rgba(21,56,77,0.48) 60%, rgba(21,56,77,0.72));
}

.meditation-content {
  position: relative;
  z-index: 1;
  width: min(840px, calc(100% - 48px));
  text-align: center;
}

.meditation-content h2 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  margin: 14px 0 24px;
}

.meditation-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.84);
}

.ghost {
  border: 1px solid rgba(255,255,255,0.68);
  color: white;
}

.testimonials {
  border-top: 1px solid var(--line);
}

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

.testimonial-card {
  min-height: 260px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--soft-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.35;
}

.testimonial-card figcaption {
  margin-top: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(32,55,70,0.62);
}

.placeholder-card {
  grid-column: 1 / -1;
  min-height: auto;
  text-align: center;
  background: #efe8dc;
}

.journal-preview {
  padding: 110px 0;
  color: white;
  background: var(--deep-blue);
}

.journal-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.journal-copy h2 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  margin: 16px 0 24px;
}

.journal-copy p:last-child {
  max-width: 680px;
  color: rgba(255,255,255,0.74);
}

.journal-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.contact h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  margin: 14px 0 24px;
}

.contact-copy p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 18px;
  color: rgba(32,55,70,0.74);
}

.contact-copy .button {
  margin-top: 12px;
}

.contact-card {
  padding: 40px;
  background: #efe8dc;
  border: 1px solid var(--soft-line);
  box-shadow: 16px 16px 0 rgba(173,143,83,0.08);
}

.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 6px 0 12px;
}

.contact-card p:not(.mini-label) {
  color: rgba(32,55,70,0.72);
}

.contact-rule {
  height: 1px;
  background: var(--soft-line);
  margin: 30px 0;
}

footer {
  padding: 46px clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 30px;
  align-items: start;
  font-size: 0.78rem;
  color: rgba(32,55,70,0.65);
}

footer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer strong {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
}

/* Journal pages */
.page-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  padding: 13px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,243,236,0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.page-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.page-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.page-hero {
  padding: 120px 24px 90px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  margin: 18px auto 24px;
}

.page-hero p:last-child {
  width: min(720px, 100%);
  margin: 0 auto;
  color: rgba(32,55,70,0.72);
}

.blog-list {
  padding: 50px 0 120px;
}

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

.blog-card {
  padding: 32px;
  min-height: 300px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card .blog-category {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 600;
}

.blog-card h2 {
  margin: 28px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1.06;
  font-weight: 500;
}

.blog-card p {
  color: rgba(32,55,70,0.72);
  font-size: 0.92rem;
}

.blog-card a {
  margin-top: 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.article-shell {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 130px;
}

.article-shell h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1;
  font-weight: 500;
  margin: 16px 0 26px;
}

.article-meta {
  color: rgba(32,55,70,0.58);
  font-size: 0.85rem;
  margin-bottom: 52px;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
}

.article-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 500;
  margin: 50px 0 18px;
}

.article-body blockquote {
  margin: 42px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.35;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.78rem;
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 28px 28px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about,
  .philosophy-inner,
  .contact,
  .journal-inner {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    width: min(520px, 90%);
    margin: 0 auto;
  }

  .portrait-note {
    right: -12px;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .page-header {
    min-height: 72px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .page-nav .hide-mobile {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .about,
  .offerings,
  .for-you,
  .testimonials,
  .contact,
  .philosophy {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .portrait-wrap {
    width: 100%;
  }

  .portrait-note {
    position: static;
    margin: -16px 14px 0;
  }

  .offerings-grid,
  .reason-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .offering-card {
    min-height: auto;
  }

  .meditation-band {
    min-height: 540px;
  }

  .journal-preview {
    padding: 88px 0;
  }

  .blog-list {
    padding-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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


/* Automatically published Journal images */
.article-featured-image {
  display: block;
  width: 100%;
  max-height: 620px;
  margin: 36px 0 46px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(20, 53, 48, 0.14);
}
