/* =====================================================
   Gil Web Studio — clean, minimal design system
   ===================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --ink: #101013;
  --ink-soft: #5c616b;
  --line: #e7e5e0;
  --dark: #0b0b0d;          /* logo black */
  --accent: #9c7420;        /* deep gold — readable on white */
  --accent-ink: #ffffff;
  --gold: #d9a441;          /* bright gold — decorative, from logo */
  --radius: 12px;
  --container: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 2rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin: -1.25rem 0 2.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.logo-gil {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.logo-ws {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent);
}

.nav { display: flex; gap: 28px; align-items: center; }

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav a:hover { color: var(--ink); }

.nav-cta {
  color: var(--accent-ink) !important;
  background: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent); }

.header-tools { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }

.lang-toggle .flag {
  width: 20px;
  height: 14px;
  border-radius: 2.5px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  padding: 110px 0 100px;
  text-align: center;
}

.hero-dark {
  background: var(--dark);
  color: #ffffff;
}

.brand { margin-bottom: 3rem; }

.brand-gil {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4rem, 11vw, 7rem);
  letter-spacing: 0.18em;
  margin-right: -0.18em; /* optically recenter tracked text */
  line-height: 1;
  color: #ffffff;
}

.brand-ws {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 1.4rem;
  font-size: clamp(0.8rem, 1.8vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.55em;
  margin-right: -0.55em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-dash {
  width: 56px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-dark h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
}

.hero-sub {
  max-width: 560px;
  margin: 1.5rem auto 2.5rem;
  color: var(--ink-soft);
  font-size: 1.125rem;
}

.hero-dark .hero-sub { color: #a3a5ad; }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary { background: var(--ink); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent); }

.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #e6b755; }

.btn-ghost-light { border-color: #3a3a40; color: #ffffff; }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ---------- Grid & Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--bg);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: var(--accent); transform: translateY(-3px); }

.card-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }

.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* Each "screenshot" is a live HTML mockup designed at 1200x800,
   scaled down to fit the slide by script.js */
.shot {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(22, 24, 29, 0.25);
  background: #fff;
}

.mock {
  position: absolute;
  top: 0;
  left: 0;
  width: 1200px;
  height: 800px;
  transform-origin: 0 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
}

/* browser chrome */
.m-chrome {
  height: 46px;
  flex-shrink: 0;
  background: #e8e6e1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 9px;
}

.m-chrome i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.m-chrome i:nth-child(1) { background: #f2695c; }
.m-chrome i:nth-child(2) { background: #f5bf4f; }
.m-chrome i:nth-child(3) { background: #62c554; }

.m-chrome span {
  background: #ffffff;
  color: #8a8a86;
  border-radius: 12px;
  font-size: 13px;
  padding: 3px 16px;
  margin-left: 14px;
}

/* mock nav */
.m-nav {
  display: flex;
  align-items: center;
  padding: 22px 48px;
  gap: 28px;
}

.m-logo { font-size: 22px; font-weight: 700; }

.m-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
  font-size: 14px;
  opacity: 0.75;
}

.m-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
}

/* mock hero with photo */
.m-hero {
  position: relative;
  margin: 0 48px;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
}

.m-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.72) 0%, rgba(10, 10, 12, 0.3) 65%, rgba(10, 10, 12, 0.05) 100%);
}

.m-hero-text h4 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 22px;
}

.m-btn {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
}

/* mock card rows */
.m-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 26px 48px 0;
  flex-grow: 1;
}

.m-row-4 { grid-template-columns: repeat(4, 1fr); }

