@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --rytm-bg-warm: #fafaf6;
  --rytm-bg-mint: #f0f7f4;
  --rytm-accent-pine: #113f36;
  --rytm-accent-pine-hover: #0a2b25;
  --rytm-accent-ochre: #c27d38;
  --rytm-ink-deep: #161c1a;
  --rytm-ink-mute: #54625f;
  --rytm-border-fine: rgba(17, 63, 54, 0.12);
  --rytm-border-heavy: rgba(17, 63, 54, 0.3);
  --rytm-shadow-soft: 0 12px 32px rgba(17, 63, 54, 0.05);
  --rytm-shadow-raised: 0 20px 40px rgba(17, 63, 54, 0.08);

  --font-display: 'Merriweather', serif;
  --font-body: 'Inter', sans-serif;
  
  --edge-radius: 16px;
  --pad-scale: 10dvh;
}

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

body {
  background-color: var(--rytm-bg-warm);
  color: var(--rytm-ink-deep);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Scroll Progress Bar CSS */
.rytm-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--rytm-accent-ochre);
  width: 0%;
  z-index: 99999;
  animation: rytm-grow-bar linear;
  animation-timeline: scroll();
}

@keyframes rytm-grow-bar {
  to { width: 100%; }
}

/* Header styling according to Preset H (large typography title, smallcaps thin menu) */
.rytm-header-shell {
  background-color: #ffffff;
  border-bottom: 1px solid var(--rytm-border-fine);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.rytm-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rytm-brand-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--rytm-accent-pine);
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rytm-brand-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--rytm-accent-ochre);
}

.rytm-menu-checkbox {
  display: none;
}

.rytm-menu-trigger {
  display: none;
  cursor: pointer;
}

.rytm-nav-anchors {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.rytm-nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rytm-ink-mute);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.rytm-nav-link:hover, 
.rytm-nav-link.rytm-link-active {
  color: var(--rytm-accent-pine);
}

.rytm-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--rytm-accent-ochre);
  transition: width 0.3s ease;
}

.rytm-nav-link:hover::after,
.rytm-nav-link.rytm-link-active::after {
  width: 100%;
}

/* Common Layout Elements */
.rytm-scroller-layout {
  padding: var(--pad-scale) 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Hero Section: Asymmetric Word-by-word layout (Preset H) */
.rytm-hero-canvas {
  position: relative;
  padding: 8rem 2rem 6rem;
  background-color: var(--rytm-bg-mint);
  border-bottom: 1px solid var(--rytm-border-fine);
  overflow: hidden;
}

.rytm-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.rytm-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rytm-word-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.rytm-word-line {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--rytm-accent-pine);
  letter-spacing: -2px;
}

.rytm-word-line.rytm-align-right {
  align-self: flex-end;
  text-align: right;
  color: var(--rytm-accent-ochre);
}

.rytm-word-line.rytm-align-center {
  align-self: center;
  text-align: center;
}

.rytm-word-line span {
  text-decoration: underline;
  text-decoration-color: var(--rytm-accent-ochre);
  text-decoration-thickness: 4px;
}

.rytm-hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 2rem;
  border-top: 1px solid var(--rytm-border-heavy);
  padding-top: 2.5rem;
}

.rytm-hero-subtle-text {
  font-size: 1.2rem;
  color: var(--rytm-ink-mute);
  max-width: 500px;
  line-height: 1.6;
}

/* Action Trigger / Button */
.rytm-button-anchor {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--rytm-accent-pine);
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--edge-radius);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--rytm-shadow-soft);
  cursor: pointer;
}

.rytm-button-anchor:hover {
  background-color: var(--rytm-accent-pine-hover);
  transform: translateY(-2px);
  box-shadow: var(--rytm-shadow-raised);
}

.rytm-button-anchor svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.rytm-button-anchor:hover svg {
  transform: translateX(4px);
}

.rytm-button-ghost {
  background: transparent;
  border: 2px solid var(--rytm-accent-pine);
  color: var(--rytm-accent-pine);
  box-shadow: none;
}

.rytm-button-ghost:hover {
  background-color: var(--rytm-accent-pine);
  color: #ffffff;
  box-shadow: var(--rytm-shadow-soft);
}

