:root {
  --primary: #2258c3;
  --primary-foreground: #ffffff;
  --background: #fcfaf8;
  --foreground: #2a2622;
  --card: #ffffff;
  --card-foreground: #2a2622;
  --popover: #ffffff;
  --popover-foreground: #2a2622;
  --secondary: #f1ece4;
  --secondary-foreground: #494036;
  --muted: #f0eeea;
  --muted-foreground: #7e7367;
  --accent: #d9e8e0;
  --accent-foreground: #2d5340;
  --destructive: #ef4444;
  --destructive-foreground: #f8fafc;
  --border: #e7e1da;
  --input: #e7e1da;
  --ring: #2258c3;
  --lapis: #2258c3;
  --lapis-light: #5c85d6;
  --lapis-dark: #16439c;
  --cream: #f8f6f1;
  --cream-dark: #ece7df;
  --earth: #7a6652;
  --earth-light: #9d8c7b;
  --sage: #568f73;
  --sage-light: #b3ccbf;
  --warm-white: #fdfdfc;
  --radius: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rog-page {
  min-height: 100vh;
}

.rog-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 16px;
}

.rog-main {
  display: block;
}

.rog-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10000;
  background: color-mix(in srgb, var(--background) 95%, transparent);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid var(--border);
}

.rog-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.rog-nav__logo {
  height: 56px;
  width: auto;
}

.rog-nav__desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.rog-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.rog-nav__link:hover,
.rog-sheet__link:hover {
  color: var(--primary);
}

.rog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
  font-weight: 500;
  white-space: nowrap;
}

.rog-button:focus-visible,
.rog-accordion__trigger:focus-visible,
.rog-nav__toggle:focus-visible,
.rog-sheet__close:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.rog-button--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.rog-button--primary:hover {
  background: color-mix(in srgb, var(--primary) 90%, #000 10%);
}

.rog-button--outline {
  background: var(--background);
  border-color: var(--input);
  color: var(--foreground);
}

.rog-button--outline:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.rog-button--ghost {
  background: transparent;
  color: var(--foreground);
}

.rog-button--ghost:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.rog-button--sm {
  min-height: 36px;
  padding: 0 12px;
  font-size: 14px;
}

.rog-button--lg {
  min-height: 44px;
  padding: 0 32px;
  font-size: 16px;
}

.rog-button--icon,
.rog-sheet__close {
  width: 40px;
  height: 40px;
  padding: 0;
}

.rog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rog-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.rog-sheet[hidden] {
  display: none;
}

.rog-sheet {
  position: fixed;
  inset: 0;
  z-index: 10001;
  isolation: isolate;
}

.rog-sheet__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.8);
}

.rog-sheet__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(280px, 75vw);
  height: 100%;
  background: #ffffff;
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.rog-sheet.is-open .rog-sheet__panel {
  transform: translateX(0);
}

.rog-sheet__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  opacity: 0.7;
}

.rog-sheet__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.rog-sheet__link {
  font-size: 18px;
  font-weight: 500;
}

.rog-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  overflow: hidden;
}

.rog-hero__bg,
.rog-setting-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.rog-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.rog-hero__content {
  position: relative;
  z-index: 2;
}

.rog-hero__inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.rog-hero__brand {
  margin-bottom: 32px;
}

.rog-hero__logo {
  height: 128px;
  width: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}

.rog-hero__tagline,
.rog-hero__headline,
.rog-hero__description {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.35);
}

.rog-hero__tagline {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

.rog-hero__headline {
  margin: 0 0 24px;
  font-size: clamp(26px, 4.2vw, 36px);
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.rog-hero__headline > .rog-setting-text:not(.rog-hero__headline-emphasis) {
  color: rgba(255, 255, 255, 0.8);
}

.rog-hero__headline-emphasis {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
}

.rog-hero__description {
  max-width: 672px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}

.rog-hero__actions .rog-button--outline {
  background: #fff;
  border-color: #fff;
  color: var(--foreground);
}

.rog-hero__actions .rog-button--outline:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--foreground);
}

.rog-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.rog-animate-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: rog-fade-in 0.5s ease-out forwards;
}

@keyframes rog-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rog-section {
  padding: 80px 0;
}

.rog-section--card {
  background: var(--card);
}

.rog-section--background {
  background: var(--background);
}

.rog-section--secondary {
  background: color-mix(in srgb, var(--secondary) 30%, transparent);
}

