/* =========================================================
   R Millard & Son — base styles
   ========================================================= */

:root {
  --navy: #1f2d3d;
  --navy-deep: #1a2433;
  --gold: #b8964f;
  --gold-light: #cda86a;
  --cream: #f6f1e9;
  --cream-light: #faf7f2;
  --text-dark: #2b2b2b;
  --text-muted: #4a4a4a;
  --white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', Helvetica, Arial, sans-serif;

  --max-width: 1280px;
  --section-pad-y: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 400;
  font-size: 1.05rem;
  width: 100%;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  width: 100%;
  background: var(--cream-light);
  border-bottom: 1px solid #ece4d6;
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 40px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 160px;
  width: auto;
  display: block;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-left ul,
.nav-right ul {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-left a,
.nav-right a {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-left a:hover,
.nav-left a.active,
.nav-right a:hover,
.nav-right a.active {
  border-color: var(--gold);
  color: var(--gold);
}

.main-nav {
  display: none;
  width: 100%;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  position: relative;
}

.nav-phone .nav-phone-main {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-phone .nav-phone-main .phone-icon {
  font-size: 1.1rem;
  transform: none;
}

.nav-phone .nav-phone-hours {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.nav-phone:hover .nav-phone-main,
.nav-phone:hover .nav-phone-hours {
  color: var(--navy);
}

.phone-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transform: rotate(90deg) scaleY(-1);
}

.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.phone-number {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
}

.phone-hours {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Shared ornament & buttons
   ========================================================= */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px 0;
}

.ornament span {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold);
}

.ornament-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

.ornament-light span {
  background: var(--gold-light);
}

.ornament-light .ornament-icon {
  color: var(--gold-light);
}

.btn {
  display: inline-block;
  padding: 18px 38px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold-light);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--navy);
  color: var(--white);
}

.link-arrow {
  position: relative;
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-arrow::after {
  content: '\203A';
  margin-left: 8px;
}

.link-arrow:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.link-arrow.small {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  border-bottom: none;
}

.link-arrow.small:hover {
  color: var(--navy);
}

.link-arrow.light {
  color: var(--white);
  border-color: var(--gold-light);
}

.link-arrow.light:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* =========================================================
   Section header (centred)
   ========================================================= */

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
}

.section-header h2:last-child {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.section-header .ornament {
  margin: 16px 0 0;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-left: 40px;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-center {
  padding-left: 0;
}

.eyebrow-center::before {
  display: none;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 8% 80px 10%;
  background: linear-gradient(180deg, #faf6ee 0%, #f3ebe0 100%);
}

.hero-content h1 {
  font-size: 3.4rem;
  margin-bottom: 8px;
}

.hero-content .ornament {
  margin-left: 0;
  justify-content: flex-start;
}

.hero-content p {
  max-width: 420px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.02rem;
}

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

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.hero-phone .phone-icon {
  font-size: 1.1rem;
}

.hero-phone:hover {
  color: var(--gold);
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #cdb98a;
}

/* =========================================================
   About / Introduction
   ========================================================= */

.about {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--cream);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 8% 80px 10%;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  max-width: 480px;
}

.about-content p {
  max-width: 460px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #d8cdb8;
}

/* =========================================================
   Services grid
   ========================================================= */

.services {
  width: 100%;
  background: var(--white);
  padding: var(--section-pad-y) 0;
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 0;
  padding: 0 40px;
}

.service-card {
  text-align: center;
  padding: 0 32px;
  border-left: 1px solid #e9e2d4;
}

.service-card:first-child,
.service-card:nth-child(5) {
  border-left: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.service-card .divider {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  min-height: 60px;
}

/* =========================================================
   Why Choose Us
   ========================================================= */

.why-choose {
  width: 100%;
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.why-choose-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 40px;
}

.why-card {
  text-align: center;
  padding: 24px 24px;
}

.why-card .why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.why-card .why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================================
   Horse Drawn Ceremonies
   ========================================================= */

.horse-drawn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--cream);
}

.horse-drawn-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #d8cdb8;
}

.horse-drawn-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 8% 80px 10%;
}

.horse-drawn-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  max-width: 480px;
}

.horse-drawn-content .ornament {
  justify-content: flex-start;
  margin-left: 0;
}