/* Content: 3-column masonry styled text (Preset H) */
.rytm-masonry-wrapper {
  column-count: 3;
  column-gap: 3.5rem;
  column-rule: 1px solid var(--rytm-border-fine);
  margin-bottom: 5rem;
}

@media(max-width: 991px) {
  .rytm-masonry-wrapper {
    column-count: 2;
  }
}
@media(max-width: 767px) {
  .rytm-masonry-wrapper {
    column-count: 1;
  }
}

.rytm-masonry-item {
  break-inside: avoid;
  margin-bottom: 3rem;
}

.rytm-masonry-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rytm-bg-mint);
  border-radius: 50%;
}

.rytm-masonry-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--rytm-accent-pine);
}

.rytm-masonry-head {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--rytm-accent-pine);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.rytm-masonry-body {
  color: var(--rytm-ink-mute);
  font-size: 0.95rem;
}

/* Full Width Strip Image */
.rytm-split-hero-strip {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem;
}

.rytm-split-hero-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17,63,54,0.95) 0%, rgba(17,63,54,0.4) 100%);
  z-index: 1;
}

.rytm-split-strip-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #ffffff;
}

.rytm-split-strip-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Features: Manifesto Lines (Preset H) */
.rytm-manifesto-container {
  margin-top: 6rem;
}

.rytm-manifesto-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--rytm-accent-pine);
  margin-bottom: 4rem;
}

.rytm-manifesto-row {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rytm-border-heavy);
  transition: transform 0.3s ease;
}

.rytm-manifesto-row:last-of-type {
  border-bottom: none;
}

.rytm-manifesto-row:hover {
  transform: translateX(10px);
}

.rytm-manifesto-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--rytm-accent-ochre);
  flex-shrink: 0;
  min-width: 50px;
}

.rytm-manifesto-content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem 3rem;
  width: 100%;
}

.rytm-manifesto-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rytm-accent-pine);
  min-width: 300px;
}

.rytm-manifesto-subinfo {
  font-size: 1rem;
  color: var(--rytm-ink-mute);
  flex: 1;
  max-width: 700px;
}

/* How It Works: Rotated Step Numbers & Asymmetric Spacing (Preset H) */
.rytm-asymmetric-stepper {
  background-color: var(--rytm-bg-mint);
  padding: 8rem 2rem;
  position: relative;
}

.rytm-stepper-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.rytm-stepper-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--rytm-accent-pine);
  margin-bottom: 6rem;
}

.rytm-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}

@media (max-width: 991px) {
  .rytm-steps-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.rytm-step-module {
  position: relative;
  padding-top: 3rem;
}

/* Offset step blocks slightly for asymmetry */
.rytm-step-module:nth-child(2) {
  transform: translateY(2.5rem);
}

.rytm-step-module:nth-child(3) {
  transform: translateY(5rem);
}

@media(max-width: 991px) {
  .rytm-step-module:nth-child(2),
  .rytm-step-module:nth-child(3) {
    transform: none;
  }
}

.rytm-rotated-number {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 900;
  color: var(--rytm-accent-ochre);
  opacity: 0.15;
  transform: rotate(-12deg);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.rytm-step-inner-content {
  position: relative;
  z-index: 2;
}

.rytm-step-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rytm-accent-pine);
  margin-bottom: 1rem;
}

.rytm-step-text {
  color: var(--rytm-ink-mute);
}

/* CTA Strip: Typographical Big Slogan + Button (Preset H) */
.rytm-billboard-cta {
  background-color: var(--rytm-accent-pine);
  color: #ffffff;
  padding: 6rem 4rem;
  border-radius: var(--edge-radius);
  margin: 6rem auto;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.rytm-billboard-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.rytm-billboard-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  max-width: 750px;
  z-index: 1px;
}

.rytm-billboard-slogan span {
  color: var(--rytm-accent-ochre);
}

.rytm-billboard-act {
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .rytm-billboard-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem;
    gap: 2.5rem;
  }
}

/* Editorial Expert Page (Preset H details) */
.rytm-editorial-expert-wrap {
  display: flex;
  min-height: 80vh;
  margin-top: 2rem;
}