.rog-section--gradient {
  background: linear-gradient(to bottom, var(--background), color-mix(in srgb, var(--secondary) 20%, transparent));
}

.rog-section--contact {
  background: linear-gradient(to bottom, color-mix(in srgb, var(--secondary) 20%, transparent), var(--background));
}

.rog-section__max {
  margin: 0 auto;
}

.rog-section__max--wide {
  max-width: 1152px;
}

.rog-section__max--narrow {
  max-width: 768px;
}

.rog-section__max--contact {
  max-width: 1024px;
}

.rog-section__header {
  margin-bottom: 48px;
}

.rog-section__header--center {
  text-align: center;
}

.rog-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rog-section__title {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.15;
  font-weight: 700;
}

.rog-section__description {
  max-width: 672px;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 18px;
}

.rog-section__divider {
  width: 80px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

.rog-about,
.rog-owner,
.rog-contact-grid {
  display: grid;
  gap: 48px;
}

.rog-about__image-frame,
.rog-owner__image-frame,
.rog-card__media {
  overflow: hidden;
  border-radius: 24px;
}

.rog-about__image-frame {
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 40px rgba(22, 67, 156, 0.08);
}

.rog-about__image,
.rog-owner__image,
.rog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rog-about__accent {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 128px;
  height: 128px;
  border-radius: 24px;
  background: var(--secondary);
  z-index: -1;
}

.rog-about__media {
  position: relative;
}

.rog-about__content,
.rog-owner__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rog-about__intro {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
}

.rog-about__intro strong {
  color: var(--primary);
}

.rog-about__paragraph,
.rog-owner__paragraph,
.rog-card__description,
.rog-newsletter-card__text,
.rog-faq__cta-text {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.rog-about__highlights,
.rog-owner__credentials {
  display: grid;
  gap: 16px;
}

.rog-highlight-card,
.rog-owner__credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--secondary) 50%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.rog-highlight-card__icon,
.rog-retreat__icon,
.rog-contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rog-highlight-card__icon {
  margin-top: 2px;
  color: var(--primary);
}

.rog-highlight-card__title,
.rog-services__category-title,
.rog-card__title,
.rog-newsletter-card__title,
.rog-faq__cta-title {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--foreground);
}

.rog-highlight-card__title {
  font-size: 14px;
}