.horse-drawn-content p {
  max-width: 460px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* =========================================================
   Funeral Plans
   ========================================================= */

.funeral-plans {
  width: 100%;
  background: var(--white);
  padding: var(--section-pad-y) 0;
}

.plans-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.plans-simple {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--cream-light);
  border-top: 3px solid var(--gold);
}

.plans-simple p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.plans-simple .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.plans-simple .phone-icon {
  font-size: 1.1rem;
  color: inherit;
}

.plan-card {
  background: var(--cream-light);
  padding: 48px 36px 40px;
  text-align: center;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-tier {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 79, 0.3);
  padding: 6px 20px;
  margin-bottom: 24px;
  display: inline-block;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.plan-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  flex-grow: 1;
}

.plan-card ul li {
  color: var(--text-dark);
  font-size: 1.05rem;
  padding: 10px 0 10px 22px;
  position: relative;
  line-height: 1.7;
}

.plan-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.plan-card-featured {
  background: var(--navy-deep);
  border-top-color: var(--gold-light);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(31, 45, 61, 0.18);
}

.plan-card-featured h3 {
  color: var(--white);
}

.plan-card-featured .plan-tier {
  color: var(--gold-light);
  border-color: rgba(205, 168, 106, 0.3);
}

.plan-card-featured .plan-divider {
  background: var(--gold-light);
}

.plan-card-featured ul li {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
}

.plan-card-featured ul li::before {
  background: var(--gold-light);
}

/* =========================================================
   Direct cremation feature
   ========================================================= */

.dc-feature {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--navy-deep);
}

.dc-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 8% 80px 10%;
  color: var(--white);
}

.dc-feature-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.dc-feature-content p {
  max-width: 440px;
  color: #dde1e8;
  margin-bottom: 28px;
}

.dc-feature-content .ornament {
  justify-content: flex-start;
  margin-left: 0;
}

.dc-feature-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #2c2c2c;
}

/* =========================================================
   Testimonials / Review carousel
   ========================================================= */

.testimonials {
  width: 100%;
  background: var(--white);
  padding: var(--section-pad-y) 0;
}

.review-summary {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

.review-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  min-height: 260px;
}

