:root {
  --bg: #f6f2e9;
  --surface: rgba(255, 251, 244, 0.92);
  --surface-strong: #fffaf2;
  --text: #153536;
  --muted: #5d6867;
  --primary: #0b4a4c;
  --primary-dark: #07393b;
  --gold: #a77827;
  --gold-soft: #ecd8b2;
  --border: rgba(11, 74, 76, 0.14);
  --shadow: 0 18px 50px rgba(20, 44, 45, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --section: clamp(56px, 8vw, 104px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167,120,39,.16), transparent 26rem),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 46%, #efe8dc 100%);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible {
  outline: 3px solid rgba(167, 120, 39, 0.45);
  outline-offset: 3px;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.section { padding-block: var(--section); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  z-index: 100;
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 72px;
  object-fit: contain;
}
.brand strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.brand small {
  display: block;
  max-width: 220px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  border-radius: 12px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}
.main-nav {
  position: fixed;
  inset: 78px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.main-nav.is-open { display: flex; }
.main-nav a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 700;
}
.main-nav a:hover { background: rgba(11, 74, 76, 0.07); }
.header-cta { display: none; }

.hero {
  padding-block: clamp(32px, 6vw, 84px) var(--section);
}
.hero-grid,
.split-grid {
  display: grid;
  gap: 28px;
}
.hero-copy,
.content-card,
.value-card,
.info-card,
.service-card,
.donation-card,
.bank-card,
.contact-form,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: clamp(24px, 4vw, 40px);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.78rem;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.14;
}
h1 {
  font-family: var(--display);
  color: var(--primary);
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  letter-spacing: -0.04em;
}
h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
}
h3 {
  color: var(--primary);
  font-size: 1.18rem;
}
p { margin: 0; }
.hero-text {
  margin-top: 20px;
  font-size: clamp(1.03rem, 2vw, 1.2rem);
  color: #274445;
}
.hero-note {
  margin-top: 14px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  border-color: rgba(11, 74, 76, 0.24);
  color: var(--primary);
}
.btn-full { width: 100%; }
.hero-stats {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.hero-stats article {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(11, 74, 76, 0.06);
  border: 1px solid rgba(11, 74, 76, 0.08);
}
.hero-stats strong,
.hero-stats span {
  display: block;
}
.hero-stats strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-stats span {
  margin-top: 6px;
  color: var(--primary);
  font-weight: 700;
}
.hero-media img,
.place-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.content-card,
.value-card,
.bank-card,
.contact-form,
.info-card,
.service-card,
.donation-card {
  padding: 24px;
}
.content-card p:not(.eyebrow),
.place-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin-top: 14px;
  color: #304647;
}
.chip-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.chip-list li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11, 74, 76, 0.07);
  border: 1px solid rgba(11, 74, 76, 0.08);
  font-weight: 700;
}
.cards {
  display: grid;
  gap: 18px;
}
.symbol,
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(167, 120, 39, 0.14);
  color: var(--gold);
}
.info-card p,
.service-card p,
.donation-card p {
  margin-top: 12px;
  color: var(--muted);
}
.section-heading {
  max-width: 740px;
  margin: 0 auto 28px;
  text-align: center;
}
.left-aligned {
  margin-inline: 0;
  text-align: left;
}
.section-heading p:last-child { margin-top: 12px; color: var(--muted); }
.place {
  background: linear-gradient(180deg, rgba(255,250,242,.4), rgba(167,120,39,.06));
}
.feature-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 244, 0.84);
  border: 1px solid var(--border);
  font-weight: 700;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
}
.support {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11,74,76,.08), rgba(167,120,39,.08));
}
.donation-card strong,
.donation-card span {
  display: block;
  margin-top: 10px;
}
.donation-card strong {
  color: var(--primary);
  font-size: 1.02rem;
}
.bank-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.bank-card dt {
  font-size: 0.86rem;
  color: var(--muted);
}
.bank-card dd {
  margin: 2px 0 0;
  font-weight: 800;
  color: var(--primary);
}
.iban { word-break: break-word; }
.small-note {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.narrow { max-width: 880px; }
.accordion { display: grid; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-item button {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-item button::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
}
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-content {
  padding: 0 20px 18px;
  color: var(--muted);
}
.contact {
  background: #f2eadf;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--border);
}
.contact-list a {
  color: var(--primary);
  font-weight: 800;
}
.contact-form {
  display: grid;
  gap: 10px;
}
.contact-form p { color: var(--muted); }
.contact-form label { font-weight: 800; color: var(--primary); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11,74,76,0.22);
  background: #fff;
  color: var(--text);
}
.contact-form textarea { resize: vertical; }
.form-message {
  min-height: 22px;
  color: var(--primary);
  font-weight: 700;
}
.site-footer {
  padding: 42px 0;
  background: var(--primary);
  color: rgba(255,255,255,0.88);
}
.footer-grid {
  display: grid;
  gap: 20px;
}
.site-footer strong { color: white; }
.site-footer p { margin-top: 8px; }
.site-footer a {
  display: block;
  padding: 5px 0;
  color: white;
  font-weight: 700;
}
.footer-subbar {
  background: #062d2f;
  color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-subbar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0 84px;
}
.footer-subbar p { margin: 0; }
.footer-subbar a {
  color: #fff;
  font-weight: 700;
}
.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .cards.three { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .main-nav a { font-size: 0.92rem; padding: 10px 11px; }
  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    font-weight: 900;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
  .split-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: start;
  }
  .place-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }
  .cards.two { grid-template-columns: repeat(2, 1fr); }
  .cards.four { grid-template-columns: repeat(4, 1fr); }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: start;
  }
  .footer-subbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
  }
  .mobile-bar { display: none; }
}

