/* Altmis — skin-treatments page-specific styles */

/* ─── Altmis design tokens (Global Design System v1) ─────────────── */
:root {
      --bg:      #FAF9F7;
      --surface: #FFFFFF;
      --fg:      #221B1E;
      --muted:   #7A7276;
      --border:  #F0E1E8;
      --accent:  #E0167C;

      --accent-dark:  #B7115F;
      --accent-2:     #FF5FA2;
      --blush:        #FDF1F6;
      --rose:         #FFF6FA;
      --offwhite:     #FAF9F7;
      --ink:          #3A3238;
      --trust:        #2F7D5A;
      --grad:         linear-gradient(135deg, #E0167C, #FF5FA2);
      --accent-soft:  color-mix(in oklch, var(--accent) 14%, transparent);
      --shadow-soft:  0 8px 24px rgba(224, 22, 124, 0.08);
      --shadow-lift:  0 16px 40px rgba(224, 22, 124, 0.14);

      --font-display: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
      --font-body:    'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
      --font-mono:    ui-monospace, 'SF Mono', Menlo, monospace;

      --fs-h1: clamp(36px, 4.6vw, 54px);
      --fs-h2: clamp(30px, 3.6vw, 44px);
      --fs-h3: 21px;
      --fs-lead: 17px;
      --fs-body: 15.5px;
      --fs-meta: 13px;

      --gap-xs: 8px; --gap-sm: 12px; --gap-md: 20px;
      --gap-lg: 32px; --gap-xl: 56px; --gap-2xl: 96px;
      --container: 1180px;
      --gutter: 24px;

      --radius: 12px;
      --radius-card: 20px;
      --radius-pill: 999px;
      --header-h: 76px;
    }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }

/* ─── type ─────────────────────────────────────────────────────── */
h1, .h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.1; letter-spacing: -0.01em; margin: 0; font-weight: 400; }

.section-head.center .lead { margin-inline: auto; }

.section-head.wide { max-width: 640px; }

.brand .brand-logo { height: 48px; width: auto; display: block; }

/* ─── page hero (shorter, centered) ────────────────────────────── */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(48px, 6vw, 80px); text-align: center; }

.page-hero .hero-blob {
      position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
      width: min(720px, 80vw); aspect-ratio: 1; border-radius: 50%;
      background: radial-gradient(circle, rgba(224, 22, 124, 0.14), rgba(255, 95, 162, 0.05) 62%, transparent 72%);
      filter: blur(10px); pointer-events: none;
    }

.page-hero .container { position: relative; max-width: 780px; }

.page-hero h1 { margin-bottom: 20px; }

.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero .lead { margin: 0 auto 32px; }

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

.breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12.5px; color: var(--muted); margin-bottom: 22px;
      letter-spacing: 0.02em;
    }

.breadcrumb a { color: var(--muted); transition: color 0.2s ease; }

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb .sep { opacity: 0.5; }

.breadcrumb .current { color: var(--accent); font-weight: 500; }

/* ─── condition cards (compact 3-col, image cards) ─────────────── */
.cond-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

.cond-card {
      background: var(--rose); border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
      box-shadow: var(--shadow-soft);
      display: flex; flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

.cond-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.cond-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--blush); }

.cond-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s ease;
    }

.cond-card:hover .cond-img img { transform: scale(1.03); }

.cond-body { padding: 12px 14px 14px; }

.cond-card h3 { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }

.cond-card p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.confidential-note {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 28px; font-size: 13.5px; color: var(--trust); font-weight: 500;
    }

.confidential-note svg { width: 16px; height: 16px; flex: none; }

/* ─── treatment cards (rich, 2x2) ──────────────────────────────── */
.treat-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-card); padding: 36px 30px;
      box-shadow: var(--shadow-soft);
      display: flex; flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

.treat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.treat-icon {
      width: 56px; height: 56px; border-radius: 18px; background: var(--grad);
      display: grid; place-items: center; color: var(--surface);
      box-shadow: 0 8px 18px rgba(224, 22, 124, 0.3); margin-bottom: 22px;
    }

.treat-icon svg { width: 26px; height: 26px; }

.treat-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 4px; }

.treat-sub { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }

.treat-card > p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.treat-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }

.treat-list li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink); }

.treat-list .tick {
      width: 22px; height: 22px; border-radius: 50%; flex: none;
      background: var(--rose); border: 1px solid var(--border);
      color: var(--accent); display: grid; place-items: center;
    }

.treat-list .tick svg { width: 11px; height: 11px; }

.treat-card .btn { align-self: flex-start; margin-top: auto; }

/* ─── minor procedure cards ────────────────────────────────────── */
.proc-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: var(--gap-md);
    }

.proc-card {
      background: var(--rose); border: 1px solid var(--border);
      border-radius: 16px; padding: 22px 18px 24px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

.proc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: color-mix(in oklch, var(--accent) 35%, var(--border)); }

.proc-icon {
      width: 40px; height: 40px; border-radius: 12px; margin-bottom: 14px;
      background: var(--accent-soft); color: var(--accent);
      display: grid; place-items: center;
    }

.proc-icon svg { width: 18px; height: 18px; }

