/* Pure Heart Community Care — layout aligned with rabyya.com.au */

:root {
  --cream: #f7f2e7;
  --navy: #152238;
  --navy-90: rgba(21, 34, 56, 0.9);
  --navy-85: rgba(21, 34, 56, 0.85);
  --navy-80: rgba(21, 34, 56, 0.8);
  --navy-75: rgba(21, 34, 56, 0.75);
  --navy-65: rgba(21, 34, 56, 0.65);
  --gold: #c9a23a;
  --gold-dark: #9e7d2a;
  --off-white: #fffdf8;
  --warm: #faf8f3;
  --shadow-soft: 0 12px 40px rgba(21, 34, 56, 0.08);
  --shadow-hero: 0 20px 50px rgba(21, 34, 56, 0.18);
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-script: "Dancing Script", cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s; }

.container-standard {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding { padding: 5rem 0; }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 231, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 0.75rem 1.25rem;
  min-height: 4.75rem;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .header-inner {
    min-height: 5.25rem;
    padding: 0.625rem 0;
    gap: 1rem 2.5rem;
  }
}

.header-nav-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }

  .logo-link {
    grid-column: 1;
    justify-self: start;
  }

  .header-nav-group {
    grid-column: 2;
    justify-self: center;
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .header-nav-group { margin-left: auto; }
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo-link:hover { opacity: 0.92; }

.header-logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-logo-type { display: flex; flex-direction: column; line-height: 1.15; }
.header-logo-type__name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.header-logo-type__sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-80);
}

.main-nav {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .main-nav { gap: 1.625rem; }
}

.main-nav a:not(.nav-cta) {
  position: relative;
  font-weight: 500;
  color: var(--navy-90);
  white-space: nowrap;
  border-radius: 4px;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.main-nav a:not(.nav-cta):hover { color: var(--gold-dark); }
.main-nav a:not(.nav-cta).active {
  color: var(--gold-dark);
}
.main-nav a:not(.nav-cta).active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 0.625rem 1.35rem;
  background: var(--navy);
  color: var(--off-white) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(21, 34, 56, 0.9); color: var(--off-white) !important; }

@media (min-width: 1280px) {
  .nav-cta { padding: 0.65rem 1.5rem; }
}

@media (min-width: 1024px) {
  .mobile-nav-toggle { display: none !important; }
}

.mobile-nav-toggle {
  margin-left: 0.75rem;
  padding: 0.5rem;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--navy);
  cursor: pointer;
  border-radius: 6px;
}

@media (max-width: 1023px) {
  .header-inner:has(.main-nav.is-open) .header-nav-group {
    flex-basis: 100%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: 0;
  }
}

.main-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0.5rem;
  padding: 0.75rem 0 0.5rem;
  border-top: 1px solid rgba(201, 162, 58, 0.25);
}
.main-nav.is-open a:not(.nav-cta) {
  padding: 0.5rem 0;
}
.main-nav.is-open .nav-cta {
  text-align: center;
  margin-top: 0.35rem;
  margin-left: 0;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-navy { background: var(--navy); color: var(--off-white); }
.btn-navy:hover { background: rgba(21, 34, 56, 0.9); color: var(--off-white); }

.btn-outline-gold {
  background: transparent;
  color: var(--navy);
  border-color: rgba(201, 162, 58, 0.6);
}
.btn-outline-gold:hover { background: rgba(201, 162, 58, 0.1); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--off-white); }

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255, 253, 248, 0.35);
}
.btn-ghost:hover { background: rgba(255, 253, 248, 0.1); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--off-white); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Hero: copy left + whole brochure right (rabyya.com.au) —— */
.hero-split {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 0.25rem 0 3rem;
}

@media (min-width: 768px) {
  .hero-split { padding: 0.5rem 0 4rem; }
}

.hero-split__deco {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 58, 0.15);
}
.hero-split__deco--right {
  right: -4rem;
  top: 6rem;
  width: 18rem;
  height: 18rem;
}
.hero-split__deco--left {
  left: -6rem;
  bottom: 0;
  width: 14rem;
  height: 14rem;
  border-color: rgba(201, 162, 58, 0.1);
}

