/* =====================================================
   DESIGN SYSTEM — Swiss Editorial Minimalism
   Palette: Warm white · Charcoal · Ink · Stone gray
   Fonts: Playfair Display (display) · Figtree (body)
===================================================== */
:root {
  --ink: #1a1a18;
  --charcoal: #2e2e2b;
  --stone: #76756e;
  --warm-gray: #f2f0eb;
  --off-white: #f8f7f4;
  --white: #ffffff;
  --rule: rgba(26, 26, 24, 0.12);
  --rule-dark: rgba(26, 26, 24, 0.25);
  --accent: #1a1a18; /* ink-on-white CTA accent */
  --font-d: "Playfair Display", Georgia, serif;
  --font-b: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: var(--font-b);
  cursor: pointer;
  border: none;
  background: none;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
.t-display {
  font-family: var(--font-d);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.t-heading {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.t-label {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.t-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--stone);
}

/* =====================================================
   LAYOUT
===================================================== */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.rule-h {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.rule-v {
  width: 1px;
  background: var(--rule);
  align-self: stretch;
}

/* =====================================================
   CTA BUTTON — outlined with animated fill
===================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  z-index: 0;
}
.btn-cta:hover {
  color: var(--white);
}
.btn-cta:hover::before {
  transform: translateY(0);
}
.btn-cta span {
  position: relative;
  z-index: 1;
}
.btn-cta svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.btn-cta:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-dark);
  transition:
    color 0.25s,
    border-color 0.25s,
    gap 0.25s;
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
  gap: 14px;
}
.btn-ghost svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */
[data-sr] {
  opacity: 0;
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
[data-sr="up"] {
  transform: translateY(40px);
}
[data-sr="left"] {
  transform: translateX(-40px);
}
[data-sr="right"] {
  transform: translateX(40px);
}
[data-sr="scale"] {
  transform: scale(0.96);
}
[data-sr].in {
  opacity: 1;
  transform: none;
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.logo-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--stone);
  padding: 6px 16px;
  border-left: 1px solid var(--rule);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-item:first-child {
  border-left: none;
}
.nav-item:hover,
.nav-item.active {
  color: var(--ink);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0;
}
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--rule-dark);
  overflow: hidden;
}
.lang-btn {
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--stone);
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}
.lang-btn:first-child {
  border-right: 1px solid var(--rule-dark);
}
.lang-btn.on,
.lang-btn:hover {
  background: var(--ink);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: 12px;
}
.hamburger .bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open .bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.45);
  z-index: 910;
  opacity: 0;
  transition: opacity 0.35s;
  backdrop-filter: blur(3px);
}
.mob-overlay.show {
  opacity: 1;
}
.mob-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  background: var(--white);
  z-index: 920;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--rule);
}
.mob-panel.open {
  transform: translateX(0);
}
.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
}
.mob-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule-dark);
  cursor: pointer;
  background: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.mob-close svg {
  width: 16px;
  height: 16px;
  color: var(--charcoal);
}
.mob-close:hover {
  background: var(--ink);
}
.mob-close:hover svg {
  color: var(--white);
}
.mob-links {
  padding: 8px 0;
  flex: 1;
  overflow-y: auto;
}
.mob-link {
  display: block;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--rule);
  transition:
    background 0.2s,
    color 0.2s;
}
.mob-link:hover,
.mob-link.active {
  background: var(--warm-gray);
  color: var(--ink);
}
.mob-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--rule);
}
.mob-lang {
  display: flex;
  gap: 0;
  border: 1px solid var(--rule-dark);
  width: fit-content;
  overflow: hidden;
}
.mob-lang .lang-btn {
  flex: 1;
  text-align: center;
  padding: 9px 16px;
  border-right: 1px solid var(--rule-dark);
}
.mob-lang .lang-btn:last-child {
  border-right: none;
}

/* =====================================================
   SECTION 1 — HERO
   Layout: left column text / right full-bleed image
===================================================== */
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
  border-bottom: 1px solid var(--rule);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 72px 60px 60px 0;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-tag-line {
  width: 32px;
  height: 1px;
  background: var(--stone);
}
.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-headline em {
  font-style: normal;
  position: relative;
}
.hero-headline em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--ink);
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  max-width: 380px;
  margin-bottom: 52px;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}