.rytm-bio-half {
  width: 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rytm-bio-drop-cap {
  font-size: 5rem;
  font-family: var(--font-display);
  font-weight: 900;
  float: left;
  line-height: 0.8;
  padding-right: 0.8rem;
  padding-top: 0.2rem;
  color: var(--rytm-accent-ochre);
}

.rytm-image-half {
  width: 50%;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.rytm-expert-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  border-left: 4px solid var(--rytm-accent-ochre);
  padding-left: 2rem;
  margin: 3rem 0;
  color: var(--rytm-accent-pine);
}

@media (max-width: 991px) {
  .rytm-editorial-expert-wrap {
    flex-direction: column-reverse;
  }
  .rytm-bio-half, .rytm-image-half {
    width: 100%;
  }
  .rytm-image-half {
    height: 400px;
  }
  .rytm-bio-half {
    padding: 2rem;
  }
}

/* Plain stats layout without box */
.rytm-bare-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rytm-border-fine);
}

@media(max-width: 991px) {
  .rytm-bare-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .rytm-bare-stats-row {
    grid-template-columns: 1fr;
  }
}

.rytm-bare-stat-cell {
  text-align: left;
}

.rytm-bare-stat-digit {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--rytm-accent-pine);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.rytm-bare-stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rytm-ink-mute);
}

/* Booking page (Preset H) */
.rytm-booking-canvas {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.rytm-booking-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--rytm-accent-pine);
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.1;
}

.rytm-booking-split {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

@media(max-width: 991px) {
  .rytm-booking-split {
    flex-direction: column;
    gap: 4rem;
  }
}

.rytm-booking-info-cards {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media(max-width: 991px) {
  .rytm-booking-info-cards {
    width: 100%;
  }
}

.rytm-card-anatomy {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--edge-radius);
  box-shadow: var(--rytm-shadow-soft);
  border: 1px solid var(--rytm-border-fine);
}

.rytm-card-anatomy-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rytm-accent-pine);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rytm-card-anatomy-title svg {
  width: 24px;
  height: 24px;
  fill: var(--rytm-accent-ochre);
}

.rytm-card-unorder-list {
  list-style: none;
  margin-top: 1.5rem;
}

.rytm-card-unorder-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: var(--rytm-ink-mute);
}

.rytm-card-unorder-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--rytm-accent-ochre);
}

/* Form layout with underline-only inputs */
.rytm-form-half {
  width: 55%;
  background-color: #ffffff;
  padding: 4rem;
  border-radius: var(--edge-radius);
  box-shadow: var(--rytm-shadow-raised);
}

@media(max-width: 991px) {
  .rytm-form-half {
    width: 100%;
    padding: 2.5rem;
  }
}

.rytm-input-group {
  margin-bottom: 3rem;
  position: relative;
}

.rytm-form-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--rytm-border-heavy);
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--rytm-ink-deep);
  outline: none;
  transition: border-bottom-color 0.3s;
}

.rytm-form-field:focus {
  border-bottom-color: var(--rytm-accent-pine);
}

.rytm-form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1.1rem;
  color: var(--rytm-ink-mute);
  pointer-events: none;
  transition: all 0.3s ease;
}

.rytm-form-field:focus ~ .rytm-form-label,
.rytm-form-field:not(:placeholder-shown) ~ .rytm-form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rytm-accent-pine);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rytm-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  color: var(--rytm-ink-mute);
  cursor: pointer;
}

.rytm-checkbox-field {
  width: 18px;
  height: 18px;
  accent-color: var(--rytm-accent-pine);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.rytm-mailto-strip {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--rytm-ink-mute);
}

.rytm-mailto-link {
  font-weight: 700;
  color: var(--rytm-accent-pine);
}

/* CSS Only Accordion FAQ */
.rytm-faq-space {
  margin-top: 8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rytm-faq-header {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--rytm-accent-pine);
  margin-bottom: 3rem;
  text-align: center;
}

.rytm-faq-drawer {
  background-color: #ffffff;
  border: 1px solid var(--rytm-border-fine);
  border-radius: var(--edge-radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--rytm-shadow-soft);
}