.hero-split__grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
    padding-top: 1.25rem;
  }
}

/* Left: headline + CTAs */
.hero-split__copy {
  order: 2;
  text-align: center;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .hero-split__copy { padding-top: 2.75rem; }
}
@media (min-width: 1024px) {
  .hero-split__copy {
    order: 1;
    text-align: left;
    padding-top: 3.75rem;
  }
}

.hero-split__text {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 34rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-split__text { margin: 0; }
}

.hero-split__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.12;
}

.hero-split__script {
  font-family: var(--font-script);
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1.15;
}

.hero-split__heart {
  color: var(--gold);
  font-size: 1.25rem;
}

.hero-split__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy-85);
}
@media (min-width: 768px) {
  .hero-split__lead { font-size: 1.0625rem; }
}

.hero-split__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
@media (min-width: 480px) {
  .hero-split__actions {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .hero-split__actions { justify-content: flex-start; }
}

/* Right: full brochure, scaled to fit hero height */
.hero-split__visual {
  order: 1;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-split__visual {
    order: 2;
    justify-content: flex-end;
    padding-left: 0.5rem;
  }
}

.hero-split__brochure-wrap {
  position: relative;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-split__brochure-wrap { max-width: 26rem; }
}

@media (min-width: 768px) {
  .hero-split__brochure-wrap { max-width: 30rem; }
}

@media (min-width: 1024px) {
  .hero-split__brochure-wrap {
    max-width: none;
    width: 100%;
    margin: 0;
  }
}

.hero-split__brochure {
  margin: 0;
  line-height: 0;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  border-radius: 0.75rem;
  /* Crop footer contact strip only — keep hero photo visible */
  aspect-ratio: 682 / 855;
  box-shadow: 0 20px 48px rgba(21, 34, 56, 0.1);
}

.hero-split__brochure img {
  display: block;
  width: 103%;
  max-width: none;
  height: auto;
  margin: -1.5% 0 0 -1.5%;
  border: none;
  outline: none;
  padding: 0;
  background: var(--cream);
  box-shadow: none;
  /* Shave outer blue frame; container aspect-ratio hides footer contact strip */
  mix-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .hero-split__brochure {
    border-radius: 1rem;
    box-shadow: 0 28px 56px rgba(21, 34, 56, 0.12);
  }
}

/* —— Sections —— */
.section-panel { padding: 4rem 0; }
@media (min-width: 768px) { .section-panel { padding: 5rem 0; } }
.section-panel--warm { background: var(--warm); }
.section-panel--white { background: var(--off-white); }

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}
.section-heading h2 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  color: var(--navy);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .section-heading h2 { font-size: 1rem; }
}
.section-heading__line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--gold);
}
@media (min-width: 768px) {
  .section-heading__line { max-width: 140px; }
}

.section-sub {
  margin: 1rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--navy-75);
}

/* —— Services arch grid —— */
.services-arch-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) {
  .services-arch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-arch-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
}

.service-arch {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-arch__niche {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 9rem;
  margin-bottom: 1.5rem;
}
.service-arch__niche::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 88%;
  border-radius: 999px 999px 0 0;
  background: var(--off-white);
  box-shadow: inset 0 1px 0 rgba(201, 162, 58, 0.12);
}
.service-arch__niche i {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  font-size: 2.75rem;
  color: var(--gold);
}

.service-arch h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.35;
}
.service-arch p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--navy-80);
}

/* —— Quote card —— */
.quote-card { background: var(--cream); }

.quote-card__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
  background: var(--off-white);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .quote-card__inner {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .quote-card__inner { padding: 2.5rem 3.5rem; }
}

.quote-card__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .quote-card__left { flex-direction: row; text-align: left; }
}

.quote-card__icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(21, 34, 56, 0.15);
}

.quote-card__left > p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--navy);
  max-width: 36rem;
}
@media (min-width: 768px) {
  .quote-card__left > p { font-size: 1.25rem; }
}

