:root {
  --bg: #f7f2e9;
  --paper: #fffaf1;
  --ink: #171814;
  --muted: #696961;
  --line: #ded6c8;
  --accent: #7a3f22;
  --accent-dark: #4b2b1d;
  --green: #263d2d;
  --grey: #ece8df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 24, 20, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1.1rem; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); max-width: 1050px; }
h2 { font-size: clamp(2.1rem, 4.2vw, 4.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
h1 + p,
h2 + p,
h3 + p { margin-top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 242, 233, .88);
  border-bottom: 1px solid rgba(23, 24, 20, .08);
  backdrop-filter: blur(18px);
}

.brand { font-weight: 800; letter-spacing: 0; }
.nav { display: flex; justify-content: center; gap: 1.2rem; font-size: .93rem; color: #34352f; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.lang-toggle {
  min-width: 2.8rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.icon-link {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.menu-toggle { display: none; background: none; border: 0; padding: .5rem; }
.menu-toggle span { display: block; width: 1.7rem; height: 2px; background: var(--ink); margin: .35rem 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .9rem 1.35rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--accent-dark); }
.button.secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.button.light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button-small { min-height: 2.6rem; padding: .65rem 1rem; font-size: .9rem; }
.text-link { color: var(--accent); font-weight: 900; }
.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(7rem, 13vw, 11rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.hero p { color: rgba(255,255,255,.82); }
.hero-copy { max-width: 1050px; }
.hero-copy .eyebrow { color: #dec29b; }
.hero-copy > p:not(.eyebrow) { max-width: 620px; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.since { margin-top: 3rem; font-weight: 900; font-size: clamp(1.4rem, 4vw, 3rem); color: #dec29b; }

.highlight {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: .9rem 1rem;
  background: var(--green);
  color: var(--white);
}
.highlight span { color: rgba(255,255,255,.75); }
.highlight a { color: #ecd1a7; font-weight: 900; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.metric { padding: clamp(1.3rem, 3vw, 2.4rem); border-right: 1px solid var(--line); }
.metric strong { display: block; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; }
.metric span { color: var(--muted); }

.section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem); }
.section-head { max-width: 850px; margin-bottom: 2.2rem; }
.section-head p:not(.eyebrow) { font-size: 1.12rem; max-width: 680px; margin-top: 1rem; }
.muted { background: var(--grey); }
.dark { background: var(--green); color: var(--white); }
.dark p { color: rgba(255,255,255,.74); }

.help-grid, .services-grid, .news-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.help-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.image-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1.2rem;
  background: var(--ink);
}
.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .76;
  transition: transform .45s ease, opacity .45s ease;
}
.image-card:hover img { transform: scale(1.06); opacity: .56; }
.image-card div { position: relative; color: var(--white); }
.image-card p { color: rgba(255,255,255,.78); }
.image-card .text-link { opacity: 0; color: #ecd1a7; transition: opacity .25s ease; }
.image-card:hover .text-link { opacity: 1; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.portrait {
  min-height: 620px;
  width: 100%;
  box-shadow: var(--shadow);
}
.credential-list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0 1.8rem; padding: 0; list-style: none; }
.credential-list li { border-top: 1px solid var(--line); padding: .6rem .9rem .4rem 0; font-weight: 800; color: #34352f; }

.service-card, .post-card, .testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover, .post-card:hover, .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img, .post-card img { width: 100%; height: 270px; }
.service-card div, .post-card div, .testimonial-card { padding: 1.4rem; }
.price { color: var(--ink); font-weight: 900; }

.method {
  min-height: 720px;
  display: grid;
  align-items: end;
  background: linear-gradient(0deg, rgba(16,17,15,.82), rgba(16,17,15,.2)), url("../Pictures/733642505_951076361282063_7487856827781212165_n.jpeg") center/cover;
  color: var(--white);
}
.method p { color: rgba(255,255,255,.78); max-width: 780px; }
.process-line { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.process-line span { border: 1px solid rgba(255,255,255,.36); padding: .7rem 1rem; font-weight: 900; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.step-grid article { border-top: 2px solid var(--accent); padding-top: 1rem; }
.step-grid span { font-size: 3.8rem; line-height: 1; color: rgba(122,63,34,.32); font-weight: 900; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 1rem;
}
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; background: var(--ink); }
.gallery-grid .large { grid-column: span 2; grid-row: span 2; }
.gallery-grid img,
.gallery-grid video { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  padding: .5rem .65rem;
  background: rgba(18, 19, 17, .72);
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
}
.full-gallery { grid-auto-rows: 300px; }
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--accent);
}

.testimonial-card blockquote { margin: .8rem 0 1.5rem; font-size: 1.15rem; color: #24251f; }
.testimonial-card footer { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); }
.stars { color: #b7792d; letter-spacing: .08em; }

.featured-event {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: 2rem;
  align-items: center;
  background: var(--green);
  color: var(--white);
}
.featured-event img { min-height: 520px; width: 100%; }
.featured-event p { color: rgba(255,255,255,.74); }
dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; }
dt { color: rgba(255,255,255,.55); font-size: .78rem; text-transform: uppercase; font-weight: 900; }
dd { margin: 0; font-weight: 800; }

.final-photo {
  min-height: 620px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(16,17,15,.82), rgba(16,17,15,.25)), url("../Pictures/726380978_1006963078977197_8153369867275172134_n.jpeg") center/cover;
  color: var(--white);
}
.final-photo div { max-width: 800px; }
.final-photo p { color: rgba(255,255,255,.78); }

.page-hero {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
  background: var(--green);
  color: var(--white);
}
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); max-width: 1120px; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 760px; }
.image-hero { min-height: 640px; display: grid; align-items: end; background-size: cover; background-position: center; }
.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-gallery img { width: 100%; height: 420px; }
.faq details { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.faq summary { cursor: pointer; font-weight: 900; font-size: 1.1rem; }
.final-cta { padding: clamp(3rem, 6vw, 5rem); background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.closed-event {
  display: inline-block;
  padding: .9rem 1rem;
  border-left: 4px solid var(--accent);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 2rem;
}
.contact-panel, .form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 3vw, 2rem);
}
.contact-panel a, .contact-panel span { display: block; padding: .75rem 0; border-bottom: 1px solid var(--line); font-weight: 800; }
.form { display: grid; gap: 1rem; }
.form-status {
  padding: 1rem;
  background: #263d2d;
  color: var(--white);
  font-weight: 800;
}
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
label { display: grid; gap: .35rem; font-weight: 800; color: #383932; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdf8;
  padding: .9rem 1rem;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 150px; resize: vertical; }

.site-footer {
  background: #121311;
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem) 1.4rem;
}
.site-footer p, .site-footer span { color: rgba(255,255,255,.65); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 2rem; }
.footer-grid a, .footer-grid span { display: block; margin: .35rem 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1rem; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 28;
  grid-template-columns: 1fr 1fr;
}
.mobile-cta a { text-align: center; padding: .9rem; font-weight: 900; background: var(--green); color: var(--white); }
.mobile-cta a + a { background: var(--accent); }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; grid-column: 3; grid-row: 1; }
  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    flex-direction: column;
    padding: 1.3rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .header-actions { display: none; }
  .help-grid, .services-grid, .news-grid, .testimonial-grid, .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col, .featured-event, .contact-grid { grid-template-columns: 1fr; }
  .trust-bar { overflow-x: auto; grid-template-columns: repeat(4, minmax(190px, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { padding-bottom: 54px; }
  h1 { font-size: clamp(2.45rem, 12vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.4rem); }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 4rem); }
  .hero { min-height: 88svh; background-position: 58% center; }
  .hero-actions, .highlight, .final-cta { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .help-grid, .services-grid, .news-grid, .testimonial-grid, .step-grid, .field-grid, .footer-grid, .about-gallery { grid-template-columns: 1fr; }
  .image-card { min-height: 340px; }
  .portrait, .featured-event img, .about-gallery img { min-height: 0; height: 420px; }
  .gallery-grid { grid-auto-rows: 190px; }
  .gallery-grid .large { grid-column: span 2; }
  dl { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { display: grid; }
}