.rytm-faq-summary {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.8rem 2rem;
  cursor: pointer;
  user-select: none;
  outline: none;
  color: var(--rytm-accent-pine);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rytm-faq-summary::-webkit-details-marker {
  display: none;
}

.rytm-faq-summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--rytm-accent-ochre);
}

.rytm-faq-drawer[open] .rytm-faq-summary::after {
  content: '−';
}

.rytm-faq-content {
  padding: 0 2rem 2rem;
  font-size: 0.95rem;
  color: var(--rytm-ink-mute);
  border-top: 1px solid var(--rytm-border-fine);
  padding-top: 1.5rem;
}

/* Legal Templates Styles */
.rytm-document-box {
  background-color: #ffffff;
  border-radius: var(--edge-radius);
  border: 1px solid var(--rytm-border-fine);
  padding: 4rem;
  box-shadow: var(--rytm-shadow-soft);
  max-width: 900px;
  margin: 4rem auto;
}

@media(max-width: 767px) {
  .rytm-document-box {
    padding: 2rem;
  }
}

.rytm-document-box h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--rytm-accent-pine);
  margin-bottom: 2rem;
}

.rytm-document-box h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rytm-accent-pine);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rytm-document-box p {
  color: var(--rytm-ink-mute);
  margin-bottom: 1.5rem;
}

/* Footer elements */
.rytm-footer-shell {
  background-color: var(--rytm-accent-pine);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 2rem;
}

.rytm-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.rytm-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  gap: 2rem;
}

@media(max-width: 767px) {
  .rytm-footer-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.rytm-footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rytm-footer-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--rytm-accent-ochre);
}

.rytm-footer-links {
  display: flex;
  gap: 3rem;
}

@media(max-width: 767px) {
  .rytm-footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.rytm-footer-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.rytm-footer-link:hover {
  color: #ffffff;
}

.rytm-footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  border-left: 2px solid var(--rytm-accent-ochre);
  padding-left: 1.5rem;
}

.rytm-footer-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media(max-width: 480px) {
  .rytm-footer-meta {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Cookie Prompt styles */
.rytm-cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 3px solid var(--rytm-accent-ochre);
  padding: 2rem;
  box-shadow: 0 -15px 40px rgba(0,0,0,0.15);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rytm-cookie-container.rytm-cookie-visible {
  transform: translateY(0);
}

.rytm-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media(max-width: 767px) {
  .rytm-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

.rytm-cookie-text {
  font-size: 0.95rem;
  color: var(--rytm-ink-deep);
}

.rytm-cookie-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

@media(max-width: 767px) {
  .rytm-cookie-btns {
    justify-content: center;
  }
}

.rytm-cookie-btn {
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--edge-radius);
  cursor: pointer;
  transition: all 0.3s;
}

.rytm-cookie-btn-accept {
  background-color: var(--rytm-accent-pine);
  color: #ffffff;
  border: none;
}

.rytm-cookie-btn-accept:hover {
  background-color: var(--rytm-accent-pine-hover);
}

.rytm-cookie-btn-decline {
  background-color: transparent;
  color: var(--rytm-ink-mute);
  border: 1px solid var(--rytm-border-heavy);
}

.rytm-cookie-btn-decline:hover {
  background-color: rgba(0,0,0,0.05);
}

/* Responsive Hamburger Menu style (Pure CSS Trick) */
@media (max-width: 767px) {
  .rytm-menu-trigger {
    display: block;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1010;
  }
  .rytm-menu-trigger span, 
  .rytm-menu-trigger::before, 
  .rytm-menu-trigger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--rytm-accent-pine);
    transition: all 0.3s ease;
  }
  .rytm-menu-trigger::before { top: 0; }
  .rytm-menu-trigger span { top: 50%; transform: translateY(-50%); }
  .rytm-menu-trigger::after { bottom: 0; }

  .rytm-nav-anchors {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
  }

  .rytm-menu-checkbox:checked ~ .rytm-nav-anchors {
    right: 0;
  }

  .rytm-menu-checkbox:checked ~ .rytm-menu-trigger::before {
    transform: rotate(45deg);
    top: 8px;
  }
  .rytm-menu-checkbox:checked ~ .rytm-menu-trigger span {
    opacity: 0;
  }
  .rytm-menu-checkbox:checked ~ .rytm-menu-trigger::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
}