.m-card p {
  margin: 10px 2px 0;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.m-card p b { font-weight: 700; }

.m-card .ph {
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.m-row-4 .m-card .ph { height: 200px; }

.m-card .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-card-accent, .m-card-text {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 28px;
}

.m-solo { font-size: 19px !important; font-weight: 700; display: block !important; line-height: 1.5; }
.m-solo b { font-size: 14px; font-weight: 500; opacity: 0.75; }

.m-banner {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 2px;
  padding: 9px 0;
  flex-shrink: 0;
}

.m-heading {
  font-size: 32px;
  margin: 4px 48px 0;
  font-weight: 700;
}

.m-foot {
  padding: 18px 48px 0;
  font-size: 13px;
  opacity: 0.6;
}

/* ---- theme: Casa Verde (restaurant) ---- */
.mock-restaurant { background: #f7f2e9; color: #2c3a24; font-family: Georgia, 'Times New Roman', serif; }
.mock-restaurant .m-logo { font-style: italic; }
.mock-restaurant .m-cta { background: #2c3a24; color: #f7f2e9; }
.mock-restaurant .m-btn { background: #f7f2e9; color: #2c3a24; }
.mock-restaurant .ph-a { background: linear-gradient(135deg, #c98d5e, #8f5a33); }
.mock-restaurant .ph-b { background: linear-gradient(135deg, #7e9463, #4e6238); }
.mock-restaurant .ph-c { background: linear-gradient(135deg, #b8563e, #7d3324); }

/* ---- theme: Pulse (fitness) ---- */
.mock-fitness { background: #161619; color: #ffffff; }
.mock-fitness .m-logo { letter-spacing: 4px; font-weight: 900; }
.mock-fitness .m-cta { background: #ff5a1f; color: #ffffff; border-radius: 4px; }
.mock-fitness .m-btn { background: #ff5a1f; color: #ffffff; }
.mock-fitness .m-hero-text h4 { font-weight: 900; letter-spacing: 0.5px; }
.mock-fitness .m-hero-text em { font-style: normal; color: #ff5a1f; }
.mock-fitness .m-card p { color: #d7d7dc; }
.mock-fitness .ph-a { background: linear-gradient(135deg, #3a3a42, #232329); }
.mock-fitness .ph-b { background: linear-gradient(135deg, #2e2e35, #1c1c21); }
.mock-fitness .m-card-accent { background: #ff5a1f; }
.mock-fitness .m-card-accent .m-solo b { color: #ffd9c7; opacity: 1; }

/* ---- theme: Commonplace (shop) ---- */
.mock-shop { background: #ffffff; color: #2b2430; }
.mock-shop .m-banner { background: #40354a; color: #efe9f5; }
.mock-shop .m-logo { font-family: Georgia, serif; font-style: italic; }
.mock-shop .m-cta { border: 1.5px solid #40354a; color: #40354a; }
.mock-shop .m-card p b { color: #6c6472; }
.mock-shop .ph-a { background: linear-gradient(135deg, #f3d9e4, #e3b7ca); }
.mock-shop .ph-b { background: linear-gradient(135deg, #d9e6f3, #b3c9e0); }
.mock-shop .ph-c { background: linear-gradient(135deg, #e8f0dc, #c5d6ab); }
.mock-shop .ph-d { background: linear-gradient(135deg, #f7ead3, #e5cda2); }

/* ---- theme: Hartley (law) ---- */
.mock-law { background: #f9f8f4; color: #152238; font-family: Georgia, 'Times New Roman', serif; }
.mock-law .m-logo { font-size: 18px; letter-spacing: 2px; color: #152238; }
.mock-law .m-cta { background: #c9a961; color: #152238; border-radius: 4px; }
.mock-law .m-btn { background: #c9a961; color: #152238; border-radius: 4px; }
.mock-law .m-hero-text em { color: #c9a961; }
.mock-law .m-card-text { background: #ffffff; border-top: 4px solid #c9a961; box-shadow: 0 2px 10px rgba(21, 34, 56, 0.08); }
.mock-law .m-solo b { color: #6f7787; font-family: var(--font); }
.mock-law .ph-a { background: linear-gradient(135deg, #34496b, #152238); }

/* ---- theme: Morning Ritual (coffee) ---- */
.mock-coffee { background: #f5efe7; color: #3a2a1e; }
.mock-coffee .m-logo { font-weight: 800; }
.mock-coffee .m-cta { background: #4a3226; color: #f5efe7; }
.mock-coffee .m-btn { background: #e8b168; color: #3a2a1e; }
.mock-coffee .m-hero-text em { color: #e8b168; }
.mock-coffee .m-card p b { color: #8a5a3b; }
.mock-coffee .ph-a { background: linear-gradient(135deg, #4a3226, #2c1d15); }
.mock-coffee .ph-b { background: linear-gradient(135deg, #c9b8a0, #a98a6c); }
.mock-coffee .ph-c { background: linear-gradient(135deg, #e0d2bf, #c9b8a0); }

.carousel-slide figcaption {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 18px 6px 0;
  flex-wrap: wrap;
}

.carousel-slide figcaption strong { font-size: 1.05rem; }

.carousel-slide figcaption span { color: var(--ink-soft); font-size: 0.9rem; }

.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 24, 29, 0.18);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }

.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-top: 16px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cfcfc9;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dots button.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ---------- Before / After ---------- */
.ba-compare {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(22, 24, 29, 0.25);
  --pos: 50%;
  user-select: none;
}

.ba-compare img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: var(--pos);
  overflow: hidden;
}

.ba-before-wrap img {
  width: auto;
  height: 100%;
  max-width: none;
  /* match rendered width of container via JS-set --full-w */
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(22, 24, 29, 0.25);
}

.ba-tag {
  position: absolute;
  top: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}

.ba-tag-before { left: 14px; background: rgba(22, 24, 29, 0.75); color: #fff; }
.ba-tag-after { right: 14px; background: var(--gold); color: var(--dark); }

#baRange {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
}

/* ---------- Process steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.steps p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi-grid { align-items: start; }

.testi {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 28px;
}

.testi-featured {
  background: var(--dark);
  border-color: var(--dark);
  color: #e9e9ec;
}

.testi-featured footer strong { color: #ffffff; }
.testi-featured footer span { color: #9b9ca4; }
.testi-featured .stars { color: var(--gold); }

.testi-stack { display: flex; flex-direction: column; gap: 20px; }

.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 0.75rem; font-size: 0.9rem; }

.star-off { color: #d8d5cd; }

.testi p { font-size: 0.97rem; margin-bottom: 1rem; }

.testi footer { font-size: 0.85rem; }

.testi footer strong { display: block; }

.testi footer span { color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.price-featured {
  border-color: var(--gold);
  box-shadow: 0 18px 40px -20px rgba(217, 164, 65, 0.45);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.25rem 0 1.25rem;
}

.price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-right: 4px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.price-card li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 7px 0 7px 26px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn { text-align: center; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ---------- Tips ---------- */
.tips-list, .faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; }

.tip, .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.tip summary, .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tip summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker { display: none; }

.tip summary::after, .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: transform 0.2s;
}

.tip[open] summary::after, .faq-item[open] summary::after { transform: rotate(45deg); }

.tip-label {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 2px 10px;
}

.tip-body, .faq-item p {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.tip-body p { margin-bottom: 0.75rem; }

.tip-body ol { margin: 0.5rem 0 0 1.25rem; }

.tip-body li { margin-bottom: 0.5rem; }

/* ---------- Contact ---------- */
.contact { max-width: 640px; }

.contact-sub { color: var(--ink-soft); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form .btn { align-self: flex-start; }

.booking {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.booking p { color: var(--ink-soft); font-size: 0.95rem; }

.contact-direct { margin-top: 1.75rem; }

.contact-direct p { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 4px; }

.contact-links { font-size: 1.05rem; font-weight: 600; }

.contact-links a { color: var(--ink); text-decoration: none; }
.contact-links a:hover { color: var(--accent); }

.dot-sep { color: var(--gold); margin: 0 10px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-nav { display: flex; gap: 20px; }

.footer-nav a { color: var(--ink-soft); text-decoration: none; }
.footer-nav a:hover { color: var(--ink); }

.footer-link { color: var(--ink-soft); text-decoration: none; }
.footer-link:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 24px; }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }

  .nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .hero { padding: 80px 0 70px; }
  .section { padding: 64px 0; }

  .carousel-arrow { width: 38px; height: 38px; }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-slide figcaption { flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-track { transition: none; }
}
