@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,300;1,9..40,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ECEAE4;
  --bg-warm: #E5E1DA;
  --bg-dark: #D9D4CB;
  --ink: #1A1916;
  --ink-mid: #3A3830;
  --ink-soft: #8A8780;
  --red: #B8312F;
  --red-dark: #7d141d;
  --navy: #1B2A4A;
  --white: #F5F3EF;
  --cream: #F5F0E8;
}

body {
  background: var(--bg);
  color: var(--th-ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.w { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px) { .w { padding: 0 24px; } }

/* Reveal animations */
.r { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.rl { opacity: 0; transform: translateX(-28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.rr { opacity: 0; transform: translateX(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.r.in, .rl.in, .rr.in { opacity: 1; transform: translate(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .18s; } .d3 { transition-delay: .28s; }
.d4 { transition-delay: .38s; } .d5 { transition-delay: .48s; } .d6 { transition-delay: .58s; }


/* ===========================================
   HERO — see style.css (.sv-hero) for canonical styles
   =========================================== */

/* Note: .sv-hero / .sv-hero__inner / .sv-hero__heading / .sv-hero__sub
   are defined in /style.css and used across all sub-pages.
   This file no longer duplicates them. */


/* ===========================================
   INTRO STATEMENT
   =========================================== */

.sv-intro {
  padding: 80px 0;
  background: var(--th-bg-warm);
  border-bottom: 1px solid rgba(26,25,22,.08);
}

.sv-intro__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--th-ink-mid);
}

.sv-intro__text strong {
  font-weight: 700;
  color: var(--th-ink);
}


/* ===========================================
   SERVICES GRID
   =========================================== */

.sv-services {
  padding: 100px 0;
  border-bottom: 1px solid rgba(26,25,22,.08);
}

.sv-services__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--th-red);
  margin-bottom: 16px;
}

.sv-services__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--th-ink);
  margin-bottom: 64px;
}

.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media(max-width:960px) { .sv-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .sv-grid { grid-template-columns: 1fr; gap: 32px; } }

.sv-card {
  padding: 48px 36px 40px;
  background: var(--th-cream);
  border: 1px solid rgba(26,25,22,.06);
  border-left: 4px solid var(--th-red);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.sv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,25,22,.08);
}

.sv-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--th-red);
}

.sv-card__icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--th-red);
  fill: none;
  stroke-width: 1.5;
}

.sv-card__icon--3d {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  color: inherit;
}
.sv-card__icon--3d img {
  width: 100%;
  height: 100%;
  display: block;
}

.sv-card__heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--th-ink);
  margin-bottom: 18px;
  line-height: 1.25;
}

.sv-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.sv-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(26,25,22,.04);
  border: 1px solid rgba(26,25,22,.12);
  color: var(--th-ink);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background .25s, border-color .25s;
  line-height: 1.3;
}

.sv-card__tag:hover {
  background: rgba(26,25,22,.08);
  border-color: rgba(26,25,22,.2);
}

.sv-card__tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--th-red);
}

.sv-card__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--th-bg-dark);
}


/* ===========================================
   HIGHLIGHT BANNER
   =========================================== */

.sv-highlight {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.sv-highlight__bg {
  position: absolute;
  inset: 0;
  font-size: 200px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,243,239,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.sv-highlight__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.sv-highlight__text {
  max-width: 640px;
}

.sv-highlight__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--th-white);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.sv-highlight__heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(245,243,239,.5);
}

.sv-highlight__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,243,239,.55);
  line-height: 1.8;
}

.sv-highlight__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid rgba(245,243,239,.3);
  color: var(--th-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap .3s, background .3s;
  flex-shrink: 0;
}

.sv-highlight__btn:hover {
  background: rgba(245,243,239,.08);
  gap: 20px;
}

@media(max-width:768px) {
  .sv-highlight__inner { flex-direction: column; text-align: center; }
}


/* ===========================================
   HOW IT WORKS — Steps
   =========================================== */

.sv-steps {
  padding: 100px 0;
  background: var(--th-bg-warm);
  border-bottom: 1px solid rgba(26,25,22,.08);
}

.sv-steps__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--th-red);
  margin-bottom: 16px;
}

.sv-steps__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--th-ink);
  margin-bottom: 64px;
}

.sv-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.sv-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--th-red), var(--th-bg-dark));
}

@media(max-width:960px) {
  .sv-timeline { grid-template-columns: repeat(2, 1fr); }
  .sv-timeline::before { display: none; }
}
@media(max-width:600px) { .sv-timeline { grid-template-columns: 1fr; } }

