:root {
  --primary: #6b3e26;
  --secondary: #be9b7b;
  --primary-dark: #3c2215;
  --bg: #ffffff;
  --bg-soft: #f7f3ef;
  --text: #251b16;
  --muted: #6f645f;
  --line: rgba(107, 62, 38, 0.12);
  --shadow: 0 20px 60px rgba(60, 34, 21, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
  --transition: 0.35s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
img.is-missing { opacity: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
iframe { width: 100%; border: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.muted { background: var(--bg-soft); }
.highlight {
  background: linear-gradient(180deg, rgba(190, 155, 123, 0.12), rgba(255,255,255,1));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading h2,
.section-copy h2,
.slide__content h1,
.slide__content h2,
.cta-band__inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-heading h2,
.section-copy h2,
.cta-band__inner h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
.section-heading p,
.section-copy p { color: var(--muted); }

.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.92rem;
}
.topbar__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__inner p { margin: 0; }
.topbar__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar__actions a { opacity: 0.92; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(107, 62, 38, 0.08);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(60,34,21,0.08);
}
.brand span { display: flex; flex-direction: column; }
.brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--primary-dark);
}
.brand small { color: var(--muted); font-size: 0.88rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav a {
  font-weight: 500;
}
.nav a:hover { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--primary);
}
.btn--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px auto;
  transition: var(--transition);
}

.hero {
  position: relative;
  color: #fff;
  background: #100b08;
}
.hero-slider {
  position: relative;
  min-height: clamp(620px, 88vh, 860px);
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
}
.slide.is-active {
  animation: heroZoom 7s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}
.slide__content {
  text-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,18,11,0.82), rgba(30,18,11,0.38));
}
.slide__content {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 88vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
}
.slide__content h1,
.slide__content h2 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  margin-bottom: 18px;
}
.slide__content p:not(.eyebrow) {
  font-size: 1.08rem;
  max-width: 640px;
  color: rgba(255,255,255,0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;
}
.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
}
.dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
}
.dot.is-active { background: var(--secondary); }

.stats {
  margin-top: -52px;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stats-grid article {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.stats-grid strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.stats-grid span { color: var(--muted); }

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}
.reverse .image-collage { order: 1; }
.reverse .section-copy { order: 2; }
.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.list-grid div,
.contact-card,
.testimonial-card,
.video-card,
.service-card,
.achievement-card,
.result-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.list-grid div {
  padding: 24px;
  border-radius: var(--radius-sm);
}
.image-stack {
  position: relative;
  min-height: 620px;
}
.main-card {
  width: 82%;
  margin-left: auto;
  border-radius: var(--radius);
  min-height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  width: 240px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 8px solid #fff;
}
.floating-card--left { left: 0; bottom: 0; }
.floating-card--right { right: 0; top: 28px; }

.card-grid {
  display: grid;
  gap: 24px;
}
.services-grid,
.achievement-grid,
.testimonial-grid,
.results-grid { grid-template-columns: repeat(4, 1fr); }
.service-card,
.achievement-card,
.testimonial-card,
.result-card,
.video-card,
.contact-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.service-card img,
.achievement-card img,
.result-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.service-card h3,
.achievement-card h3,
.testimonial-card h3,
.video-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin: 20px 20px 12px;
}
.service-card p,
.achievement-card p,
.testimonial-card p,
.video-card p { color: var(--muted); margin: 0 20px 24px; }

.image-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.image-collage img {
  border-radius: 22px;
  min-height: 260px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.image-collage img:first-child {
  grid-row: span 2;
  min-height: 540px;
}
.timeline { display: grid; gap: 18px; margin-top: 32px; }
.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--bg-soft);
  border-radius: 22px;
  border: 1px solid var(--line);
}
.timeline span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.timeline h3 { margin-bottom: 8px; }
.timeline p { margin: 0; color: var(--muted); }

