/* ==========================================================================
   Kandha Soul Healing — style.css
   Warm, serene, editorial. Cream + evergreen + brass gold.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #faf6ee;
  --cream-soft: #f3ecdd;
  --ink: #22312d;
  --ink-soft: #5a6a63;
  --green: #1e4d44;
  --green-deep: #143029;
  --green-mist: #e7efe9;
  --gold: #b98a44;
  --gold-soft: #d9b36c;
  --line: rgba(34, 49, 45, 0.14);
  --line-light: rgba(250, 246, 238, 0.18);

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  --w-content: 72rem;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --pad-section: clamp(4.5rem, 10vw, 8rem);
  --radius: 1.5rem;

  --shadow-soft: 0 20px 60px -25px rgba(34, 49, 45, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--cream);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

p {
  margin: 0 0 1.1em;
}

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

::selection {
  background: var(--gold-soft);
  color: var(--green-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--w-content);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

section {
  padding-block: var(--pad-section);
}

/* ---------- Shared type patterns ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  max-width: 22ch;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 58ch;
}

.on-dark .section-title { color: var(--cream); }
.on-dark .lede { color: rgba(250, 246, 238, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

.btn-gold {
  background: var(--gold);
  color: #fffcf5;
  box-shadow: 0 14px 34px -14px rgba(185, 138, 68, 0.75);
}
.btn-gold:hover {
  background: #a87a37;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fffcf5;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-green {
  background: var(--green);
  color: var(--cream);
}
.btn-green:hover {
  background: var(--green-deep);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 4.75rem;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fffcf5;
  transition: color 0.4s var(--ease);
}

.site-header.is-scrolled .brand,
.site-header.menu-open .brand {
  color: var(--ink);
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  border-radius: 50%;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.brand-name span {
  color: var(--gold-soft);
}
.site-header.is-scrolled .brand-name span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.site-nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 252, 245, 0.92);
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.4s var(--ease);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .site-nav a:not(.btn) {
  color: var(--ink);
}

.site-nav .btn {
  padding: 0.6rem 1.35rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 70;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fffcf5;
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease),
    background-color 0.35s var(--ease);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span {
  background: var(--ink);
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--cream);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease),
      visibility 0s 0.5s;
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  }

  .site-nav a:not(.btn) {
    color: var(--ink) !important;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 560;
    letter-spacing: 0.01em;
  }

  .site-header.menu-open {
    background: var(--cream);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 60rem);
  display: flex;
  align-items: flex-end;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 22s var(--ease) both;
}

@keyframes hero-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 32, 27, 0.82) 0%, rgba(13, 32, 27, 0.58) 34%, rgba(13, 32, 27, 0.18) 60%, rgba(13, 32, 27, 0) 78%),
    linear-gradient(180deg, rgba(13, 32, 27, 0.5) 0%, rgba(13, 32, 27, 0) 24%),
    linear-gradient(0deg, rgba(13, 32, 27, 0.6) 0%, rgba(13, 32, 27, 0) 45%);
}

.hero .container {
  width: 100%;
  padding-block: clamp(6.5rem, 14vh, 9rem) clamp(3.5rem, 9vh, 6rem);
}

.hero-eyebrow {
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 3px rgba(13, 32, 27, 0.55);
}

.hero h1 {
  color: #fffcf5;
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 540;
  max-width: 14ch;
  margin-bottom: 0.45em;
  text-shadow: 0 2px 6px rgba(13, 32, 27, 0.45), 0 8px 40px rgba(13, 32, 27, 0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-sub {
  color: rgba(255, 252, 245, 0.94);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 46ch;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 4px rgba(13, 32, 27, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-tamil {
  color: rgba(255, 252, 245, 0.72);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  word-spacing: 0.5em;
  text-transform: none;
  text-shadow: 0 1px 3px rgba(13, 32, 27, 0.5);
}

/* ---------- Fact ribbon ---------- */
.ribbon {
  background: var(--green-deep);
  color: var(--cream);
  padding-block: 1.4rem;
}

.ribbon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 0;
}

.ribbon li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(250, 246, 238, 0.88);
  padding-inline: clamp(1rem, 2.5vw, 2.25rem);
}

.ribbon li + li {
  border-left: 1px solid var(--line-light);
}

.ribbon svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--gold-soft);
  flex: none;
}

@media (max-width: 720px) {
  .ribbon li {
    width: 100%;
    justify-content: center;
    border-left: 0 !important;
  }
}

/* ---------- About ---------- */
.about .container {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-figure {
  position: relative;
  margin: 0;
}

.about-figure::before {
  content: "";
  position: absolute;
  inset: 1.6rem -1.6rem -1.6rem 1.6rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.55;
}

.about-figure img {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-values {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.about-values li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  font-weight: 600;
  color: var(--ink);
}

.about-values li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.8rem;
  flex: none;
}

.about-values li small {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.about-name-note {
  margin-top: 2.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--green-mist);
  border-left: 3px solid var(--gold);
  border-radius: 0 1rem 1rem 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.about-name-note strong {
  color: var(--ink);
}

.healer-card + .healer-card {
  margin-top: 1rem;
}

.healer-card {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  box-shadow: 0 14px 40px -24px rgba(34, 49, 45, 0.35);
}

.healer-photo {
  flex: none;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--gold);
  padding: 3px;
  background: #fff;
}

.healer-card h3 {
  font-size: 1.5rem;
  margin: 0;
}

.healer-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.15rem 0 0.5rem;
}