.hero-right:hover .hero-img {
  transform: scale(1.03);
}
.hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(transparent, rgba(26, 26, 24, 0.6));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-img-caption-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   SECTION 2 — SERVICES
   Horizontal scrolling numbered list with grid lines
===================================================== */
.services {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.services-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 84px 0 40px;
  border-bottom: 1px solid var(--rule);
}
.services-num-label {
  font-family: var(--font-d);
  font-size: 72px;
  font-weight: 900;
  color: var(--warm-gray);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--rule);
}
.service-item {
  padding: 40px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s;
}
.service-item:last-child {
  border-right: none;
}
.service-item:hover {
  background: var(--warm-gray);
}
.svc-idx {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: var(--rule-dark);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.svc-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.svc-icon svg {
  width: 18px;
  height: 18px;
  color: var(--stone);
  transition: color 0.3s;
}
.service-item:hover .svc-icon {
  background: var(--ink);
  border-color: var(--ink);
}
.service-item:hover .svc-icon svg {
  color: var(--white);
}
.svc-name {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone);
}

/* =====================================================
   SECTION 3 — ABOUT
   Big editorial layout: large image left, text right
===================================================== */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 600px;
  border-bottom: 1px solid var(--rule);
}
.about-img-col {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--rule);
}
.about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-img-col:hover img {
  transform: scale(1.04);
}
.about-sticker {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--white);
  padding: 16px 22px;
  border: 1px solid var(--rule);
}
.about-sticker-yr {
  font-family: var(--font-d);
  font-size: 44px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.about-sticker-txt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 2px;
}
.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.about-text-col .t-label {
  margin-bottom: 16px;
}
.about-text-col .t-heading {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 24px;
}
.about-text-col .t-body {
  margin-bottom: 16px;
}
.about-text-col .t-body + .t-body {
  margin-top: -4px;
}
.about-creds {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.about-cred {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.cred-mark {
  width: 6px;
  height: 6px;
  background: var(--ink);
  flex-shrink: 0;
}
.cred-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}

/* =====================================================
   ABOUT — CERTIFICATE BLOCK
===================================================== */
.about__certificate {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.about__certificate-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.about__certificate-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: flex-start;
}
.about__certificate-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--warm-gray);
}
.about__certificate-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about__certificate-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: var(--warm-gray);
  z-index: 0;
}
.about__certificate-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--stone);
  opacity: 0.4;
}
.about__certificate-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 540px) {
  .about__certificate-body {
    grid-template-columns: 90px 1fr;
    gap: 16px;
  }
}

/* =====================================================
   SECTION 4 — PROCESS
   Numbered steps in alternating layout
===================================================== */
.process {
  background: var(--warm-gray);
  border-bottom: 1px solid var(--rule);
  padding-top: 84px;
}
.process-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 84pxІ 0 48px;
  border-bottom: 1px solid var(--rule);
}
.process-head .t-heading {
  font-size: clamp(24px, 3vw, 38px);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  align-items: stretch;
}
.process-step:last-child {
  border-bottom: none;
}
.step-num {
  font-family: var(--font-d);
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 900;
  color: var(--rule-dark);
  line-height: 1;
  padding: 32px 24px 32px 0;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--rule);
  transition: color 0.3s;
}
.process-step:hover .step-num {
  color: var(--ink);
}
.step-body {
  padding: 32px 40px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-body .t-heading {
  font-size: 20px;
  margin-bottom: 8px;
}
.step-note {
  padding: 32px 40px;
  display: flex;
  align-items: center;
}
.step-note-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone);
}

/* =====================================================
   SECTION 5 — TRUST
   Dark section with editorial stats
===================================================== */
.trust {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.trust-left {
  padding: 80px 72px 80px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.trust-left .t-label {
  color: rgba(255, 255, 255, 0.35);
}
.trust-left .t-label::before {
  background: rgba(255, 255, 255, 0.25);
}
.trust-left .t-heading {
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
}
.trust-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}
.trust-reason {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-reason-num {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  min-width: 24px;
}
.trust-reason-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}
.trust-reason-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 4px;
}
.trust-right {
  padding: 80px 0 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}
.trust-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-stat-row:last-child {
  border-bottom: none;
}
.trust-stat-big {
  font-family: var(--font-d);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  min-width: 140px;
}
.trust-stat-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}
.trust-photo {
  position: relative;
  overflow: hidden;
  height: 200px;
  margin-top: auto;
}
.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}

