/* Palette: Midnight Coral */
:root {
  --primary-color: #0D1B2A;
  --secondary-color: #1B2838;
  --accent-color: #C0415A;
  --background-color: #F4F6F8;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 12px;
  --main-font: 'Playfair Display', 'Source Serif 4', Georgia, serif;
  --alt-font: 'Noto Sans', sans-serif;
}

/* HERITAGE-LUXURY Mandatory CSS Rules */
section {
  padding: 60px 16px;
  margin: 0;
}

@media(min-width: 1024px) {
  section {
    padding: 72px 24px;
  }
}

.section-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-color);
  display: block;
  margin-bottom: 12px;
}

h1, h2 {
  font-family: "Playfair Display", "Source Serif 4", Georgia, serif;
}

h1 {
  line-height: 0.9;
}

.card {
  border: 1px solid var(--accent-color);
  box-shadow: none;
  border-radius: 2px;
}

hr {
  border: none;
  border-top: 1px solid var(--accent-color);
  max-width: 60px;
  margin: 24px auto;
}

.left-hr {
  margin: 16px 0 24px 0;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  font-size: clamp(14px, 1.6vw, 17px);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--primary-color);
  font-weight: 700;
}

h1 {
  font-size: clamp(32px, 6vw, 64px);
}

h2 {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 12px;
}

h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: var(--text-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-heading {
  text-align: center;
}

.section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  font-family: var(--alt-font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.2s;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #a8354c;
  color: #ffffff;
}

.btn-subtle {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 0.9rem;
}

.btn-subtle:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* HEADER & MOBILE NAV */
header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img[alt="logo"] {
  max-height: 40px;
  width: auto;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger-btn .bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Burger Animation */
#menu-toggle:checked ~ .burger-btn .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  padding: 24px 16px;
  z-index: 999;
  border-bottom: 3px solid var(--accent-color);
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  color: #F4F6F8;
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }

  .site-nav {
    display: flex !important;
    position: static;
    background-color: transparent;
    padding: 0;
    border: none;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 28px;
  }

  .site-nav a {
    color: var(--primary-color);
    font-size: 0.95rem;
  }

  .site-nav a:hover {
    color: var(--accent-color);
  }
}

/* HERO: Editorial Bleed */
.hero-editorial {
  min-height: 88vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 60px 16px;
}

.hero-title {
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 24px 0;
  color: var(--primary-color);
  line-height: 0.95;
}

.highlight-accent {
  color: var(--accent-color);
}

.editorial-divider {
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  margin: 32px 0;
}

.editorial-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

@media(min-width: 768px) {
  .editorial-columns {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.editorial-columns p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: #222222;
  font-family: 'Source Serif 4', Georgia, serif;
}

.hero-actions {
  margin-top: 16px;
}

/* TIMELINE SECTION */
.timeline-hero-visual {
  margin: 32px 0 48px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 420px;
  border: 1px solid var(--accent-color);
}

.timeline-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .timeline-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline-item {
  background-color: #ffffff;
  padding: 28px;
  position: relative;
  transition: transform 0.25s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.timeline-marker {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--main-font);
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 12px;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-color);
}

.benefit-list {
  list-style: none;
  margin-top: 24px;
}

.benefit-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-list i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

/* LIFESTYLE CARDS SECTION */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .lifestyle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lifestyle-card {
  background-color: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease;
}

.lifestyle-card:hover {
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.card-checklist {
  list-style: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-color);
  font-size: 0.88rem;
  color: #555;
}

.card-checklist li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.card-checklist li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* TESTIMONIAL WALL SECTION */
.testimonial-wall {
  columns: 1;
  column-gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .testimonial-wall {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .testimonial-wall {
    columns: 3;
  }
}

.testimonial-card {
  background-color: #ffffff;
  padding: 24px;
  margin-bottom: 24px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}

.stars {
  color: #E6A100;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.quote {
  font-style: italic;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 16px;
}

.author strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.author span {
  font-size: 0.8rem;
  color: #777;
}

/* GRADIENT STATS STRIP SECTION */
.section-stats-strip {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #ffffff;
  padding: 60px 16px;
}

.stats-strip-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-strip-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-strip-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-strip-item {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 1024px) {
  .stat-strip-item {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .stat-strip-item:last-child {
    border-right: none;
  }
}

.stat-number {
  display: block;
  font-family: var(--main-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CONTACT & FAQ SECTION */
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 72px;
}

@media (min-width: 1024px) {
  .contact-faq-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-block p {
  color: #555;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Form Styles */
.contact-form-block {
  background-color: #ffffff;
  padding: 32px 24px;
}

.contact-form-block h3 {
  margin-bottom: 24px;
}

.educational-form .form-group {
  margin-bottom: 20px;
}

.educational-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.educational-form input[type="text"],
.educational-form input[type="email"],
.educational-form input[type="tel"],
.educational-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--alt-font);
  font-size: 0.95rem;
  background-color: #fafafa;
  transition: border-color 0.2s;
}

.educational-form input:focus,
.educational-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: #ffffff;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
}

.contact-form-block button {
  width: 100%;
  margin-top: 8px;
}

/* OPEN FAQ LIST */
.faq-container {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
}

.faq-item h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #555;
}

/* FOOTER */
footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 48px 16px;
  border-top: 3px solid var(--accent-color);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  max-height: 36px;
  width: auto;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* Scroll Reveal Animation */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}