.rog-highlight-card__text {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

.rog-services {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.rog-services__category-header {
  margin-bottom: 24px;
}

.rog-services__category-title {
  font-size: 28px;
}

.rog-services__category-description {
  margin: 0;
  color: var(--muted-foreground);
}

.rog-services__grid,
.rog-offerings,
.rog-retreats {
  display: grid;
  gap: 16px;
}

.rog-card {
  border: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  border-radius: 16px;
  background: var(--card);
  color: var(--card-foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.rog-card:hover {
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

.rog-card--service:hover {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
}

.rog-card__header {
  padding: 24px 24px 12px;
}

.rog-card__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.rog-card__body,
.rog-card__content {
  padding: 0 24px 24px;
}

.rog-card__title {
  font-size: 20px;
  margin-top: 12px;
}

.rog-badge,
.rog-card__badge,
.rog-retreat__status {
  display: inline-block;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.rog-badge {
  padding: 4px 10px;
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.rog-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--primary) 90%, transparent);
  color: var(--primary-foreground);
}

.rog-service-icon,
.rog-retreat__icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
}

.rog-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
}

.rog-service-icon .rog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rog-service-icon--sage {
  background: color-mix(in srgb, var(--sage) 10%, transparent);
  color: var(--sage);
}

.rog-service-icon--earth {
  background: color-mix(in srgb, var(--earth-light) 20%, transparent);
  color: var(--earth);
}

.rog-service-icon--lapis {
  background: color-mix(in srgb, var(--lapis-light) 20%, transparent);
  color: var(--lapis);
}

.rog-services__cta,
.rog-retreats__cta {
  text-align: center;
}

.rog-services__cta {
  margin-top: 64px;
}

.rog-services__cta-text,
.rog-retreats__cta-text {
  margin: 0 0 16px;
  color: var(--muted-foreground);
}

.rog-link-arrow,
.rog-faq__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.2s ease;
}

.rog-link-arrow:hover {
  gap: 12px;
}

.rog-owner__sticky {
  position: sticky;
  top: 112px;
}

.rog-owner__image-frame {
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.rog-owner__credentials {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rog-owner__credential {
  align-items: center;
  background: var(--card);
}

.rog-owner__credential .rog-icon {
  color: var(--primary);
}

.rog-owner__credential span:last-child {
  font-size: 12px;
  font-weight: 500;
}

.rog-owner__quote {
  margin: 0;
  font-size: 24px;
  line-height: 1.7;
  color: var(--foreground);
  font-weight: 500;
}

.rog-owner__paragraph--strong {
  color: var(--foreground);
  font-weight: 500;
}

.rog-owner__callout {
  margin-top: 8px;
  padding: 24px;
  border-left: 4px solid var(--primary);
  border-radius: 24px;
  background: color-mix(in srgb, var(--primary) 5%, transparent);
}

.rog-owner__callout-quote {
  margin: 0;
  color: var(--foreground);
  font-style: italic;
}

.rog-owner__callout-author {
  margin: 12px 0 0;
  color: var(--primary);
  font-weight: 500;
}

.rog-offerings {
  gap: 24px;
}

.rog-card--offering {
  overflow: hidden;
}

.rog-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.rog-card__content {
  padding: 24px;
}

.rog-social-panel {
  max-width: 576px;
  margin: 48px auto 0;
  padding: 24px 32px;
  border-radius: 16px;
  text-align: center;
  background: color-mix(in srgb, var(--secondary) 50%, transparent);
}

.rog-social-panel__text {
  margin: 0 0 16px;
  color: var(--foreground);
  font-weight: 500;
}

.rog-social-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.rog-social-panel__actions .rog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rog-retreats {
  margin-bottom: 40px;
  gap: 24px;
}

.rog-card__content--retreat {
  padding: 32px;
}

.rog-retreat__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
}

.rog-retreat__status {
  margin-bottom: 16px;
  padding: 4px 8px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
}

.rog-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rog-accordion__item {
  border: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  border-radius: 16px;
  background: var(--background);
  padding: 0 32px;
}

.rog-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--foreground);
  text-align: left;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.rog-accordion__trigger:hover {
  color: var(--primary);
}

.rog-accordion__trigger[aria-expanded="true"] .rog-icon {
  transform: rotate(180deg);
}

.rog-accordion__trigger .rog-icon {
  transition: transform 0.2s ease;
}

.rog-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.rog-accordion__content-inner {
  padding: 0 0 24px;
  color: var(--muted-foreground);
  font-size: 16px;
  line-height: 1.75;
}

.rog-faq__cta {
  margin-top: 48px;
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  background: color-mix(in srgb, var(--secondary) 50%, transparent);
}

.rog-faq__cta-title {
  margin-bottom: 8px;
}

.rog-newsletter-card {
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.rog-newsletter-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 28px;
  align-items: stretch;
}

.rog-newsletter-card__copy {
  text-align: left;
}

.rog-newsletter-card__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.rog-newsletter-card__input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--input);
  border-radius: calc(var(--radius) - 2px);
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  color: var(--foreground);
  background: #ffffff;
  box-sizing: border-box;
}

.rog-newsletter-card__input::placeholder {
  color: var(--muted-foreground);
  opacity: 1;
}

.rog-newsletter-card__input:focus {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-color: var(--primary);
}

.rog-newsletter-card__submit.rog-button--primary {
  min-height: 44px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  white-space: nowrap;
  width: 100%;
}

@media (min-width: 480px) {
  .rog-newsletter-card__form {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .rog-newsletter-card__input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }

  .rog-newsletter-card__submit.rog-button--primary {
    width: auto;
    flex-shrink: 0;
  }
}

.rog-contact-grid {
  gap: 32px;
}

.rog-card--contact,
.rog-card--ready {
  height: 100%;
}

.rog-card__content--contact,
.rog-card__content--ready {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
}

.rog-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.rog-contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rog-contact-list__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rog-contact-list__item:hover .rog-contact-list__icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.rog-contact-list__label {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.rog-contact-list__value {
  margin: 0;
  font-weight: 500;
  color: var(--foreground);
}

.rog-contact-social,
.rog-contact-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.rog-contact-social__title {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.rog-contact-social__links {
  display: flex;
  gap: 12px;
}

.rog-contact-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--secondary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rog-contact-social__link:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.rog-contact-actions,
.rog-card__ready-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rog-card--ready {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), transparent);
}

.rog-card__ready-main {
  flex: 1;
}

.rog-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--foreground);
}