.masonry-gallery {
  columns: 4 240px;
  column-gap: 18px;
}
.masonry-gallery img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card iframe { aspect-ratio: 16 / 9; }
.social-links {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social-links .btn--ghost { color: var(--primary); border-color: var(--primary); }
.social-links .btn--ghost:hover { color: #fff; background: var(--primary); }

.testimonial-card { padding: 24px; }
.testimonial-card p { margin: 0 0 14px; }
.result-card figcaption {
  padding: 16px 18px 20px;
  font-weight: 600;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.faq-list details + details { margin-top: 16px; }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }

.cta-band {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-list { display: grid; gap: 12px; }
.contact-list a { color: var(--primary); }
.contact-card iframe { min-height: 420px; }

.site-footer {
  background: #1a100b;
  color: rgba(255,255,255,0.82);
  padding-top: 68px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  padding-bottom: 28px;
}
.brand--footer strong { color: #fff; }
.site-footer h3 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.site-footer li + li { margin-top: 10px; }
.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

@media (max-width: 1080px) {
  .services-grid,
  .achievement-grid,
  .results-grid,
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 18px 16px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .split-grid,
  .footer-grid,
  .cta-band__inner { grid-template-columns: 1fr; display: grid; }
  .image-stack { min-height: auto; }
  .main-card { width: 100%; min-height: auto; }
  .floating-card { position: static; width: 48%; border-width: 5px; }
  .image-stack { display: grid; gap: 16px; }
  .list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .topbar__inner,
  .footer-bottom,
  .hero-actions,
  .slider-controls { flex-direction: column; align-items: flex-start; }
  .topbar__actions { gap: 10px; }
  .slide__content h1,
  .slide__content h2 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .stats { margin-top: 0; }
  .stats-grid,
  .services-grid,
  .achievement-grid,
  .results-grid,
  .testimonial-grid,
  .video-grid { grid-template-columns: 1fr; }
  .image-collage { grid-template-columns: 1fr; }
  .image-collage img:first-child { min-height: 340px; }
  .timeline article { grid-template-columns: 1fr; }
  .contact-card iframe { min-height: 320px; }
  .slider-controls {
    left: auto;
    right: 16px;
    transform: none;
    bottom: 16px;
  }
}

.video-grid--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.video-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: #eadfd6;
  margin-bottom: 16px;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-badge {
  position: absolute;
  inset: auto auto 14px 14px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(107,62,38,0.88);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 12px 30px rgba(60,34,21,0.22);
}
.text-link {
  color: var(--primary);
  font-weight: 700;
}
.result-card img,
.achievement-card img,
.service-card img,
.masonry-gallery img,
.image-collage img,
.image-stack img,
.contact-card iframe {
  border-radius: 18px;
}
.result-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eadfd6;
}
.achievement-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eadfd6;
}
.testimonial-card--feature {
  background: linear-gradient(180deg, rgba(190,155,123,0.18), rgba(255,255,255,1));
}
.brand--footer img {
  width: 68px;
  height: 68px;
}
@media (max-width: 991px) {
  .video-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .brand img {
    width: 60px;
    height: 60px;
  }
  .video-grid--cards {
    grid-template-columns: 1fr;
  }
}


.split-grid--about{align-items:center;}
.about-visual{display:flex;justify-content:center;}
.about-photo-frame{
  width:min(100%, 520px);
  background:#fff;
  border-radius:32px;
  padding:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(107, 62, 38, 0.1);
}
.about-photo-frame img{
  width:100%;
  aspect-ratio: 4 / 5;
  object-fit:cover;
  border-radius:24px;
}
.signature-points{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px;}
.signature-points span{
  padding:12px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--primary-dark);
  font-weight:600;
  box-shadow:0 10px 24px rgba(60,34,21,0.06);
}
.highlights-stack{display:grid;gap:20px;max-width:980px;}
.highlight-row{
  display:grid;
  grid-template-columns:84px 1fr;
  gap:22px;
  align-items:start;
  padding:28px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(107, 62, 38, 0.08);
  box-shadow:0 20px 40px rgba(60,34,21,0.08);
}
.highlight-icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(190,155,123,0.22), rgba(107,62,38,0.1));
  color:var(--primary);
  font-size:2rem;
}
.highlight-row h3{margin:0 0 8px;font-size:1.35rem;}
.highlight-row p{margin:0;color:var(--muted);}
.brand img{width:82px;height:82px;padding:10px;border-radius:22px;}
.brand--footer img{width:76px;height:76px;}
@media (max-width: 767px){
  .highlight-row{grid-template-columns:1fr;gap:16px;padding:22px;}
  .highlight-icon{width:64px;height:64px;border-radius:18px;}
}