.proc-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }

.proc-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ─── journey steps ────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-lg); position: relative; }

.steps::before {
      content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px;
      background: var(--border); z-index: 0;
    }

.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }

.step-num {
      width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px;
      background: var(--grad); color: var(--surface);
      display: grid; place-items: center;
      font-family: var(--font-display); font-size: 20px;
      box-shadow: 0 8px 18px rgba(224, 22, 124, 0.3);
      border: 4px solid var(--blush);
    }

.step h3 { font-size: 16px; margin-bottom: 8px; }

.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.bg-white .step-num { border-color: var(--surface); }

/* ─── why choose ───────────────────────────────────────────────── */
.why-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-card); padding: 32px 28px;
      box-shadow: var(--shadow-soft);
    }

.why-check {
      width: 46px; height: 46px; border-radius: 50%; background: var(--grad);
      display: grid; place-items: center; color: var(--surface);
      box-shadow: 0 8px 18px rgba(224, 22, 124, 0.28); margin-bottom: 20px;
    }

.why-check svg { width: 20px; height: 20px; }

.why-card h3 { font-size: 18px; margin-bottom: 10px; }

.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.center-cta { text-align: center; margin-top: 40px; }

/* ─── FAQ accordion ────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

.faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
      background: none; border: 0; padding: 20px 24px;
      text-align: left; font-size: 15.5px; font-weight: 500; color: var(--fg);
    }

.faq-chev {
      width: 30px; height: 30px; border-radius: 50%; flex: none;
      background: var(--accent-soft); color: var(--accent);
      display: grid; place-items: center;
      transition: transform 0.3s ease;
    }

.faq-chev svg { width: 14px; height: 14px; }

.faq-item.open .faq-chev { transform: rotate(180deg); }

.faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease;
    }

.faq-a p { padding: 0 24px 22px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── visit / contact strip ────────────────────────────────────── */
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--gap-2xl); align-items: center; }

.visit-block { display: flex; flex-direction: column; gap: 18px; }

.visit-line { display: flex; gap: 14px; align-items: flex-start; }

.visit-line .v-icon {
      width: 40px; height: 40px; border-radius: 12px; flex: none;
      background: var(--accent-soft); color: var(--accent);
      display: grid; place-items: center;
    }

.visit-line .v-icon svg { width: 18px; height: 18px; }

.visit-line strong { display: block; font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 3px; }

.visit-line p, .visit-line a { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.visit-line a:hover { color: var(--accent); }

.hours-note { display: block; margin-top: 4px; font-size: 11.5px; color: var(--muted); letter-spacing: 0.02em; }

.visit-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.map-frame {
      border-radius: var(--radius-card); overflow: hidden;
      border: 1px solid var(--border); box-shadow: var(--shadow-soft);
      aspect-ratio: 4 / 3; background: var(--blush);
    }

.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.text-link {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--accent); font-weight: 500; font-size: 14.5px; margin-top: 16px;
    }

.text-link::after { content: '→'; transition: transform 0.18s ease; }

.text-link:hover::after { transform: translateX(3px); }

/* ─── responsive: 1024px ───────────────────────────────────────── */
@media (max-width: 1024px) {
      .main-nav, .header-ctas { display: none; }
      .hamburger { display: flex; }
      .visit-grid { gap: var(--gap-xl); }
      .steps { grid-template-columns: repeat(2, 1fr); gap: var(--gap-xl) var(--gap-lg); }
      .steps::before { display: none; }
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .proc-grid { grid-template-columns: repeat(2, 1fr); }
    }

/* ─── responsive: 768px ────────────────────────────────────────── */
@media (max-width: 768px) {
      :root { --header-h: 68px; }
      body { padding-bottom: 54px; }
      .section { padding-block: 48px; }
      .page-hero { padding-block: 36px 48px; }
      .page-hero .hero-cta .btn { width: 100%; }
      .visit-grid, .grid-2, .grid-3, .steps { grid-template-columns: 1fr; }
      .grid-3, .grid-2 { gap: 20px; }
      .cond-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .treat-card { padding: 30px 24px; }
      .proc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .wa-float { bottom: 76px; right: 16px; width: 52px; height: 52px; }
      .mobile-cta-bar { display: flex; }
      /* footer accordion */
      .footer-grid { grid-template-columns: 1fr; gap: 8px; padding-block: 48px 32px; }
      .f-col { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      .f-acc {
        display: flex; width: 100%; align-items: center; justify-content: space-between;
        background: none; border: 0; padding: 16px 0;
        color: var(--surface); font-size: 13px; font-weight: 600;
        letter-spacing: 0.1em; text-transform: uppercase;
      }
      .f-acc::after { content: '+'; font-size: 18px; color: var(--accent-2); transition: transform 0.25s ease; }
      .f-col.open .f-acc::after { transform: rotate(45deg); }
      .f-col h4 { display: none; }
      .f-col .f-list { display: none; padding-bottom: 18px; }
      .f-col.open .f-list { display: flex; }
      .footer-bottom { justify-content: center; text-align: center; }
    }

@media (max-width: 480px) {
      .proc-grid, .cond-grid { grid-template-columns: 1fr; }
    }