.rog-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.rog-checklist__check {
  font-weight: 600;
}

/* Footer — matches PHP template classes (rog-footer); .rog-site-footer kept for parity */
.rog-footer {
  background: var(--foreground);
  color: var(--background);
  padding: 48px 0 64px;
}

.rog-footer__top {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.rog-footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.rog-footer__description,
.rog-footer__link,
.rog-footer__address,
.rog-footer__heading {
  color: rgba(252, 250, 248, 0.7);
}

.rog-footer__address {
  font-style: normal;
  margin: 0 0 12px;
  line-height: 1.6;
}

.rog-footer__heading {
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--background);
}

.rog-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rog-footer__link {
  transition: color 0.2s ease;
}

.rog-footer__link:hover {
  color: var(--background);
}

.rog-footer__meta {
  margin: 0 0 12px;
}

.rog-footer__meta a {
  color: rgba(252, 250, 248, 0.7);
  transition: color 0.2s ease;
}

.rog-footer__meta a:hover {
  color: var(--background);
}

.rog-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.rog-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(252, 250, 248, 0.1);
  color: var(--background);
  transition: background-color 0.2s ease;
}

.rog-footer__social-link:hover {
  background: rgba(252, 250, 248, 0.2);
}

.rog-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(252, 250, 248, 0.1);
}

.rog-footer__copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(252, 250, 248, 0.7);
  text-align: center;
}

.rog-footer__built {
  margin: 0;
  font-size: 12px;
  color: rgba(252, 250, 248, 0.45);
  text-align: center;
}

.rog-footer__built a {
  color: inherit;
  text-decoration: underline;
}

.rog-footer__built a:hover {
  color: var(--background);
}

.rog-site-footer {
  background: var(--foreground);
  color: var(--background);
  padding: 48px 0 64px;
}

.rog-site-footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.rog-site-footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.rog-site-footer__description,
.rog-site-footer__link,
.rog-site-footer__address,
.rog-site-footer__meta-link,
.rog-site-footer__meta-copy,
.rog-site-footer__heading {
  color: rgba(252, 250, 248, 0.7);
}

.rog-site-footer__heading {
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--background);
}

.rog-site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rog-site-footer__link,
.rog-site-footer__meta-link {
  transition: color 0.2s ease;
}

.rog-site-footer__link:hover,
.rog-site-footer__meta-link:hover {
  color: var(--background);
}

.rog-site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.rog-site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(252, 250, 248, 0.1);
  color: var(--background);
  transition: background-color 0.2s ease;
}

.rog-site-footer__social-link:hover {
  background: rgba(252, 250, 248, 0.2);
}

.rog-site-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(252, 250, 248, 0.1);
}

.rog-site-footer__meta-copy,
.rog-site-footer__meta-credit {
  margin: 0;
  font-size: 14px;
}

.rog-site-footer__meta-credit {
  font-size: 12px;
  color: rgba(252, 250, 248, 0.4);
}

.rog-site-footer__meta-credit a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .rog-nav {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 640px) {
  .rog-container {
    padding: 0 24px;
  }

  .rog-hero__actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .rog-nav__inner {
    min-height: 80px;
  }

  .rog-nav__logo {
    height: 72px;
  }

  .rog-nav__desktop {
    display: flex;
  }

  .rog-nav__toggle {
    display: none;
  }

  .rog-hero {
    padding-top: 80px;
  }

  .rog-hero__logo {
    height: 176px;
  }

  .rog-about {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .rog-services__grid--count-1 {
    grid-template-columns: minmax(0, 1fr);
    max-width: 448px;
  }

  .rog-services__grid:not(.rog-services__grid--count-1) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rog-offerings,
  .rog-retreats,
  .rog-contact-grid,
  .rog-site-footer__grid,
  .rog-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rog-newsletter-card__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .rog-newsletter-card__copy {
    flex: 1;
    min-width: 0;
  }

  .rog-newsletter-card__form {
    flex: 0 1 auto;
    width: auto;
    max-width: min(420px, 100%);
  }

  .rog-site-footer__meta,
  .rog-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .rog-footer__copyright,
  .rog-footer__built {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .rog-section {
    padding: 112px 0;
  }

  .rog-services__grid:not(.rog-services__grid--count-1) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rog-owner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: start;
  }

  .rog-offerings,
  .rog-retreats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .rog-site-footer__grid,
  .rog-footer__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
