/* ============================================================
   style.css — Aura Clinic Global Styles
   Her sayfada kullanılan ortak CSS.
   Sayfa bazlı CSS ayrı dosyalarda (index.css, hakkimizda.css…)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@200;300;400;500&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  --bg:     #FAF8F5;
  --surf:   #F3EEE7;
  --brd:    #E5DDD3;
  --ink:    #1A1410;
  --ink2:   #6A5E54;
  --ink3:   #A8998C;
  --rose:   #BE7A62;
  --rose-d: #9E5E48;
  --rose-p: #F0DDD6;
  --dark:   #130E0B;
  --dark2:  #1E1510;
  --gold:   #C8A56C;
  --white:  #FFFFFF;
  --ff-d:   'Cormorant', serif;
  --ff-b:   'Outfit', sans-serif;
  --e:      cubic-bezier(.25, .46, .45, .94);
  --eo:     cubic-bezier(.16, 1, .3, 1);
}

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

/* ── Navigation ────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: 70px; display: flex; align-items: center; transition: background .5s, box-shadow .5s; }
.nav.solid { background: rgba(250,248,245,.96); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--brd); }
.nav__w { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 44px; display: flex; align-items: center; justify-content: space-between; }

.logo   { display: flex; flex-direction: column; line-height: 1; }
.logo-n { font-family: var(--ff-d); font-size: 1.45rem; font-weight: 500; letter-spacing: .05em; color: var(--white); transition: color .4s; }
.nav.solid .logo-n { color: var(--ink); }
.logo-s { font-size: .52rem; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

/* Nav: transparent üstünde logo siyah sayfalar için override */
.nav--dark-bg .logo-n { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nl { font-size: .68rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); position: relative; transition: color .3s; }
.nl::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--eo); }
.nl:hover, .nl.on { color: var(--gold); }
.nl:hover::after, .nl.on::after { width: 100%; }
.nav.solid .nl { color: var(--ink2); }
.nav.solid .nl:hover, .nav.solid .nl.on { color: var(--rose); }
.nav.solid .nl::after { background: var(--rose); }

/* Sayfalar için (hero olmayan) nav her zaman solid görünümde */
.nav--always-solid { background: rgba(250,248,245,.96); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--brd); }
.nav--always-solid .logo-n { color: var(--ink); }
.nav--always-solid .nl { color: var(--ink2); }
.nav--always-solid .nl:hover, .nav--always-solid .nl.on { color: var(--rose); }
.nav--always-solid .nl::after { background: var(--rose); }
.nav--always-solid .nav-ph { color: var(--ink2); }
.nav--always-solid .nav-ph:hover { color: var(--rose); }
.nav--always-solid .burger span { background: var(--ink); }

.nav__r { display: flex; align-items: center; gap: 14px; }
.nav-ph { font-size: .68rem; font-weight: 400; letter-spacing: .04em; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 7px; transition: color .3s; }
.nav-ph svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-ph:hover { color: var(--gold); }
.nav.solid .nav-ph { color: var(--ink2); }
.nav.solid .nav-ph:hover { color: var(--rose); }
.nav-cta { font-size: .62rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 9px 22px; background: var(--rose); color: #fff; transition: background .3s; }
.nav-cta:hover { background: var(--rose-d); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: transform .4s var(--eo), opacity .3s, background .4s; }
.nav.solid .burger span { background: var(--ink); }

.mob-nav { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 899; padding: 40px; display: flex; flex-direction: column; gap: 22px; transform: translateX(110%); transition: transform .5s var(--eo); }
.mob-nav.open { transform: translateX(0); }
.mob-nav .nl { color: var(--ink2); font-size: 1rem; }

@media (max-width: 900px) {
  .nav__links, .nav__r { display: none; }
  .burger { display: flex; }
}

/* ── Dropdown Navigation ───────────────────── */
.nav-dd {
    position: relative;
}

.nav-dd__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dd__icon {
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .3s var(--eo);
}

.nav-dd:hover .nav-dd__icon,
.nav-dd:focus-within .nav-dd__icon {
    transform: rotate(225deg) translateY(-1px);
}

.nav-dd__menu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    min-width: 210px;
    padding: 14px 0;
    background: rgba(250,248,245,.98);
    border: 1px solid var(--brd);
    box-shadow: 0 18px 48px rgba(19,14,11,.12);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .3s var(--eo),
        transform .35s var(--eo),
        visibility .3s;
}