.quote-card__script {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--gold);
}
@media (min-width: 768px) {
  .quote-card__script { font-size: 1.875rem; }
}

.quote-card__rule {
  display: none;
  width: 1px;
  height: 7rem;
  background: rgba(201, 162, 58, 0.5);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .quote-card__rule { display: block; }
}

.quote-card__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .quote-card__right { align-items: flex-start; text-align: left; }
}

.quote-card__right p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--navy-90);
  max-width: 28rem;
}
.quote-card__right i {
  color: var(--gold);
  font-size: 1.25rem;
}

/* —— Testimonials —— */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(21, 34, 56, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.testimonial-card blockquote {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--navy-90);
}
.testimonial-card blockquote::before { content: "\201C"; }
.testimonial-card blockquote::after { content: "\201D"; }

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 162, 58, 0.2);
  font-size: 0.875rem;
}

.testimonial-card__avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--off-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* —— FAQ teaser —— */
.faq-teaser {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.faq-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--navy);
}
.faq-teaser__text {
  margin-top: 1rem;
  color: var(--navy-80);
}
.faq-teaser .btn { margin-top: 2rem; }

/* —— CTA block —— */
.cta-block { background: var(--cream); }

.cta-block__inner {
  padding: 2.5rem 1.5rem;
  background: var(--navy);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .cta-block__inner { padding: 3rem; }
}

.cta-block__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.cta-block__inner > p {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 253, 248, 0.85);
}
@media (min-width: 768px) {
  .cta-block__inner > p { font-size: 1.125rem; }
}

.cta-block__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .cta-block__actions { flex-direction: row; }
}

/* —— Footer —— */
.site-footer { background: var(--cream); }

.footer-contact-bar {
  background: var(--navy);
  color: var(--off-white);
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .footer-contact-bar { padding: 2.5rem 0; }
}

.footer-contact-bar__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer-contact-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-contact-bar__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-contact-item { align-items: flex-start; text-align: left; }
}

.footer-contact-item__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 58, 0.4);
  background: rgba(201, 162, 58, 0.1);
  color: var(--gold);
  font-size: 1.25rem;
}

.footer-contact-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer-contact-item a {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 253, 248, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-main__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 162, 58, 0.2);
}
@media (min-width: 768px) {
  .footer-main__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-main__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
}
.footer-logo-link:hover { opacity: 0.92; }

.footer-logo-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-type {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-logo-type__name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.footer-logo-type__sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-80);
}

.footer-main__brand p {
  margin-top: 1rem;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--navy-80);
}

.footer-main h3 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}

.footer-links {
  list-style: none;
  margin-top: 1rem;
}
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--navy-85);
}
.footer-links a:hover { color: var(--gold-dark); }

.footer-main__grid > div > p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--navy-80);
}
.footer-main__grid > div > p + p { margin-top: 0.5rem; }

.footer-tagline {
  padding-top: 2.5rem;
  text-align: center;
}
.footer-tagline p {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy);
}
@media (min-width: 768px) {
  .footer-tagline p { font-size: 1rem; }
}
.footer-tagline__script {
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}
@media (min-width: 768px) {
  .footer-tagline__script { font-size: 1.875rem; }
}
.footer-tagline > i {
  display: block;
  margin: 1rem auto 0;
  color: var(--gold);
  font-size: 1rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 58, 0.15);
  font-size: 0.875rem;
  color: var(--navy-65);
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* —— Inner pages (shared) —— */
.page-hero {
  background: var(--cream);
  padding: 3rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 162, 58, 0.15);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--navy);
}
.page-hero p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: var(--navy-80);
}

.page-content {
  padding: 3rem 0 4rem;
  background: var(--warm);
}
.page-content--white { background: var(--off-white); }

.content-block {
  max-width: 48rem;
  margin: 0 auto;
}
.content-block h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.content-block h2:first-child { margin-top: 0; }
.content-block p,
.content-block li {
  color: var(--navy-80);
  margin-bottom: 1rem;
}
.content-block ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info-card,
.contact-form-wrap {
  padding: 1.75rem;
  background: var(--off-white);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 1rem;
}

