:root {
  --bg: #7c9a92;
  --bg-strong: #6f8d86;
  --surface: rgba(201, 210, 211, 0.78);
  --surface-strong: #c9d2d3;
  --surface-soft: #a7b3b6;
  --text: #2f3e3e;
  --text-on-dark: #ffffff;
  --muted: rgba(47, 62, 62, 0.78);
  --line: #dde2e4;
  --accent: #b56440;
  --accent-dark: #9f5334;
  --shadow: 0 16px 34px rgba(32, 53, 53, 0.12);
  --shadow-soft: 0 10px 24px rgba(32, 53, 53, 0.08);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", "Open Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(221, 226, 228, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(201, 210, 211, 0.2), transparent 28%),
    linear-gradient(160deg, #6f8d86 0%, #7c9a92 38%, #a7b3b6 100%);
}

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

img {
  max-width: 100%;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-status {
  margin: 0 0 1rem;
  color: var(--muted);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header,
main,
.section,
.page-header,
.contact-layout {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  border: 1px solid rgba(221, 226, 228, 0.45);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(110, 140, 134, 0.88), rgba(124, 154, 146, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(221, 226, 228, 0.4);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #c7774e, #8d4426);
  color: #fff7ee;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.site-nav a,
.button,
h3 {
  letter-spacing: 0.01em;
}

.brand-copy strong,
.site-nav a,
.site-header .button {
  color: var(--text-on-dark);
}

.brand-copy small,
.hero-text,
.section-heading p,
.feature-card p,
.spotlight p,
.cta-card p,
.page-header p,
.gallery-card p,
.testimonial-card p,
.contact-card p,
.contact-list,
.form-note {
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: var(--text-on-dark);
  box-shadow: 0 12px 28px rgba(181, 100, 64, 0.24);
}

.button-secondary {
  background: rgba(221, 226, 228, 0.18);
  color: var(--text-on-dark);
  border: 1px solid rgba(221, 226, 228, 0.42);
  backdrop-filter: blur(12px);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(145deg, #a55737, #8f492d);
  box-shadow: 0 14px 30px rgba(181, 100, 64, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(221, 226, 228, 0.28);
}

.button-block {
  width: 100%;
}

.hero,
.about-intro,
.spotlight,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.about-intro {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 2.5rem 0 1rem;
}

.hero {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: auto;
  padding: 1rem 0 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(181, 100, 64, 0.9);
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
}

.hero-text,
.about-text,
.spotlight-copy p,
.page-header p {
  font-size: 1.05rem;
  max-width: 58ch;
}

.about-text {
  margin: 0;
}

.about-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top left, rgba(221, 226, 228, 0.45), transparent 26%),
    linear-gradient(160deg, rgba(124, 154, 146, 0.92), rgba(167, 179, 182, 0.95) 70%, rgba(201, 210, 211, 0.98));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-art {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.art-panel,
.gallery-card-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(221, 226, 228, 0.7), transparent 28%),
    radial-gradient(circle at 70% 30%, rgba(181, 100, 64, 0.18), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(124, 154, 146, 0.26), transparent 32%),
    linear-gradient(160deg, #a7b3b6, #7c9a92 72%, #6f8d86 100%);
  box-shadow: var(--shadow);
}

.art-panel::after,
.gallery-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 250, 245, 0.12), transparent 40%),
    radial-gradient(circle at 75% 25%, rgba(255, 243, 233, 0.18), transparent 20%);
  mix-blend-mode: screen;
}

.art-panel-tall {
  grid-row: span 2;
}

.art-panel-wide {
  grid-column: span 1;
}

.section,
.page-header {
  padding: 2rem 0 4rem;
}

.section,
.page-header,
.gallery-section,
.contact-card {
  position: relative;
}

.section:not(.about-intro):not(.page-header),
.page-header,
.gallery-section,
.contact-card {
  padding-inline: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.8rem;
  border: 1px solid rgba(221, 226, 228, 0.48);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(201, 210, 211, 0.78), rgba(167, 179, 182, 0.66));
  box-shadow: var(--shadow-soft);
}

.section-soft {
  padding-top: 3rem;
}

.section-heading {
  max-width: 62ch;
  margin-bottom: 2rem;
}

.feature-grid,
.services-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.quote-card,
.heart-card,
.cta-card,
.gallery-card,
.testimonial-card,
.contact-card,
.booking-panel {
  background: linear-gradient(165deg, rgba(201, 210, 211, 0.92), rgba(221, 226, 228, 0.7));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.feature-card,
.service-card,
.quote-card,
.heart-card,
.testimonial-card,
.contact-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.service-card {
  overflow: hidden;
  padding: 0;
  display: block;
}

.service-card-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(221, 226, 228, 0.52), transparent 28%),
    linear-gradient(160deg, rgba(124, 154, 146, 0.86), rgba(167, 179, 182, 0.92) 68%, rgba(201, 210, 211, 0.96));
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-copy {
  padding: 1.3rem 1.35rem 1.5rem;
}

.service-card-copy p {
  margin: 0;
  color: var(--muted);
}

.testimonials-section {
  overflow: hidden;
}

.testimonials-scroller {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.1rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) rgba(221, 226, 228, 0.42);
}

.testimonials-scroller::-webkit-scrollbar {
  height: 0.7rem;
}

.testimonials-scroller::-webkit-scrollbar-track {
  background: rgba(221, 226, 228, 0.42);
  border-radius: 999px;
}

.testimonials-scroller::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.testimonial-card {
  flex: 0 0 min(760px, 88vw);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  min-height: 260px;
  scroll-snap-align: start;
}

.testimonial-photo {
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(221, 226, 228, 0.52), transparent 28%),
    linear-gradient(160deg, rgba(124, 154, 146, 0.86), rgba(167, 179, 182, 0.92) 68%, rgba(201, 210, 211, 0.96));
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-copy p {
  margin: 0 0 0.9rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.testimonial-copy p:last-child {
  margin-bottom: 0;
}

.testimonial-name {
  margin-top: 1rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.testimonial-status {
  margin: 0;
  color: var(--muted);
}

.heart-card {
  max-width: 72ch;
}

.heart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.heart-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.heart-card p:last-child {
  margin-bottom: 0;
}

.scripture-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: linear-gradient(165deg, rgba(201, 210, 211, 0.86), rgba(221, 226, 228, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.scripture-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
}

.scripture-reference {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.scripture-body {
  display: grid;
  gap: 0.9rem;
}

.scripture-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.scripture-verse-number {
  color: var(--accent-dark);
  font-weight: 700;
}

.spotlight {
  grid-template-columns: 1.1fr 0.8fr;
  align-items: center;
}

.quote-card {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  line-height: 1.2;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.page-header {
  padding-top: 2.5rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-sections {
  display: grid;
  gap: 3rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 4rem;
}

.gallery-section {
  display: grid;
  gap: 1.5rem;
  scroll-margin-top: 2rem;
}

.gallery-section-heading h2 {
  margin-bottom: 0.35rem;
}

.gallery-section-heading p {
  margin: 0;
  color: var(--muted);
}

.gallery-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(201, 210, 211, 0.74);
}

.gallery-card-image {
  min-height: 280px;
}

.gallery-show-more {
  justify-self: center;
}

.gallery-empty {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  padding-bottom: 4rem;
}

.contact-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
}

.contact-list dt {
  font-weight: 700;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(201, 210, 211, 0.72);
  color: var(--text);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: rgba(221, 226, 228, 0.92);
}

.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-link span {
  font-weight: 600;
}

.contact-form,
.booking-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(221, 226, 228, 0.88);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  background: rgba(221, 226, 228, 0.84);
  color: var(--text);
}

textarea {
  resize: vertical;
}

.booking-drawer {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr min(520px, calc(100% - 1rem));
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 5;
}

.booking-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-backdrop {
  background: rgba(35, 23, 17, 0.42);
}

.booking-panel {
  padding: 1.5rem;
  border-radius: 30px 0 0 30px;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(201, 210, 211, 0.96), rgba(167, 179, 182, 0.96));
}

.drawer-close {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 62, 62, 0.08);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 700ms ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 120ms;
}

.reveal:nth-child(3) {
  animation-delay: 220ms;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .about-intro,
  .heart-layout,
  .testimonial-card,
  .spotlight,
  .feature-grid,
  .services-grid,
  .gallery-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  h1 {
    max-width: none;
  }

  .site-header,
  main,
  .section,
  .page-header,
  .contact-layout,
  .gallery-sections {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .hero-art {
    grid-auto-rows: 140px;
  }

  .booking-drawer {
    grid-template-columns: 1fr;
  }

  .booking-backdrop {
    display: none;
  }

  .booking-panel {
    border-radius: 24px 24px 0 0;
    margin-top: auto;
    max-height: 92vh;
  }
}