.nav-dd__menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -24px;
    height: 24px;
}

.nav-dd:hover .nav-dd__menu,
.nav-dd:focus-within .nav-dd__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(-50%, 0);
}

.nav-dd__menu a {
    display: block;
    padding: 10px 22px;
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink2);
    white-space: nowrap;
    transition: color .3s, background .3s;
}

.nav-dd__menu a:hover {
    color: var(--rose);
    background: var(--rose-p);
}

/* Mobil dropdown */
.mob-dd {
    border-bottom: 1px solid var(--brd);
    padding-bottom: 14px;
}

.mob-dd summary {
    list-style: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob-dd summary::-webkit-details-marker {
    display: none;
}

.mob-dd summary::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s var(--eo);
}

.mob-dd[open] summary::after {
    transform: rotate(225deg);
}

.mob-dd a {
    display: block;
    padding-top: 14px;
    font-size: .82rem;
    font-weight: 300;
    letter-spacing: .06em;
    color: var(--ink2);
}

.mob-dd a:hover {
    color: var(--rose);
}

.mob-cta {
    margin-top: 8px;
    text-align: center;
    display: block;
}


/* ── Marquee ────────────────────────────────── */
.mqbar { background: var(--rose); overflow: hidden; padding: 12px 0; user-select: none; }
.mqinner { display: flex; width: max-content; animation: mq 28s linear infinite; }
.mqitem { display: flex; align-items: center; gap: 20px; padding: 0 20px; white-space: nowrap; }
.mqitem span { font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.mqdot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.45); flex-shrink: 0; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section Helpers ────────────────────────── */
.section { padding: 110px 0; }
.section--surf { background: var(--surf); }
.section--dark { background: var(--dark); }

.wrap { max-width: 1300px; margin: 0 auto; padding: 0 44px; }
@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .section { padding: 72px 0; }
}

.eyebrow { font-size: .6rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--rose); display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; display: inline-block; width: 26px; height: 1px; background: var(--rose); flex-shrink: 0; }
.eyebrow--c { justify-content: center; }
.eyebrow--c::before { display: none; }
.eyebrow--g { color: var(--gold); }
.eyebrow--g::before { background: var(--gold); }