.review-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 40px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.review-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonial-card {
  background: var(--cream-light);
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.testimonial-card cite {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  margin-bottom: 6px;
  display: block;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.testimonial-card .review-read-more {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
  margin-top: auto;
}

.testimonial-card .review-read-more:hover {
  color: var(--navy);
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.review-prev,
.review-next {
  background: none;
  border: 1px solid #ddd4c4;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.review-prev:hover,
.review-next:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.review-dot.active {
  background: var(--gold);
}

/* =========================================================
   Reviews page (full listing)
   ========================================================= */

.reviews-all {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  columns: 3;
  column-gap: 30px;
}

.reviews-all .testimonial-card-full {
  break-inside: avoid;
  margin-bottom: 30px;
}

.testimonial-card-full {
  background: var(--cream-light);
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
}

.testimonial-card-full cite {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  margin-bottom: 6px;
  display: block;
}

.testimonial-card-full .review-stars {
  margin-bottom: 14px;
}

.testimonial-card-full blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .reviews-all {
    columns: 2;
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .reviews-all {
    columns: 1;
    padding: 0 16px;
  }

  .testimonial-card-full {
    padding: 24px 20px;
  }
}

/* =========================================================
   Areas we cover
   ========================================================= */

.areas {
  width: 100%;
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.areas-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
}

.areas-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  padding-left: 20px;
  position: relative;
}

.areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.areas-map {
  width: 100%;
  min-height: 360px;
  background: #e8e0d0;
  border: 1px solid #ddd4c4;
}

.areas-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* =========================================================
   Contact section
   ========================================================= */

.contact-section {
  width: 100%;
  background: var(--white);
  padding: var(--section-pad-y) 0;
}

.contact-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid #ddd4c4;
  background: var(--cream-light);
  color: var(--text-dark);
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-details h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact-details .detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.detail-item .detail-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.detail-item .detail-icon svg {
  width: 100%;
  height: 100%;
}

.detail-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.detail-item a {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s ease;
}

.detail-item a:hover {
  color: var(--gold);
}

/* =========================================================
   CTA band
   ========================================================= */

.cta {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--navy-deep);
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 8% 80px 10%;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
}

.cta-content .ornament {
  justify-content: flex-start;
  margin-left: 0;
}

.cta-content p {
  max-width: 440px;
  color: #dde1e8;
  margin-bottom: 32px;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-phone .phone-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.cta-phone .phone-number {
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-heading);
}

.cta-phone .phone-hours {
  color: var(--gold-light);
}

.cta-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #2c2c2c;
}

/* Simple CTA (no image, centred) */
.cta-simple {
  width: 100%;
  background: var(--navy-deep);
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.cta-simple-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-simple h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.cta-simple .ornament {
  margin-bottom: 10px;
}

.cta-simple p {
  color: #dde1e8;
  margin-bottom: 32px;
}

.cta-simple .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Page banner (inner pages)
   ========================================================= */

.page-banner {
  width: 100%;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 0 70px;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.page-banner .ornament {
  margin: 16px 0 12px;
}

.page-banner p {
  color: #d0d7e0;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================================
   Content sections (inner pages)
   ========================================================= */

.content-section {
  width: 100%;
  padding: var(--section-pad-y) 0;
}

.content-section.bg-cream {
  background: var(--cream);
}

.content-section.bg-white {
  background: var(--white);
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.content-inner h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-inner h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.content-inner p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.content-inner ul {
  list-style: none;
  margin-bottom: 24px;
}

.content-inner ul li {
  color: var(--text-muted);
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
}

.content-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

/* Split content (text + image) */
.content-split {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.content-split.bg-cream {
  background: var(--cream);
}

.content-split.bg-white {
  background: var(--white);
}

.content-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 8% 60px 10%;
}

.content-split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  max-width: 460px;
}

.content-split-text p {
  max-width: 460px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.content-split-text ul {
  list-style: none;
  margin-bottom: 24px;
  max-width: 460px;
}

.content-split-text ul li {
  color: var(--text-muted);
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
}

.content-split-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.content-split-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-color: #d8cdb8;
}

/* =========================================================
   Service detail cards (inner pages)
   ========================================================= */

.service-details {
  width: 100%;
  padding: var(--section-pad-y) 0;
}

.service-details.bg-cream {
  background: var(--cream);
}

.service-details-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.detail-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
}

.detail-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.detail-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* =========================================================
   FAQ accordion
   ========================================================= */

.faq {
  width: 100%;
  padding: var(--section-pad-y) 0;
  background: var(--white);
}

.faq.bg-cream {
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-list details {
  border-bottom: 1px solid #e9e2d4;
}

.faq-list summary {
  padding: 22px 36px 22px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  font-family: var(--font-body);
}

.faq-list details[open] summary::after {
  content: '\2212';
}

.faq-list summary:hover {
  color: var(--gold);
}

.faq-list details div {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   Price tables
   ========================================================= */

.price-section {
  width: 100%;
  padding: var(--section-pad-y) 0;
}

.price-section.bg-cream {
  background: var(--cream);
}

.price-section.bg-white {
  background: var(--white);
}

.price-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.price-inner h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.price-inner > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.price-table th {
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-body);
}

.price-table td {
  padding: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid #e9e2d4;
}

.price-table th:last-child {
  text-align: right;
}

.price-table td:last-child {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table .price-total-row td {
  border-bottom: 2px solid var(--gold);
}

.price-table .price-breakdown-header td {
  padding: 14px 16px 6px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid #e9e2d4;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 10px;
}

.download-section {
  text-align: center;
  padding: 50px 40px;
  background: var(--cream);
  border: 1px solid #e9e2d4;
  margin: 0 auto;
  max-width: 900px;
}

.download-section h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.download-section p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* =========================================================
   Notices
   ========================================================= */

.notices-section {
  width: 100%;
  padding: var(--section-pad-y) 0;
  background: var(--white);
}

.notices-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.notices-inner h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.notices-inner > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.notice-card {
  padding: 28px 0;
  border-bottom: 1px solid #e9e2d4;
}

.notice-card:last-child {
  border-bottom: none;
}

.notice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.notice-card .notice-meta {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.notice-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================================
   Map section
   ========================================================= */

.map-section {
  width: 100%;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* =========================================================
   Office details grid
   ========================================================= */

.office-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.office-card {
  text-align: center;
  padding: 40px 24px;
}

.office-card .office-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  color: var(--gold);
}

.office-card .office-icon svg {
  width: 100%;
  height: 100%;
}

.office-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.office-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.office-card a {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s ease;
}

.office-card a:hover {
  color: var(--gold);
}

/* =========================================================
   Included list (DC page)
   ========================================================= */

.included-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.included-card {
  background: var(--cream-light);
  padding: 36px 28px;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.included-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.included-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================================
   Form status messages
   ========================================================= */

.form-status {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  padding: 20px 40px;
  text-align: center;
  font-size: 0.95rem;
}

.form-status-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status-error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  width: 100%;
  background: var(--navy-deep);
  padding: 60px 0 0;
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  color: #bcc3cd;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #bcc3cd;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-col .footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--white);
  font-weight: 500;
}

.footer-col .footer-phone .phone-icon {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.footer-saif {
  display: block;
  margin-top: 20px;
  max-width: 120px;
  height: auto;
}

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #6b7a8e;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  list-style: none;
  gap: 24px;
}

.footer-legal a {
  color: #6b7a8e;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .plan-card-featured {
    transform: none;
  }

  .services-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .service-card {
    border-left: none;
    border-top: 1px solid #e9e2d4;
    padding-top: 36px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    border-top: none;
  }

  .service-card:nth-child(5) {
    border-left: none;
  }

  .main-nav ul {
    gap: 22px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .service-details-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .office-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  .hero,
  .about,
  .cta,
  .dc-feature,
  .horse-drawn,
  .content-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image,
  .about-image,
  .cta-image,
  .dc-feature-image,
  .horse-drawn-image,
  .content-split-image {
    min-height: 360px;
  }

  .hero-image {
    order: -1;
  }

  .hero-content,
  .about-content,
  .cta-content,
  .dc-feature-content,
  .horse-drawn-content,
  .content-split-text {
    padding: 60px 8%;
    align-items: center;
    text-align: center;
  }

  .hero-content p,
  .about-content p,
  .cta-content p,
  .dc-feature-content p,
  .horse-drawn-content p,
  .content-split-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .content-split-text ul {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    padding-left: 0;
  }

  .eyebrow::before {
    display: none;
  }

  .cta-phone {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .logo {
    order: 1;
    margin-right: auto;
  }

  .logo-img {
    height: 110px;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .main-nav li {
    border-top: 1px solid #ece4d6;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: none;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 18px 20px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .areas-wrap {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 60px 0 50px;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col .footer-phone {
    justify-content: center;
  }

  .footer-saif {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 1.06rem;
  }

  .review-slide {
    grid-template-columns: 1fr 1fr;
  }

  .review-slide .testimonial-card:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1.08rem;
  }

  .testimonials {
    padding: 50px 0;
  }

  .testimonials .section-header {
    margin-bottom: 24px;
  }

  .review-carousel {
    min-height: 0;
    padding: 0 16px;
  }

  .review-slide {
    grid-template-columns: 1fr;
    padding: 0;
    display: none;
  }

  .review-slide.active {
    display: grid;
    position: relative;
    opacity: 1;
  }

  .review-slide .testimonial-card:nth-child(n+2) {
    display: none;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .review-controls {
    margin-top: 20px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p,
  .about-content p,
  .cta-content p,
  .dc-feature-content p,
  .horse-drawn-content p,
  .content-split-text p,
  .content-inner p,
  .faq-list details div,
  .service-card p,
  .why-card p,
  .detail-card p,
  .testimonial-card blockquote,
  .plan-card ul li,
  .areas-list li,
  .footer-col p,
  .footer-col ul a,
  .detail-item p,
  .notice-card p,
  .included-card p,
  .office-card p {
    font-size: 1rem;
  }

  .about-content h2,
  .cta-content h2,
  .dc-feature-content h2,
  .section-header h2 {
    font-size: 1.9rem;
  }

  .services-inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-top: none !important;
    padding-top: 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-simple .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .price-table th,
  .price-table td {
    padding: 12px 8px;
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 16px 32px;
  }

  .content-inner ul li {
    font-size: 1rem;
  }

  .faq-list summary {
    font-size: 1.15rem;
  }

  .page-banner p {
    font-size: 1rem;
  }
}
