:root {
  --cream: #FAF7F2;
  --brown: #5C3D2E;
  --terracotta: #C4753A;
  --dark: #2D1F14;
  --text: #2D1F14;
  --muted: #6E5A51;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(92, 61, 46, 0.12);
  --shadow-hover: 0 30px 60px rgba(92, 61, 46, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 61, 46, 0.08);
  transition: background 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-toggle:hover {
  transform: rotate(90deg);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.nav-menu a {
  color: var(--text);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
  color: var(--terracotta);
  transform: translateX(5px);
}

.navbar.scrolled {
  background: var(--cream);
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.button:hover::before {
  width: 300px;
  height: 300px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.button-primary {
  background: var(--brown);
  color: var(--white);
}

.button-secondary,
.button-ghost {
  background: var(--white);
  color: var(--brown);
  border-color: var(--brown);
}

.button-ghost:hover,
.button-secondary:hover {
  background: rgba(196, 117, 58, 0.08);
}

.section {
  padding: 4rem 1.25rem;
  position: relative;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--terracotta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  animation: fadeInUp 0.8s ease-out;
}

.section h2,
.hero h1,
.portal-header h1 {
  font-family: 'Playfair Display', serif;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero {
  display: grid;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
  min-height: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(250,247,242,0.9), rgba(196,117,58,0.05));
  z-index: -1;
  animation: parallax 0.1s linear infinite;
}

@keyframes parallax {
  0% { transform: translateY(0); }
  100% { transform: translateY(-1px); }
}

.hero-copy {
  max-width: 620px;
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(92, 61, 46, 0.08);
  color: var(--brown);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: bounceIn 0.8s ease-out 0.5s both;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.hero h1 em,
.hero-copy em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-badges span {
  background: var(--white);
  color: var(--brown);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid rgba(92, 61, 46, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-badges span:hover {
  transform: scale(1.05);
  background: rgba(196, 117, 58, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

  .hero-review-teaser {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 1.25rem 1.35rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(92, 61, 46, 0.1);
    border-radius: 28px;
    max-width: 620px;
  }

  .hero-review-teaser p {
    margin: 0;
    color: var(--brown);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-review-teaser .button {
    align-self: flex-start;
  }

.photo-card {
  position: relative;
  width: min(420px, 100%);
  min-height: 420px;
  background: linear-gradient(180deg, rgba(196, 117, 58, 0.14), rgba(92, 61, 46, 0.06));
  border-radius: 36px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.photo-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: var(--shadow-hover);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.rhoda-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 38px;
  object-fit: cover;
  border: 1px solid rgba(92, 61, 46, 0.1);
}

.stat-card {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  color: var(--brown);
  border-radius: 24px;
  padding: 1rem 1rem;
  box-shadow: var(--shadow);
  font-weight: 700;
  animation: slideInUp 0.8s ease-out 1s both;
}

.stat-top {
  top: 1.5rem;
}

.stat-bottom {
  bottom: 1.5rem;
}

.about-section {
  background: rgba(255, 255, 255, 0.72);
}

.grid-two {
  display: grid;
  gap: 2rem;
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
}

.story-copy blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--terracotta);
  color: var(--brown);
  font-size: 1.05rem;
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.story-copy blockquote::before {
  content: '"';
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  font-size: 2rem;
  color: var(--terracotta);
}

.method-cards {
  display: grid;
  gap: 1rem;
}

.method-card {
  background: var(--white);
  border: 1px solid rgba(92, 61, 46, 0.12);
  border-radius: 24px;
  padding: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.method-card:nth-child(1) { animation-delay: 0.1s; }
.method-card:nth-child(2) { animation-delay: 0.2s; }
.method-card:nth-child(3) { animation-delay: 0.3s; }
.method-card:nth-child(4) { animation-delay: 0.4s; }
.method-card:nth-child(5) { animation-delay: 0.5s; }

.method-icon {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.method-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.method-card p {
  margin: 0;
  color: var(--muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stats-row div {
  background: var(--white);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(92, 61, 46, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
  animation: scaleIn 0.6s ease-out both;
}

.stats-row div:hover {
  transform: scale(1.05);
}

.stats-row strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.review-section,
.video-section,
.booking-section,
.portal-section {
  max-width: 1180px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
}

.video-card {
  background: var(--white);
  border-radius: 28px;
  padding: 1.2rem;
  border: 1px solid rgba(92, 61, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInUp 0.8s ease-out both;
  width: 100%;
  max-width: 420px;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(196,117,58,0.15), rgba(92,61,46,0.1));
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.honeypot,
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-intro .button {
  margin-top: 1rem;
}

.video-copy {
  margin-top: 1rem;
}

.video-copy strong {
  display: block;
  margin-bottom: 0.35rem;
}

.video-copy p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.video-copy .stars {
  color: #c47a35;
  margin-bottom: 0.6rem;
}

.review-summary {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-out;
}

.summary-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-large {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--brown);
}

.rating-label {
  margin: 0;
  text-transform: uppercase;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.rating-details {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.review-bars div {
  display: grid;
  gap: 0.35rem;
}

.review-bars span {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.bar {
  height: 0.85rem;
  background: rgba(92, 61, 46, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--terracotta), var(--brown));
  border-radius: 999px;
  animation: progress 2s ease-out;
}

@keyframes progress {
  0% { width: 0%; }
  100% { width: var(--width); }
}

.masonry-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, 1fr);
}

.review-card {
  background: var(--white);
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid rgba(92, 61, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInUp 0.8s ease-out both;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.review-card.featured {
  background: var(--brown);
  color: var(--white);
}

.review-stars {
  margin-bottom: 1rem;
  color: #ffc86b;
}

.review-text {
  margin: 0 0 1rem;
  color: inherit;
}

.review-meta {
  margin: 0;
  color: var(--muted);
}

.booking-layout {
  display: grid;
  gap: 2rem;
}

.booking-info-primary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 32px;
  border: 1px solid rgba(92, 61, 46, 0.12);
  animation: slideInLeft 0.8s ease-out;
}

.booking-or {
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  padding: 0.5rem 0;
}

.booking-card {
  background: var(--white);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(92, 61, 46, 0.12);
  display: grid;
  gap: 1rem;
  max-width: 560px;
  animation: slideInLeft 0.8s ease-out;
}

.booking-card label {
  font-weight: 600;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;
  border: 1px solid rgba(92, 61, 46, 0.16);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 117, 58, 0.1);
}

.success-message {
  padding: 1rem 1rem 0;
  color: var(--brown);
  font-weight: 600;
  animation: fadeIn 0.5s ease-out;
}

.booking-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  animation: slideInRight 0.8s ease-out;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--white);
}

.trust-badges span {
  background: rgba(255,255,255,0.12);
  padding: 0.9rem 1rem;
  border-radius: 999px;
}

.site-footer,
.portal-footer {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 1.25rem;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--white);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-note {
  max-width: 1180px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}

.portal-header,
.portal-main,
.portal-section,
.portal-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem;
}

.portal-header {
  background: var(--white);
  border-radius: 32px;
  margin: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  animation: fadeIn 0.8s ease-out;
}

.portal-header span {
  display: block;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.portal-header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.portal-main {
  display: grid;
  gap: 1.5rem;
}

.portal-section {
  background: var(--white);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  animation: slideInUp 0.8s ease-out both;
}

.portal-section:hover {
  transform: translateY(-5px);
}

.portal-cards {
  display: grid;
  gap: 1rem;
}

.resource-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(92, 61, 46, 0.12);
  border-radius: 24px;
  padding: 1.25rem 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.resource-card:hover {
  transform: translateX(5px);
  background: rgba(196, 117, 58, 0.05);
}

.resource-icon {
  font-size: 1.8rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.resource-list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brown);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.resource-list li a:hover {
  color: var(--terracotta);
  transform: translateX(5px);
}

.portal-booking .portal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.notes-card {
  background: rgba(92, 61, 46, 0.05);
  border-radius: 24px;
  padding: 1.5rem;
  color: var(--text);
  animation: fadeIn 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .grid-two {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .masonry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card {
    min-height: 220px;
  }

  .booking-layout {
    grid-template-columns: 1.3fr 0.9fr;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 0;
  }

  .navbar {
    padding: 1.25rem 2rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .booking-card,
  .portal-section,
  .portal-header {
    padding: 2.25rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 1.25rem 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    gap: 0.8rem;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
  }

  .hero-badges {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero h1 {
    margin: 0.75rem 0 0.85rem;
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

  .hero-text {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .photo-card {
    min-height: 240px;
    padding: 0.9rem;
  }

  .photo-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .nav-menu {
    background: rgba(250, 247, 242, 0.98);
    position: absolute;
    right: 1rem;
    top: 70px;
    width: calc(100vw - 2rem);
    max-width: none;
    padding: 1rem 1rem 1.25rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 220px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-card,
  .review-summary,
  .portal-section,
  .portal-header {
    padding: 1rem;
  }

  .review-summary,
  .booking-card,
  .section-intro .button {
    width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