.sec-head { margin-bottom: 60px; }
.sec-head--c { text-align: center; }
.sec-title { font-family: var(--ff-d); font-size: clamp(2rem, 3.3vw, 3rem); font-weight: 300; line-height: 1.16; color: var(--ink); margin-top: 13px; }
.sec-title em { font-style: italic; color: var(--rose); }
.sec-title.light { color: #fff; }

.sec-hr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
@media (max-width: 640px) { .sec-hr { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* ── Scroll Reveal ──────────────────────────── */
.sr { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--eo), transform .8s var(--eo); }
.sr.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ── Buttons ────────────────────────────────── */
.btn-p { display: inline-flex; align-items: center; gap: 9px; font-size: .65rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 13px 28px; background: var(--rose); color: #fff; transition: background .3s, transform .3s; }
.btn-p:hover { background: var(--rose-d); transform: translateY(-1px); }
.btn-p svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.btn-o { display: inline-flex; align-items: center; gap: 9px; font-size: .65rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 12px 28px; border: 1.5px solid var(--brd); color: var(--ink); background: transparent; transition: border-color .35s, color .35s; }
.btn-o:hover { border-color: var(--rose); color: var(--rose); }

.btn-ghost { font-size: .62rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--rose); display: inline-flex; align-items: center; gap: 8px; transition: gap .4s var(--eo); }
.btn-ghost:hover { gap: 14px; }
.btn-ghost svg { width: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .4s var(--eo); }
.btn-ghost:hover svg { transform: translateX(3px); }

.btn-wp { display: inline-flex; align-items: center; gap: 9px; font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 13px 22px; background: #25D366; color: #fff; transition: background .3s; }
.btn-wp:hover { background: #1ebd5e; }
.btn-wp svg { width: 15px; height: 15px; fill: currentColor; }

.btn-pl { display: inline-flex; align-items: center; gap: 8px; font-size: .65rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; padding: 12px 24px; background: #fff; color: var(--rose); transition: background .3s; }
.btn-pl:hover { background: var(--rose-p); }

.btn-ol { display: inline-flex; align-items: center; gap: 8px; font-size: .65rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; padding: 11px 24px; border: 1.5px solid rgba(255,255,255,.16); color: rgba(255,255,255,.6); transition: border-color .3s, color .3s; }
.btn-ol:hover { border-color: var(--rose); color: var(--rose); }

/* ── Page Hero (non-slider pages) ───────────── */
.page-hero { padding-top: 70px; position: relative; overflow: hidden; background: var(--dark); min-height: 420px; display: flex; align-items: flex-end; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,14,11,.9) 0%, rgba(19,14,11,.4) 100%); }
.page-hero__content { position: relative; z-index: 2; padding: 64px 44px; width: 100%; max-width: 1300px; margin: 0 auto; }
.page-hero__eyebrow { margin-bottom: 18px; }
.page-hero__title { font-family: var(--ff-d); font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 300; line-height: 1.08; color: #fff; margin-bottom: 16px; }
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__desc { font-size: .9rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.55); max-width: 520px; }
@media (max-width: 640px) { .page-hero__content { padding: 48px 22px; } }

/* ── CTA Band ───────────────────────────────── */
.cta-band { padding: 96px 0; background: var(--dark); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 75% 50%, rgba(190,122,98,.1) 0%, transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; padding: 0 40px; }
.cta-title { font-family: var(--ff-d); font-size: clamp(1.9rem, 3.8vw, 3.2rem); font-weight: 300; line-height: 1.15; color: #fff; margin: 13px 0 17px; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-desc { font-size: .85rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.4); margin-bottom: 36px; }
.cta-acts { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────── */
footer { background: #1E1510; padding: 64px 0 32px; }
.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px; }
@media (max-width: 900px) { .fg { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fg { grid-template-columns: 1fr; gap: 28px; } }

.f-name { font-family: var(--ff-d); font-size: 1.65rem; font-weight: 400; color: #fff; letter-spacing: .04em; line-height: 1; }
.f-sub  { font-size: .5rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-top: 4px; display: block; }
.f-desc { font-size: .78rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.3); margin-top: 17px; max-width: 240px; }

.f-soc { display: flex; gap: 8px; margin-top: 20px; }
.f-s   { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: border-color .3s, background .3s; cursor: pointer; }
.f-s:hover { border-color: var(--rose); background: rgba(190,122,98,.1); }
.f-s svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.42); fill: none; stroke-width: 1.5; stroke-linecap: round; }

.f-h { font-size: .56rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--rose); margin-bottom: 17px; }
.f-ls { display: flex; flex-direction: column; gap: 10px; }
.f-ls a { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.3); transition: color .3s; }
.f-ls a:hover { color: rgba(255,255,255,.72); }

.f-cr { display: flex; align-items: flex-start; gap: 8px; font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.3); margin-bottom: 10px; line-height: 1.55; }
.f-cr svg { width: 12px; height: 12px; stroke: var(--rose); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }

.f-bot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .66rem; color: rgba(255,255,255,.17); }
.f-bls { display: flex; gap: 18px; }
.f-bls a { color: rgba(255,255,255,.17); transition: color .3s; }
.f-bls a:hover { color: rgba(255,255,255,.42); }

/* ── Hızlı İletişim Widget ──────────────────
   Her sayfada görünür. HTML: _partials/quick-contact.html
   ─────────────────────────────────────────── */
.qc-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
@media (max-width: 640px) { .qc-widget { bottom: 16px; right: 16px; } }

.qc-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.16,1,.3,1);
}
.qc-widget.open .qc-menu { max-height: 200px; }

.qc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: var(--ff-b);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transition: transform .3s, opacity .3s;
  opacity: 0;
  transform: translateY(8px);
  text-decoration: none;
}
.qc-widget.open .qc-btn { opacity: 1; transform: translateY(0); }
.qc-widget.open .qc-btn:nth-child(1) { transition-delay: .05s; }
.qc-widget.open .qc-btn:nth-child(2) { transition-delay: .12s; }

