:root {
  --background: #f5f2eb;
  --card-bg: rgba(255, 255, 250, 0.98);
  --accent: #b87945;
  --accent-soft: #d7aa7a;
  --text-main: #37413a;
  --text-muted: #6e7a71;
  --border-soft: rgba(184, 121, 69, 0.3);
  --shell-max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Libre Franklin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    linear-gradient(rgba(245, 242, 235, 0.85), rgba(245, 242, 235, 0.95)),
    url("/assets/img/background.jpg") center center / cover fixed no-repeat;
}

/* Layout shell */

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(245, 242, 235, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.shell--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(0, 0, 0, 0.2);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
}

.brand__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav__link {
  text-decoration: none;
  color: var(--text-main);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.6);
}

.nav__link--primary {
  border: 1px solid var(--accent-soft);
  background: linear-gradient(135deg, #f5ebde, #e4c7a5);
  color: #7b4a22;
}

/* Main */

.site-main {
  padding-bottom: 3rem;
}

/* Hero */

.hero {
  padding: 3.5rem 0 1.4rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  padding: 2.5rem 2.2rem;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.1rem;
  margin: 0 0 0.75rem;
}

.hero__intro {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  border-color: rgba(178, 122, 68, 0.9);
  background: linear-gradient(135deg, #f5ebde, #e4c7a5);
  color: #7b4a22;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.18);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.23);
}

.btn--ghost {
  border-color: rgba(184, 121, 69, 0.35);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
}

/* Sections */

.section {
  padding: 2.5rem 0;
}

.section--light .section__title {
  text-align: center;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.section--light .section__intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  padding: 1.75rem 0 2.25rem;
  background: rgba(245, 242, 235, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.footer__text {
  font-size: 0.82rem;
  color: var(--text-main);
}

.footer__disclaimer {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Responsive tweaks */

@media (max-width: 800px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.75rem;
  }

  .nav {
    display: none; /* later: mobile nav */
  }
}

/* --- Welcome section --- */

.section--welcome {
  padding-top: 2rem;
  padding-bottom: 2.2rem;
}

.section--welcome__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: stretch;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.welcome-text p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 0.7rem;
}

.welcome-text__btn {
  margin-top: 0.7rem;
}

.welcome-text {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.6rem 1.7rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 121, 69, 0.28);
}

.welcome-text p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 0.7rem;
}

.welcome-text__btn {
  margin-top: 0.7rem;
}

.welcome-text {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.6rem 1.7rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 121, 69, 0.28);
}

.welcome-text p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 0.7rem;
}

.welcome-text__btn {
  margin-top: 0.7rem;
}


.welcome-scripture {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.scripture-card {
  width: 100%;
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  background: radial-gradient(circle at 15% 0%, #fff9f2, #f2e3d1);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(178, 122, 68, 0.4);
}

.scripture-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.scripture-card__text {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-main);
}

.scripture-card__ref {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* --- Hero side quote card --- */

.hero__side {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero-quote-card {
  max-width: 260px;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 250, 0.95);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

.hero-quote-card__text {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-main);
}

.hero-quote-card__attribution {
  margin-top: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* --- Video section --- */

.section--video {
  padding-top: 1.9rem;
  padding-bottom: 2.2rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__intro--narrow {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  background: #000;
}

.video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 ratio */
}

.video-frame video.intro-video {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: #000;
}


/* --- Features / how we work --- */

.section--features {
  padding-top: 1.9rem;
  padding-bottom: 2.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.feature-card {
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 250, 0.96);
  border: 1px solid rgba(184, 121, 69, 0.26);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--text-main);
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}


/* --- Victoria section with tri-panel images on top --- */

.section--victoria {
  padding-top: 1.9rem;
  padding-bottom: 2.2rem;
}

.section--victoria__inner {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 2.1rem 2rem;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* 3 images across the top */
.victoria-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; 
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.victoria-photo-grid__item {
  position: relative;
  aspect-ratio: 9 / 16; 
}

.victoria-photo-grid__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.victoria-photo-grid__item--main img {
  transform: scale(1.03);
}

/* text underneath */
.victoria-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 0.7rem;
}

/* mobile: card stays stacked, so nothing fancy needed */
@media (max-width: 600px) {
  .section--victoria__inner {
    padding: 1.7rem 1.5rem;
  }
}

/* --- CTA section --- */

.section--cta {
  padding-top: 1.9rem;
  padding-bottom: 2.4rem;
}

.section--cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border-radius: 22px;
  padding: 1.9rem 2rem;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.section--cta__inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* --- Responsive tweaks for new sections --- */

@media (max-width: 960px) {
  .section--welcome__inner,
  .section--victoria__inner {
    grid-template-columns: 1fr;
  }

  .welcome-scripture {
    justify-content: flex-start;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__side {
    justify-content: flex-start;
    margin-top: 1.2rem;
  }
}

@media (max-width: 800px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section--cta__inner {
    padding: 1.6rem 1.5rem;
  }
}

/* --- Brand artwork section --- */

.section--artwork {
  padding-top: 1.8rem;
  padding-bottom: 2.2rem;
}

.section--artwork__inner {
  display: flex;
  justify-content: center;
}

.artwork-card {
  margin: 0;
  max-width: 420px;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 121, 69, 0.35);
}

.artwork-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* small screen optimization styles */
@media (max-width: 600px) {
  .section--artwork {
    padding-top: 1.4rem;
    padding-bottom: 2rem;
  }
}

/* --- Page hero: About --- */

.page-hero {
  position: relative;
  padding: 3.3rem 0 2.6rem;
  color: var(--text-main);
}

.page-hero--about {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.38),
      rgba(0, 0, 0, 0.33),
      rgba(0, 0, 0, 0.38)
    ),
    url("/assets/img/about-banner.jpg") center center / cover no-repeat;
}

.page-hero__inner {
  display: flex;
  align-items: flex-end;
  min-height: 230px;
}


.page-hero__text h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.9rem;
  margin: 0.2rem 0 0;
}

.page-hero__text {
  background: rgba(255, 255, 250, 0.96);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

.page-hero__text h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.9rem;
  margin: 0.2rem 0 0;
}

@media (max-width: 800px) {
  .page-hero__inner {
    min-height: 190px;
  }

  .page-hero__text {
    padding: 1rem 1.2rem;
    max-width: 100%;
  }
}


/* --- About content card --- */

.section--about {
  padding-top: 2.3rem;
  padding-bottom: 2.7rem;
}

.section--about__inner {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 2.1rem 2rem;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.8rem;
  align-items: center;
}

.about-text p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.about-logo {
  display: flex;
  justify-content: center;
}

.about-logo__img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 999px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .section--about__inner {
    grid-template-columns: 1fr;
    padding: 1.9rem 1.7rem;
  }

  .about-logo {
    order: -1; /* logo above text on mobile */
    margin-bottom: 0.4rem;
  }

  .page-hero__inner {
    min-height: 180px;
  }
}

/* --- About page CTA --- */

.section--about-cta {
  padding-top: 1.8rem;
  padding-bottom: 2.8rem;
}

.section--about-cta__inner {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 1.9rem 2rem;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  justify-content: space-between;
}

.section--about-cta__inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 800px) {
  .section--about-cta__inner {
    padding: 1.7rem 1.5rem;
  }
}