@media (min-width: 1120px) {
  .brand img { width: 58px; height: 80px; }
  .main-nav a { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* v3 hero + map revision */
.hero {
  padding-block: clamp(26px, 5vw, 58px) var(--section);
}

.hero-grid {
  display: block;
}

.hero-banner {
  margin: 0 0 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(11,74,76,.14), rgba(167,120,39,.16));
}

.hero-banner img {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  object-position: center;
}

.hero-content-grid {
  display: grid;
  gap: 20px;
}

.hero-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-side-card > img {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.hero-side-card .hero-stats {
  margin-top: 0;
}

.map-section {
  background: linear-gradient(180deg, rgba(255,250,242,.55), rgba(11,74,76,.06));
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.map-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero-content-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: stretch;
  }

  .hero-side-card {
    position: relative;
  }

  .hero-side-card .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-banner img {
    object-position: center 48%;
  }
}

/* final layout polish */
.hero-final {
  display: grid;
  gap: 20px;
}

.hero-final .hero-copy {
  min-height: 100%;
}

.hero-final h1 {
  font-size: clamp(2.15rem, 5.3vw, 4.25rem);
  max-width: 760px;
}

.hero-final-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.hero-final-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.support-card-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.support-card-grid > * {
  min-height: 100%;
}

.support-bank-card {
  display: flex;
  flex-direction: column;
}

.support-bank-card dl {
  flex: 1;
}

.place-grid {
  gap: 22px;
}

.place-photo {
  height: min(72vh, 640px);
}

.place-photo img {
  object-fit: cover;
  object-position: center;
}

.map-section {
  display: none;
}

.map-only {
  padding-block: 0 42px;
  background: #f2eadf;
}

.map-card-full iframe {
  min-height: clamp(320px, 48vw, 520px);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand img {
  width: 58px;
  height: auto;
  object-fit: contain;
  background: rgba(255,255,255,.9);
  border-radius: 12px;
  padding: 6px;
}

.footer-contact a {
  display: inline-block;
  padding: 0;
}

.info-dot {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  font-weight: 900;
  font-style: normal;
  line-height: 1;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 75;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
}

@media (min-width: 760px) {
  .support-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hero-final {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    align-items: stretch;
  }

  .support-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .place-grid {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .place-photo {
    height: 560px;
  }

  .scroll-top {
    bottom: 24px;
  }
}

@media (max-width: 899px) {
  .scroll-top {
    bottom: 78px;
  }
}

/* v4 revisions */
.hero-grid {
  display: grid;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.35rem, 7vw, 5.1rem);
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-logo {
  width: 94px;
  height: auto;
  object-fit: contain;
}

.quick-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-list li {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: rgba(11, 74, 76, .06);
  border-radius: var(--radius-sm);
}

.quick-list span {
  color: var(--muted);
  font-size: .88rem;
}

.quick-list strong {
  color: var(--primary);
}

.about-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 360px;
}

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

.values-section {
  padding-top: 0;
}

.values-section .section-heading {
  margin-bottom: 18px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.value-grid span {
  padding: 10px 14px;
  background: rgba(11, 74, 76, .07);
  border: 1px solid rgba(11, 74, 76, .1);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
}

.line-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.symbol,
.service-icon {
  color: var(--gold);
}

.symbol .line-icon,
.service-icon .line-icon {
  width: 25px;
  height: 25px;
}

.trust-section {
  background: linear-gradient(180deg, rgba(255,250,242,.35), rgba(167,120,39,.06));
}

.three-col article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

.three-col article h3 {
  margin: 0;
}

.three-col article p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-icon-svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-only {
  padding: 0;
  margin: 0;
  background: #f2eadf;
}

.map-only iframe {
  display: block;
  width: 100%;
  min-height: clamp(360px, 46vw, 560px);
}

.copyright-dot {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

  .about-photo {
    min-height: 520px;
  }

  .support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
  }

  .donation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
  }

  .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}


/* v6 visual refinement */
.brand img { background: transparent !important; padding: 0 !important; width: 54px; height: 76px; }
.site-header { background: rgba(255,250,242,0.94); }
.hero { padding-block: clamp(46px, 7vw, 92px); }
.hero-grid { display: grid; gap: 28px; align-items: center; }
.hero-copy { background: var(--surface); }
.hero-copy h1 { font-size: clamp(2.4rem, 6.5vw, 4.85rem); max-width: 10ch; }
.hero-copy .hero-text { max-width: 62ch; }
.support-card { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,242,231,.98)); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px; display:flex; flex-direction:column; gap:16px; }
.support-logo { width: 104px; height: auto; object-fit: contain; }
.quick-list { display:grid; gap:10px; list-style:none; margin:0; padding:0; }
.quick-list li { display:grid; gap:2px; padding:12px 14px; border-radius: 14px; background: rgba(11,74,76,.06); }
.quick-list span { color: var(--muted); font-size: .86rem; }
.quick-list strong { color: var(--primary); }