.qc-btn--wp   { background: #25D366; }
.qc-btn--wp:hover { background: #1ebd5e; }
.qc-btn--tel  { background: var(--rose); }
.qc-btn--tel:hover { background: var(--rose-d); }

.qc-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.qc-btn--wp  svg { fill: #fff; stroke: none; }
.qc-btn--tel svg { stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

.qc-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  transition: background .3s, transform .4s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.qc-toggle:hover { background: var(--rose); }
.qc-toggle svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round;
  transition: opacity .3s, transform .4s;
  position: absolute;
}
.qc-toggle .qc-toggle-open  { opacity: 1; transform: rotate(0); }
.qc-toggle .qc-toggle-close { opacity: 0; transform: rotate(-45deg); }
.qc-widget.open .qc-toggle .qc-toggle-open  { opacity: 0; transform: rotate(45deg); }
.qc-widget.open .qc-toggle .qc-toggle-close { opacity: 1; transform: rotate(0); }

/* Pulse ring */
.qc-toggle::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  animation: qc-pulse 2.2s ease-out infinite;
}
@keyframes qc-pulse {
  0%   { opacity: .5; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.4); }
  100% { opacity: 0;  transform: scale(1.4); }
}

/* ── Popup Overlay ──────────────────────────
   data-popup-active="true" ise JS açar
   ─────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(19,14,11,.65);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }

.popup {
  position: fixed; z-index: 1101;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: min(560px, 92vw);
  background: var(--bg);
  opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .5s cubic-bezier(.16,1,.3,1);
}
.popup.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.popup__img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center;
  display: block;
}
.popup__body { padding: 32px 36px 36px; }
.popup__eyebrow { margin-bottom: 12px; }
.popup__title {
  font-family: var(--ff-d);
  font-size: 1.9rem; font-weight: 300; line-height: 1.15;
  color: var(--ink); margin-bottom: 12px;
}
.popup__title em { font-style: italic; color: var(--rose); }
.popup__text {
  font-size: .84rem; font-weight: 300; line-height: 1.8;
  color: var(--ink2); margin-bottom: 24px;
}
.popup__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.popup__close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(19,14,11,.5);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.popup__close:hover { background: var(--rose); }
.popup__close svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ── Hızlı Randevu Section ──────────────────
   CTA bölümüyle birlikte tüm sayfalarda
   ─────────────────────────────────────────── */
.quick-appt {
  background: var(--surf);
  padding: 56px 0;
}
.quick-appt__inner {
  max-width: 1300px; margin: 0 auto; padding: 0 44px;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
@media (max-width: 820px) { .quick-appt__inner { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 640px) { .quick-appt__inner { padding: 0 22px; } }

.quick-appt__text {}
.quick-appt__title {
  font-family: var(--ff-d); font-size: 1.6rem; font-weight: 400; color: var(--ink);
  margin-bottom: 6px;
}
.quick-appt__title em { font-style: italic; color: var(--rose); }
.quick-appt__sub {
  font-size: .8rem; font-weight: 300; color: var(--ink2);
}

.quick-appt__form {
  display: flex; gap: 2px; flex-wrap: wrap;
}
.quick-appt__field {
  display: flex; flex-direction: column;
  flex: 1; min-width: 140px;
}
.quick-appt__label {
  font-size: .55rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink3);
  padding: 10px 14px 0; background: var(--bg);
}
.quick-appt__field input,
.quick-appt__field select {
  font-family: var(--ff-b); font-size: .84rem; font-weight: 300;
  color: var(--ink); background: var(--bg);
  border: none; border-bottom: 2px solid transparent;
  outline: none; padding: 4px 14px 10px;
  width: 100%; transition: border-color .3s;
  appearance: none;
}
.quick-appt__field input:focus,
.quick-appt__field select:focus { border-bottom-color: var(--rose); }
.quick-appt__field input::placeholder { color: var(--ink3); }
.quick-appt__submit {
  font-family: var(--ff-b); font-size: .65rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 0 28px; background: var(--rose); color: #fff;
  border: none; cursor: pointer; white-space: nowrap;
  min-height: 62px;
  transition: background .3s;
  display: flex; align-items: center; gap: 8px;
}
.quick-appt__submit:hover { background: var(--rose-d); }
.quick-appt__submit svg { width: 14px; height: 14px; fill: #fff; }