.sv-step {
  text-align: center;
  position: relative;
}

.sv-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--th-white);
  border: 2px solid var(--th-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--th-red);
  position: relative;
  z-index: 2;
}

.sv-step__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--th-ink);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.sv-step__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--th-ink-mid);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}


/* ===========================================
   FAQ
   =========================================== */

.sv-faq {
  padding: 100px 0;
  border-bottom: 1px solid rgba(26,25,22,.08);
}

.sv-faq__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--th-red);
  margin-bottom: 16px;
}

.sv-faq__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--th-ink);
  margin-bottom: 56px;
}

.sv-faq-item {
  border-bottom: 1px solid rgba(26,25,22,.1);
  cursor: pointer;
}

.sv-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
}

.sv-faq-q__text {
  font-size: 17px;
  font-weight: 500;
  color: var(--th-ink);
  line-height: 1.4;
}

.sv-faq-q__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(26,25,22,.15);
  transition: transform .3s ease, border-color .3s ease;
}

.sv-faq-q__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--th-ink-mid);
  stroke-width: 2;
  fill: none;
  transition: stroke .3s ease;
}

.sv-faq-item.open .sv-faq-q__icon {
  transform: rotate(45deg);
  border-color: var(--th-red);
}

.sv-faq-item.open .sv-faq-q__icon svg {
  stroke: var(--th-red);
}

.sv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .4s ease;
}

.sv-faq-item.open .sv-faq-a {
  max-height: 600px;
  padding-bottom: 28px;
}

.sv-faq-a__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--th-ink-mid);
  line-height: 1.8;
  max-width: 720px;
}


/* ===========================================
   BOTTOM CTA
   =========================================== */

.sv-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--th-ink);
  position: relative;
  overflow: hidden;
}

.sv-cta__bg {
  position: absolute;
  inset: 0;
  font-size: 240px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,243,239,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.sv-cta__inner {
  position: relative;
  z-index: 1;
}

.sv-cta__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--th-white);
  margin-bottom: 20px;
  line-height: 1;
}

.sv-cta__heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(245,243,239,.5);
}

.sv-cta__text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,243,239,.55);
  margin-bottom: 44px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.sv-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid rgba(245,243,239,.3);
  color: var(--th-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap .3s, background .3s;
}

.sv-cta__btn:hover {
  background: rgba(245,243,239,.08);
  gap: 20px;
}


/* ===========================================
   ANIMATIONS
   =========================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   EXTENDED SERVICES
   =========================================== */

.sv-extended {
  padding: 100px 0;
  background: var(--th-bg-dark);
  border-bottom: 1px solid rgba(26,25,22,.1);
}

.sv-extended__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--th-red);
  margin-bottom: 16px;
}

.sv-extended__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--th-ink);
  margin-bottom: 20px;
}

.sv-extended__intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--th-ink-soft);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 64px;
}

.sv-ext-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media(max-width:960px) { .sv-ext-grid { grid-template-columns: 1fr; gap: 16px; } }

.sv-ext-card {
  padding: 0;
  background: var(--th-white);
  position: relative;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
  border: 1px solid rgba(26,25,22,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sv-ext-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26,25,22,.10);
}

.sv-ext-card__photo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-warm);
}
.sv-ext-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sv-ext-card:hover .sv-ext-card__photo img {
  transform: scale(1.04);
}
.sv-ext-card__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 6px;
  padding: 20px;
}
.sv-ext-card__ph span:first-child {
  font-size: 11px;
  font-weight: 300;
  color: var(--th-ink-soft);
  letter-spacing: .03em;
  line-height: 1.5;
}
.sv-ext-card__ph-hint {
  font-size: 9px;
  font-weight: 300;
  color: var(--th-ink-soft);
  opacity: .5;
  letter-spacing: .05em;
}

.sv-ext-card__content {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sv-ext-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
}

.sv-ext-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--th-red);
  fill: none;
  stroke-width: 1.5;
}

.sv-ext-card__icon--3d {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
}
.sv-ext-card__icon--3d img {
  width: 100%;
  height: 100%;
  display: block;
}

.sv-ext-card__heading {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--th-ink);
  margin-bottom: 16px;
  line-height: 1.25;
}

.sv-ext-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--th-ink-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sv-ext-card__tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sv-ext-card__tags li {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--th-red);
  padding: 5px 12px;
  border: 1px solid rgba(184,49,47,.25);
  background: rgba(184,49,47,.04);
}