.section-tone-1 { background: transparent; }
.section-tone-2 { background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,247,236,.96)); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-tone-3 { background: linear-gradient(180deg, rgba(239,232,220,.65), rgba(247,242,233,.98)); }
.section-tone-4 { background: rgba(255,251,244,.65); border-top:1px solid rgba(11,74,76,.06); border-bottom:1px solid rgba(11,74,76,.06); }
.section-tone-5 { background: linear-gradient(180deg, rgba(11,74,76,.05), rgba(255,251,244,.98)); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-tone-6 { background: linear-gradient(180deg, rgba(255,250,242,.8), rgba(237,231,220,.95)); }

.about-grid { display:grid; gap:26px; align-items:stretch; }
.about-media-stack { display:grid; gap:16px; }
.about-photo { margin:0; overflow:hidden; border-radius: var(--radius-lg); border:1px solid var(--border); box-shadow: var(--shadow); background: var(--surface-strong); }
.about-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.about-photo.large { min-height: 360px; }
.about-photo-row { display:grid; gap:16px; grid-template-columns: repeat(2,1fr); }
.about-photo.small { min-height: 180px; }

.values-section .section-heading { margin-bottom: 18px; }
.value-grid { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; padding: 24px; border:1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.value-grid span { padding:10px 14px; border-radius:999px; background: rgba(11,74,76,.07); border:1px solid rgba(11,74,76,.1); font-size:.92rem; font-weight:700; }

.visual-strip { display:grid; gap:16px; margin-bottom: 18px; }
.visual-strip figure { margin:0; overflow:hidden; border-radius: 20px; border:1px solid var(--border); box-shadow: var(--shadow); background: var(--surface-strong); }
.visual-strip img { width:100%; height:100%; min-height:220px; object-fit:cover; display:block; }

.place-grid-v2 { display:grid; gap:28px; align-items:start; }
.place-copy-card { padding:24px; background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.place-copy-card p:not(.eyebrow) { margin-top: 14px; color:#304647; }
.place-gallery { display:grid; gap:16px; }
.place-gallery figure { margin:0; overflow:hidden; border-radius: 20px; border:1px solid var(--border); box-shadow: var(--shadow); background: var(--surface-strong); }
.place-gallery img { width:100%; height:100%; min-height:220px; object-fit:cover; display:block; }
.place-main-photo img { min-height:300px; }

.line-icon { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.symbol, .service-icon { color: var(--gold); }
.symbol .line-icon, .service-icon .line-icon { width:25px; height:25px; }

.contact-icon-svg { width:21px; height:21px; flex:0 0 auto; fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.contact-list a span, .contact-list span span { display:inline-flex; align-items:center; }

.footer-brand img { background: transparent !important; padding: 0 !important; width:58px; }
.footer-contact p { margin-top: 10px; }
.copyright-dot { display:inline-grid; place-items:center; width:23px; height:23px; margin-right:6px; border-radius:50%; border:1px solid rgba(255,255,255,.55); font-weight:900; line-height:1; }

.map-only { padding:0; margin:0; width:100%; background:#f2eadf; }
.map-only iframe { display:block; width:100%; height: clamp(420px, 46vw, 620px); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0,1fr) 360px; }
  .about-grid { grid-template-columns: minmax(0,1fr) 460px; }
  .visual-strip { grid-template-columns: repeat(3,1fr); }
  .place-grid-v2 { grid-template-columns: 0.95fr 1.05fr; }
  .place-gallery { grid-template-columns: repeat(2,1fr); }
  .place-main-photo { grid-column: 1 / -1; }
}

@media (max-width: 639px) {
  .hero-copy h1 { max-width: none; }
  .about-photo-row { grid-template-columns: 1fr; }
}

/* v7 final refinements */
.brand-horizontal {
  width: clamp(170px, 20vw, 270px);
}

.brand-horizontal img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
}

.hero-copy h1,
.hero h1 {
  font-size: clamp(2.15rem, 5.4vw, 4.25rem) !important;
  max-width: 13ch;
}

.mission-values-section {
  padding-top: max(50px, var(--section));
  background: linear-gradient(180deg, rgba(239,232,220,.65), rgba(255,251,244,.96));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid rgba(11,74,76,.08);
}

.mission-values-section .section-heading {
  margin-bottom: 28px;
}

.mission-cards {
  margin-bottom: 18px;
}

.mission-value-grid {
  margin-top: 18px;
  padding: 18px 20px;
  box-shadow: none;
  justify-content: flex-start;
}

.mission-value-grid span {
  font-size: .9rem;
  padding: 9px 12px;
}

.values-section,
.section.values-section,
.mission.section-tone-4 {
  display: none !important;
}

.contact {
  background: linear-gradient(180deg, rgba(11,74,76,.08), rgba(167,120,39,.08)) !important;
}

.site-footer .footer-brand img {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: 68px !important;
  height: auto !important;
}

.footer-subbar-inner p {
  margin: 0;
}

.subbar-separator {
  display: inline-block;
  margin-inline: 8px;
  opacity: .75;
}

@media (max-width: 899px) {
  .brand-horizontal {
    width: 190px;
  }

  .hero-copy h1,
  .hero h1 {
    max-width: none;
  }

  .mission-value-grid {
    justify-content: center;
  }
}

/* v8 final user CSS adjustments */
.brand-horizontal img {
  width: 80% !important;
  height: auto !important;
  object-fit: contain;
  background: transparent !important;
  padding: 10px !important;
}

.mission-value-grid {
  margin-top: 18px;
  padding: 18px 20px;
  box-shadow: none;
  justify-content: center;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px;
  border: 0 solid var(--border);
  border-radius: var(--radius-lg);
  background: rgb(255 251 244 / 0%);
}

@media (min-width: 900px) {
  .support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: end;
    align-content: center;
  }
}
