/* ============================================================
   CSS VARIABLES — Warm Parchment Palette
   ============================================================ */
:root {
  --walnut:        #5a3a1a;  /* lighter medium brown */
  --walnut-dark:   #3e2a14;  /* was near-black, now classic nav tone */
  --walnut-mid:    #7a5c28;  /* warm mid-brown */
  --gold:          #9b7a3a;
  --gold-light:    #c8a85a;
  --gold-pale:     #f5edcc;
  --parchment:     #faf6ec;
  --parchment-alt: #f0ebe0;
  --white:         #fffdf7;
  --text:          #2c1e0f;
  --text-muted:    #5a4530;
  --border:        #c8b99a;
  --shadow:        0 2px 8px rgba(44, 30, 15, 0.10);
  --shadow-md:     0 4px 16px rgba(44, 30, 15, 0.14);
  --shadow-lg:     0 8px 32px rgba(44, 30, 15, 0.18);
  --radius:        6px;
  --radius-lg:     14px;
  --max-w:         1100px;
  --transition:    0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--parchment);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--walnut);
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { color: var(--text-muted); max-width: 65ch; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 80px 0; }
.section--alt  { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p { margin: 12px auto 0; font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--walnut-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline-walnut {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}
.btn-outline-walnut:hover {
  background: var(--walnut);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--walnut);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo { display: flex; flex-direction: column; }
.nav__logo-name {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.nav__logo-tagline {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.nav__links a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.nav__links li:nth-child(odd) a {
  background: var(--gold);
  color: var(--walnut-dark);
}
.nav__links li:nth-child(odd) a:hover { background: var(--gold-light); }

.nav__links li:nth-child(even) a {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.nav__links li:nth-child(even) a:hover { background: rgba(255, 255, 255, 0.25); }

.nav__links a.active { opacity: 0.8; }


.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 22px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--walnut-dark);
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
  }
  .nav__links.open { display: flex; }
  .nav__links li { display: block; width: 220px; }
  .nav__links a { display: block; width: 100%; padding: 12px 16px; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--walnut-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand-desc { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer__heading {
  font-family: Georgia, serif;
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-light); }

.footer__contact-item { display: flex; gap: 10px; font-size: 0.9rem; margin-bottom: 10px; align-items: flex-start; }
.footer__contact-icon { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; }

.footer__divider { border: none; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 24px; }
.footer__bottom  { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }

@media (max-width: 768px) {
  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--walnut-dark);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 18px,
    rgba(200, 168, 90, 0.055) 18px,
    rgba(200, 168, 90, 0.055) 19px
  );
}
.page-hero__content { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255, 255, 255, 0.72); font-size: 1.05rem; margin: 0 auto; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  background: var(--walnut-dark);
  border-bottom: 3px solid var(--gold);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 18px,
    rgba(200, 168, 90, 0.055) 18px,
    rgba(200, 168, 90, 0.055) 19px
  );
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--parchment), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.hero p  { color: rgba(255, 255, 255, 0.78); font-size: 1.2rem; margin: 0 auto 36px; max-width: 500px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   HOME — SERVICE TIMES
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { margin-bottom: 8px; }
.service-card .time {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 8px;
}
.service-card p { font-size: 0.9rem; max-width: none; }

/* ============================================================
   HOME — WELCOME
   ============================================================ */
.welcome__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome__visual {
  background: var(--walnut);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
}
.welcome__visual::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 14rem;
  color: rgba(200, 168, 90, 0.08);
  position: absolute;
  top: -30px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.welcome__verse {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.welcome__verse-ref {
  display: block;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.welcome__text h2 { margin-bottom: 20px; }
.welcome__text p  { margin-bottom: 16px; line-height: 1.8; }
.welcome__text .btn { margin-top: 8px; }

@media (max-width: 768px) {
  .welcome__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   HOME — LOCATION
   ============================================================ */
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.location__info h2 { margin-bottom: 24px; }

.location__detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.location__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location__detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.location__detail h4 { color: var(--walnut); margin-bottom: 4px; }
.location__detail p  { font-size: 0.9rem; max-width: none; }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 360px;
}
.location__map iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__map   { height: 260px; }
}

/* ============================================================
   ABOUT — MISSION
   ============================================================ */
.mission__statement { max-width: 800px; margin: 0 auto; text-align: center; }
.mission__statement blockquote {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--walnut);
  line-height: 1.65;
  font-style: italic;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
  text-align: left;
  margin: 40px 0;
}
.mission__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   ABOUT — VALUES
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.value-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.value-card p  { font-size: 0.9rem; line-height: 1.7; max-width: none; }

/* ============================================================
   ABOUT — STORY
   ============================================================ */
.story__inner { max-width: 760px; margin: 0 auto; }
.story__inner h2 { margin-bottom: 28px; }
.story__inner p  { margin-bottom: 20px; line-height: 1.8; font-size: 1.05rem; max-width: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.contact__info h2 { margin-bottom: 16px; }
.contact__info > p { margin-bottom: 36px; line-height: 1.7; max-width: none; }

.contact__detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact__detail-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact__detail h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact__detail p { font-size: 0.95rem; max-width: none; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__email-card { text-align: center; width: 100%; }
.contact__email-icon-wrap {
  font-size: 1.8rem;
  width: 72px; height: 72px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.contact__email-card h3 { margin-bottom: 14px; }
.contact__email-card > p { max-width: 36ch; margin: 0 auto 32px; line-height: 1.7; }
.contact__email-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; margin-bottom: 14px; }
.contact__email-addr { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; max-width: none; }
.contact__topics { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.contact__topic {
  background: var(--gold-pale);
  color: var(--walnut);
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h3 { margin-bottom: 10px; }
.form-success p  { margin: 0 auto; max-width: 40ch; }

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .contact__form  { padding: 28px 20px; }
}