.contact-info-card h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--navy-80);
  margin-bottom: 0.75rem;
  display: block;
}
.contact-info-card a:hover { color: var(--gold-dark); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(21, 34, 56, 0.15);
  border-radius: 8px;
  background: var(--off-white);
  color: var(--navy);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 162, 58, 0.2);
}

.services-page-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-detail-card {
  padding: 1.75rem;
  background: var(--off-white);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 1rem;
}
.service-detail-card h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-detail-card p {
  font-size: 0.95rem;
  color: var(--navy-80);
  line-height: 1.65;
}

/* —— Legacy inner-page layout (about, services, contact, gallery) —— */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-nav ul {
  list-style: none;
  display: contents;
}

.logo-mark { width: 58px; height: 58px; object-fit: contain; }
.logo-type { display: flex; flex-direction: column; line-height: 1.15; }
.logo-type__name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.logo-type__sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-80);
}

.header-cta.desktop-only { display: none; }
@media (min-width: 1024px) {
  .header-cta.desktop-only { display: none; }
}

.content-section {
  padding: 3.5rem 0;
  background: var(--warm);
}
.content-section.alt-bg { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
}
.section-header p { margin-top: 0.5rem; color: var(--navy-80); }

.content-section--story .container {
  text-align: center;
}

.content-section--story h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.history-content {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.history-text p {
  color: var(--navy-80);
  margin-bottom: 1rem;
  line-height: 1.75;
  text-align: center;
}

.values-grid,
.team-grid,
.contact-details {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .values-grid,
  .contact-details { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-details { grid-template-columns: repeat(4, 1fr); }
}

.value-card,
.contact-card,
.team-member {
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 1rem;
  text-align: center;
}
.value-card i,
.contact-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.value-card h3,
.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card p,
.contact-card p { font-size: 0.9rem; color: var(--navy-80); line-height: 1.6; }

.team-grid--single {
  display: flex;
  justify-content: center;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.team-photo {
  width: 9.5rem;
  height: 9.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(201, 162, 58, 0.35);
  box-shadow: 0 4px 16px rgba(21, 34, 56, 0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.team-photo-placeholder {
  width: 9.5rem;
  height: 9.5rem;
  max-width: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), rgba(201, 162, 58, 0.2));
}
.team-member h3 {
  font-family: var(--font-serif);
  color: var(--navy);
}
.team-member .position {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.25rem 0 0.75rem;
}
.team-member p { font-size: 0.9rem; color: var(--navy-80); }

.cta-section {
  padding: 3rem 0;
  background: var(--navy);
  text-align: center;
  color: var(--off-white);
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.cta-section p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: rgba(255, 253, 248, 0.85);
}

.contact-form-section .contact-form-container {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-form-section .contact-form-container { grid-template-columns: 1fr 1.3fr; }
}
.form-intro h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-intro p { color: var(--navy-80); margin-bottom: 1rem; }

.service-intro { max-width: 48rem; margin-bottom: 2rem; }
.service-intro p { color: var(--navy-80); line-height: 1.7; }

.service-text {
  max-width: 42rem;
  margin: 0 auto;
}

.service-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-text p {
  color: var(--navy-80);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.service-features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--navy-80);
  line-height: 1.55;
}

.service-features i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gold);
}

.services-list { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .services-list { grid-template-columns: repeat(2, 1fr); }
}
.service-item {
  padding: 1.75rem;
  background: var(--off-white);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 1rem;
}
.service-item i { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }
.service-item h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-item p { font-size: 0.95rem; color: var(--navy-80); line-height: 1.65; }

.gallery-section .gallery-grid { margin-top: 1.5rem; }

/* —— FAQs page —— */
.faq-page {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--off-white);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 1.25rem 1.15rem;
  border-top: 1px solid rgba(201, 162, 58, 0.15);
}

.faq-item__answer p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy-80);
}

.faq-item__answer p + p {
  margin-top: 0.65rem;
}

.faq-item__answer a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover {
  color: var(--navy);
}