.healer-card p:last-child {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-figure {
    max-width: 26rem;
  }
  .about-figure::before {
    inset: 1.1rem -0.85rem -1.1rem 0.85rem;
  }
  .healer-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Services ---------- */
.services {
  background: var(--green-deep);
  background-image: radial-gradient(
      60rem 40rem at 110% -10%,
      rgba(185, 138, 68, 0.14),
      transparent 60%
    );
}

.services-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
}

.service-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover figure img {
  transform: scale(1.05);
}

.service-body {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.service-body p {
  color: var(--ink-soft);
  font-size: 0.99rem;
  margin-bottom: 1.2rem;
}

.service-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--green);
  background: var(--green-mist);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}

.service-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link svg {
  width: 1em;
  height: 1em;
  transition: transform 0.35s var(--ease);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ---------- Approach / steps ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 1.6rem;
  border-top: 1.5px solid var(--line);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}

.step h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin: 0;
}

/* ---------- Workshops ---------- */
.workshops {
  background: var(--green-mist);
}

.workshops .container {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.workshop-tags {
  margin-bottom: 0;
}

.workshop-tags li {
  background: #fff;
}

.workshop-cta {
  margin-top: 2rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  box-shadow: 0 14px 40px -24px rgba(34, 49, 45, 0.35);
}

.workshop-cta p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.workshop-cta strong {
  color: var(--ink);
}

.workshop-figure {
  position: relative;
  margin: 0;
}

.workshop-figure::before {
  content: "";
  position: absolute;
  inset: 1.6rem 1.6rem -1.6rem -1.6rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.55;
}

.workshop-figure img {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .workshops .container {
    grid-template-columns: 1fr;
  }
  .workshop-figure {
    max-width: 26rem;
  }
  .workshop-figure::before {
    inset: 1.1rem 0.85rem -1.1rem -0.85rem;
  }
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--cream-soft);
  text-align: center;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 42ch;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.35;
  color: var(--green);
}

.quote-band blockquote::before {
  content: "“";
  display: block;
  font-size: 3.2rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.quote-band figcaption {
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- FAQ ---------- */
.faq .container {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1.5px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 560;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex: none;
  width: 2.1rem;
  height: 2.1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.faq-icon::before {
  content: "+";
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--green);
  transition: color 0.4s var(--ease);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
}

.faq-item[open] .faq-icon::before {
  color: var(--cream);
}

.faq-item p {
  color: var(--ink-soft);
  padding-bottom: 1.6rem;
  margin: 0;
  max-width: 60ch;
}

@media (max-width: 900px) {
  .faq .container {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green);
  background-image:
    radial-gradient(50rem 30rem at -10% 120%, rgba(185, 138, 68, 0.22), transparent 60%),
    radial-gradient(40rem 26rem at 110% -20%, rgba(185, 138, 68, 0.14), transparent 60%);
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(250, 246, 238, 0.8);
  max-width: 48ch;
  margin: 0 auto 2.4rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-phone {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
}

.cta-phone:hover {
  color: var(--gold-soft);
}

/* ---------- Contact ---------- */
.contact .container {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact-list {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.7rem;
}

.contact-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-ico {
  flex: none;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: var(--green-mist);
  display: grid;
  place-items: center;
  color: var(--green);
}

.contact-ico svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-list h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.2rem;
}

.contact-list p {
  margin: 0;
  font-size: 1.02rem;
}

.contact-list a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hours-card {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.8rem);
  align-self: start;
  box-shadow: var(--shadow-soft);
}

.hours-card h3 {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.98rem;
}

.hours-row span:first-child {
  color: rgba(250, 246, 238, 0.72);
}

.hours-row span:last-child {
  font-weight: 600;
}

.hours-note {
  margin: 1.4rem 0 0;
  font-size: 0.88rem;
  color: rgba(250, 246, 238, 0.62);
}

.hours-card .btn {
  margin-top: 1.8rem;
  width: 100%;
}

@media (max-width: 900px) {
  .contact .container {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(250, 246, 238, 0.72);
  padding-block: 3.5rem 2.5rem;
  border-top: 1px solid var(--line-light);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-light);
}

.site-footer .brand {
  color: var(--cream);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-disclaimer {
  max-width: 52ch;
  color: rgba(250, 246, 238, 0.55);
  margin: 0;
}

/* ---------- Decorative SVG layer ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  z-index: 0;
}

.quote-band,
.services,
.cta-band {
  position: relative;
  overflow: hidden;
}

.quote-band .container,
.services .container,
.cta-band .container {
  position: relative;
  z-index: 1;
}

.deco-quote {
  width: 34rem;
  height: 34rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.09;
}

.deco-services {
  width: 36rem;
  height: 36rem;
  top: -13rem;
  right: -11rem;
  color: var(--gold-soft);
  opacity: 0.1;
}

.deco-cta {
  width: 30rem;
  height: 30rem;
  bottom: -11rem;
  left: -10rem;
  color: var(--gold-soft);
  opacity: 0.12;
}

.ornament {
  display: block;
  width: 11rem;
  height: 1.5rem;
  margin: 1.6rem auto 0;
  color: var(--gold);
}

.vel-icon {
  width: 1.15rem;
  height: auto;
  flex: none;
  color: var(--gold);
  margin-top: 0.2rem;
}

.about-name-note {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

@media (max-width: 720px) {
  .deco-services,
  .deco-cta {
    width: 22rem;
    height: 22rem;
  }
  .deco-quote {
    width: 26rem;
    height: 26rem;
  }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media print {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-bg img {
    animation: none;
  }
}