/* =====================================================
   SECTION — REVIEWS
===================================================== */
.reviews {
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 84px 0 48px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.review {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s;
}
.review:last-child {
  border-right: none;
}
.review:hover {
  background: var(--white);
}
.review__stars {
  display: flex;
  gap: 3px;
}
.review__stars svg {
  width: 13px;
  height: 13px;
  color: var(--ink);
}
.review__text {
  flex: 1;
}
.review__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--stone);
}
.review__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.review__author-avatar {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review__author {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.review__meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Reviews responsive */
@media (max-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review:nth-child(2) {
    border-right: none;
  }
  .review:nth-child(n + 3) {
    border-top: 1px solid var(--rule);
  }
}
@media (max-width: 540px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review {
    border-right: none !important;
    border-top: 1px solid var(--rule);
  }
  .review:first-child {
    border-top: none;
  }
}

/* CTA form section removed — merged into .contact */

/* =====================================================
   SECTION 7 — CONTACT
===================================================== */
.contact {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.contact-head {
  padding: 84px 0 40px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.contact-col {
  padding: 56px 40px;
  border-right: 1px solid var(--rule);
}
.contact-col:last-child {
  border-right: none;
}
.contact-col .t-label {
  margin-bottom: 20px;
}
.contact-val {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.contact-note {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.6;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--stone);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule-dark);
  transition:
    color 0.2s,
    border-color 0.2s;
  margin-top: 12px;
}
.contact-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.contact-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--stone);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  font-weight: 500;
  color: var(--charcoal);
}

/* =====================================================
   CONTACT — Google Map embed
===================================================== */
.contact-map {
  width: 100%;
  height: 400px;
  border-top: 1px solid var(--rule);
  overflow: hidden;
  display: block;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 800px) {
  .contact-map {
    height: 300px;
  }
}
@media (max-width: 540px) {
  .contact-map {
    height: 240px;
  }
}
/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--ink);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-links {
  display: flex;
  gap: 0;
}
.footer-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 6px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}
.footer-link:first-child {
  padding-left: 0;
}
.footer-link:last-child {
  border-right: none;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1080px) {
  .wrap {
    padding: 0 32px;
  }
  .hero-left {
    padding: 56px 44px 52px 32px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-item:nth-child(3) {
    border-right: none;
  }
  .service-item:nth-child(n + 4) {
    border-top: 1px solid var(--rule);
  }
  .about {
    grid-template-columns: 1fr 1fr;
  }
  .about-text-col {
    padding: 84px 48px;
  }
  .trust-left {
    padding: 84px 48px 84px 0;
  }
  .trust-right {
    padding: 84px 0 84px 48px;
  }
  .trust-stat-big {
    font-size: clamp(36px, 4vw, 56px);
    min-width: 110px;
  }
  .process-step {
    grid-template-columns: 60px 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 48px 0 !important;
    border-bottom: 1px solid var(--rule);
  }
  .hero-left > div {
    padding-bottom: 48px;
  }
  .hero-right {
    height: 50vw;
    min-height: 260px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-item:nth-child(2) {
    border-right: none;
  }
  .service-item:nth-child(3) {
    border-right: 1px solid var(--rule);
    border-top: 1px solid var(--rule);
  }
  .service-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--rule);
  }
  .service-item:nth-child(5) {
    border-top: 1px solid var(--rule);
  }
  .service-item:nth-child(6) {
    border-top: 1px solid var(--rule);
    border-right: none;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-img-col {
    height: 60vw;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .about-text-col {
    padding: 48px 28px;
  }
  .process-step {
    grid-template-columns: 50px 1fr;
  }
  .step-note {
    display: none;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .trust-left {
    padding: 84px 0 48px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .trust-right {
    padding: 48px 0 64px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-col {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 40px 0;
  }
  .contact-col:last-child {
    border-bottom: none;
  }
}
@media (max-width: 540px) {
  .wrap {
    padding: 0 20px;
  }

  .hero-left {
    padding: 48px 20px !important;
  }

  .hero-headline {
    font-size: clamp(40px, 12vw, 64px);
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-item {
    border-right: none !important;
    border-top: 1px solid var(--rule);
  }
  .service-item:first-child {
    border-top: none;
  }
  .services-head {
    grid-template-columns: auto 1fr;
  }
  .services-head .btn-ghost {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
