/* =========================
   RESET + BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  background: #f6f5f2;
  color: #1c1c1c;
  line-height: 1.6;
}

img, video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   HERO (DOTS WORK + NO SCROLLBAR)
========================= */
.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-track::-webkit-scrollbar {
  display: none;              /* Chrome/Safari */
}

 .hero-slide {
  min-width: 100vw;
  height: 100%;
  position: relative;
  scroll-snap-align: start;
 }
img {
  aspect-ratio: 16 / 9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 20;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.active {
  background: #fff;
  transform: scale(1.25);
}
@media (max-width: 768px) {
  .hero {
    height: 92vh;
  }
}

/* =========================
   SECTIONS + LAYOUT
========================= */
.section {
  padding: 5rem 8vw;
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-soft { background: #e9ebe7; }
.section-muted { background: #dde1dc; }
.section-light { background: #f6f5f2; text-align: center; }

.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

/* Optional text-link used on index */
.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: rgba(0,0,0,0.7);
  text-decoration: none;
}
.text-link:hover { color: rgba(0,0,0,0.95); }

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: .9rem 1.75rem;
  background: #1c1c1c;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 1.75rem; /* your global spacing */
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.5rem; }
  .split img { height: 260px; }
}

/* =========================
   SERVICES PAGE — CLEAN (PRESERVED)
========================= */
.services-page {
  background: #f6f5f2;
}

/* Header banner */
.services-header {
  background: #e3e7e1;
  padding: 5.5rem 8vw 4.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.services-header h1 {
  font-size: clamp(3rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.services-header p {
  max-width: 60ch;
  font-size: 1.1rem;
  color: rgba(0,0,0,0.75);
}

/* Accent line */
.services-eyebrow {
  display: block;
  width: 56px;
  height: 4px;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

/* Services section backdrop */
.services-section {
  background: #eef1ec;
  padding: 6rem 8vw;
}

/* Grid */
.services-grid {
  display: grid;
  gap: 3.5rem;
}

/* Cards */
.service-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 3rem;
  background: #fdfdfb;
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.08),
    0 8px 16px rgba(0,0,0,0.05);
}

.service-card:nth-child(even) {
  grid-template-columns: 1fr 480px;
}

/* Images */
.service-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

/* Content */
.service-content h2 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.service-content p {
  margin-bottom: 1.25rem;
}

/* Bullets */
.service-content ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.service-content li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .65rem;
}

.service-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: .15em;
  opacity: 0.4;
}

/* Notes */
.service-note {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  opacity: .6;
}

/* CTA centering */
.services-cta {
  text-align: center;
}

.services-cta .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Back link (if you added it in services HTML) */
.services-page .services-back {
  display: inline-block;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(0,0,0,0.55);
  transition: color .2s ease, transform .2s ease;
}

.services-page .services-back:hover {
  color: rgba(0,0,0,0.85);
  transform: translateX(-2px);
}

/* Mobile services */
@media (max-width: 900px) {
  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-media img {
    height: 260px;
  }
}

/* =========================
   CONTACT FORM (SAFE) — PRESERVED
========================= */
.contact-page .contact-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  max-width: 420px;
}

.contact-page label {
  display: flex;
  flex-direction: column;
  font-size: .85rem;
  opacity: .75;
}

.contact-page input,
.contact-page textarea {
  margin-top: .35rem;
  padding: .6rem .75rem;
  font-family: inherit;
  font-size: .9rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
  background: #fff;
}

.contact-page input:focus,
.contact-page textarea:focus {
  outline: none;
  border-color: rgba(0,0,0,0.4);
}
/* =========================
   SECTION INTRO — PREMIUM
========================= */

.section-intro {
  max-width: 760px;
  padding-top: 1.5rem;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;

  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;

  color: rgba(0,0,0,0.55);
  position: relative;
}

/* subtle divider line */
.section-eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(0,0,0,0.2);
  margin-top: 0.75rem;
}

.section-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section-intro p {
  font-size: 1.05rem;
  max-width: 60ch;
  color: rgba(0,0,0,0.75);
}
/* =========================
   EDITORIAL SECTION BLOCKS
========================= */

.section-block {
  align-items: center;
}

.section-block-content {
  max-width: 520px;
}

.section-block-content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-block-content p {
  color: rgba(0,0,0,0.75);
  margin-bottom: 1.25rem;
}

/* Reuse the same eyebrow language */
.section-block-content .section-eyebrow {
  margin-bottom: 1rem;
}

/* Image framing refinement */
.section-block-media img {
  border-radius: 26px;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.14);
}
/* =========================
   HERO SCROLL CUE
========================= */

.scroll-cue {
  position: absolute;
  bottom: 4.5rem; /* sits ABOVE the dots */
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;

  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);

  animation: scrollHint 1.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scrollHint {
  0%   { transform: translate(-50%, 0); opacity: 0.9; }
  50%  { transform: translate(-50%, 8px); opacity: 0.4; }
  100% { transform: translate(-50%, 0); opacity: 0.9; }
}
/* =========================
   CONTACT PAGE — MATCH SERVICES
========================= */

.contact-header {
  background: #e3e7e1;
  padding: 5.5rem 8vw 4.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-header h1 {
  font-size: clamp(3rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.contact-intro {
  max-width: 60ch;
  font-size: 1.1rem;
  color: rgba(0,0,0,0.75);
}

/* Reuse services accent line */
.contact-header .services-eyebrow {
  margin-bottom: 1.75rem;
}

/* Ensure form spacing feels intentional */
.contact-page .contact-form {
  margin-top: 1.5rem;
}
/* =========================
   CONTACT BACK LINK FIX
   (Services already correct)
========================= */

.contact-page .services-back {
  display: inline-block;
  margin-bottom: 1.75rem;

  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(0,0,0,0.55);

  transition: color .2s ease, transform .2s ease;
}

.contact-page .services-back:hover {
  color: rgba(0,0,0,0.85);
  transform: translateX(-2px);
}
