/* ============================================================
   Style & Smile Salon — style.css
   Biswanath Chariali, Assam
   
   Design: Warm boutique editorial · Human & crafted
   Palette: Ivory · Blush rose · Deep plum · Champagne gold
   Fonts: Rozha One (display) · Lato (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rozha+One&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Cormorant:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ── TOKENS ── */
:root {
  --ivory:    #faf6f0;
  --ivory2:   #f4ede2;
  --ivory3:   #ede2d4;
  --blush:    #e8b4b8;
  --blush2:   #d4868c;
  --blush3:   #c06070;
  --plum:     #4a2040;
  --plum2:    #3a1830;
  --plum3:    #2a1022;
  --gold:     #c8a060;
  --gold2:    #b08848;
  --gold3:    #e0c080;
  --warm:     #8a6050;
  --warm2:    #6a4838;
  --text:     #3a2830;
  --text2:    #6a5858;
  --text3:    #9a8888;
  --white:    #ffffff;
  --shadow-s: 0 2px 12px rgba(74,32,64,0.08);
  --shadow-m: 0 8px 32px rgba(74,32,64,0.12);
  --shadow-l: 0 20px 60px rgba(74,32,64,0.18);
  --shadow-xl:0 32px 80px rgba(74,32,64,0.22);
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-d:   'Rozha One', serif;
  --font-e:   'Cormorant', serif;
  --font-b:   'Lato', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Critical: prevent horizontal overflow */
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
*, *::before, *::after { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b); }
input, select, textarea { font-family: var(--font-b); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory2); }
::-webkit-scrollbar-thumb { background: var(--blush2); border-radius: 3px; }

/* ── PAGE FADE ── */
body { opacity: 0; transition: opacity 0.45s ease; }
body.ready { opacity: 1; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  /* width 100% NOT more */
  width: 100%;
  max-width: 100vw;
  z-index: 800;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.pinned {
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 48px;
  box-shadow: 0 1px 0 rgba(74,32,64,0.07), var(--shadow-s);
}
.nav-brand {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-d);
  font-size: 1.55rem;
  color: var(--plum);
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-name span { color: var(--blush2); }
.brand-tag {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 28px;
}
.nav-menu a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.22s;
  white-space: nowrap;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--blush2);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.here { color: var(--plum); }
.nav-menu a.here::after,
.nav-menu a:hover::after { width: 100%; }

.nav-book {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--plum);
  color: var(--ivory);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-book:hover {
  background: var(--plum2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,32,64,0.3);
}

/* Hamburger — small, precise */
.ham-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  /* z above drawer */
  z-index: 810;
  position: relative;
  flex-shrink: 0;
}
.ham-btn span {
  display: block;
  height: 1.5px;
  background: var(--plum);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.ham-btn span:nth-child(1) { width: 20px; }
.ham-btn span:nth-child(2) { width: 14px; }
.ham-btn span:nth-child(3) { width: 17px; }

/* Mobile drawer — slides from RIGHT */
.mob-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(78vw, 280px);
  background: var(--ivory);
  border-left: 1px solid var(--ivory3);
  box-shadow: -8px 0 48px rgba(74,32,64,0.18);
  z-index: 805;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  overflow-y: auto;
  /* don't bleed out */
  max-width: calc(100vw - 48px);
}
.mob-drawer.open {
  transform: translateX(0);
}
.mob-drawer a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  padding: 14px 0;
  border-bottom: 1px solid var(--ivory3);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.mob-drawer a:last-of-type { border-bottom: none; }
.mob-drawer a:hover, .mob-drawer a.here { color: var(--plum); padding-left: 6px; }
.mob-book-wrap {
  margin-top: 28px;
}
.mob-book-wrap a {
  display: block;
  text-align: center;
  background: var(--plum);
  color: var(--ivory) !important;
  padding: 13px 20px !important;
  border-radius: 50px !important;
  font-size: 0.78rem !important;
  border-bottom: none !important;
  letter-spacing: 0.12em;
}
.mob-book-wrap a:hover { background: var(--plum2) !important; padding-left: 20px !important; }

/* Dim scrim */
.scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58,24,48,0.45);
  z-index: 800;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.scrim.show { display: block; }

/* ============================================================
   PAGE HERO HEADER (inner pages)
   ============================================================ */
.page-banner {
  padding: 140px 48px 70px;
  background: linear-gradient(150deg, var(--plum) 0%, var(--plum2) 60%, #1e0a18 100%);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(232,180,184,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200,160,96,0.1) 0%, transparent 50%);
}
.page-banner-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-banner-inner { position: relative; z-index: 2; max-width: 780px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blush); }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.page-banner h1 {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  color: var(--ivory);
  line-height: 1.05;
  font-weight: 400;
}
.page-banner h1 em { font-family: var(--font-e); font-style: italic; color: var(--blush); }
.page-banner p {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  margin-top: 14px; max-width: 480px; line-height: 1.75;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 140px 64px 80px 72px;
  position: relative; z-index: 2;
}
.hero-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
/* Painterly gradient background on right */
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--blush) 0%, var(--plum) 100%);
  opacity: 0.12;
}
.hero-canvas {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 45%, rgba(232,180,184,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 75%, rgba(200,160,96,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 60% 50%, rgba(74,32,64,0.08) 0%, transparent 70%),
    linear-gradient(160deg, var(--ivory2) 0%, var(--ivory3) 100%);
}
/* Big decorative circle — 3D feel via layered shadows */
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 80%);
  height: min(420px, 80%);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blush) 0%, var(--plum) 80%);
  box-shadow:
    inset -20px -20px 40px rgba(255,255,255,0.3),
    inset 10px 10px 30px rgba(74,32,64,0.2),
    0 20px 80px rgba(74,32,64,0.25),
    0 0 0 1px rgba(255,255,255,0.2);
  overflow: hidden;
  animation: orbBreath 7s ease-in-out infinite;
}
.hero-orb::after {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 60%; height: 60%;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-orb-emoji {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: min(11rem, 22vw);
  filter: drop-shadow(0 8px 24px rgba(74,32,64,0.3));
}
@keyframes orbBreath {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.03); }
}

/* Floating info chips */
.hero-chip {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-m), 0 0 0 1px rgba(74,32,64,0.05);
  animation: chipFloat 6s ease-in-out infinite;
  z-index: 3;
  /* prevent overflow */
  max-width: calc(100% - 24px);
}
.hero-chip.c1 { top: 22%; right: 8%; animation-delay: 0s; }
.hero-chip.c2 { bottom: 28%; left: 4%; animation-delay: 2.5s; }
.hero-chip.c3 { bottom: 14%; right: 10%; animation-delay: 5s; }
.hero-chip-icon { font-size: 1.5rem; flex-shrink: 0; }
.hero-chip strong { display: block; font-size: 0.82rem; color: var(--plum); font-weight: 700; line-height: 1.2; }
.hero-chip span { font-size: 0.7rem; color: var(--text3); }
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  color: var(--plum);
  margin-bottom: 22px;
  font-weight: 400;
}
.hero-h1 em {
  font-family: var(--font-e);
  font-style: italic;
  color: var(--blush2);
  font-size: 1.1em;
}
.hero-desc {
  font-size: 1rem; line-height: 1.8;
  color: var(--text2);
  max-width: 420px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--ivory3);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-d); font-size: 1.6rem;
  color: var(--plum); line-height: 1;
}
.trust-lbl { font-size: 0.7rem; color: var(--text3); margin-top: 2px; }
.trust-div { width: 1px; height: 36px; background: var(--ivory3); }

/* ── BUTTONS ── */
.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--plum);
  color: var(--ivory);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 50px;
  transition: all 0.3s; cursor: pointer;
}
.btn-solid:hover {
  background: var(--plum2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,32,64,0.3);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--blush2);
  color: var(--blush2);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 50px;
  transition: all 0.3s; cursor: pointer;
  background: transparent;
}
.btn-outline:hover {
  background: var(--blush2);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 50px;
  transition: all 0.3s; cursor: pointer; border: none;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,160,96,0.4);
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff;
  font-size: 0.8rem; font-weight: 700;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1eb85a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ivory2); color: var(--plum);
  font-size: 0.8rem; font-weight: 700;
  padding: 14px 24px; border-radius: 50px;
  border: 1.5px solid var(--ivory3); cursor: pointer; transition: all 0.3s;
}
.btn-call:hover { border-color: var(--blush2); background: var(--white); transform: translateY(-2px); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.sec-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.sec-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.sec-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); display: block; }
.sec-h2 {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--plum); line-height: 1.1; font-weight: 400;
  margin-bottom: 16px;
}
.sec-h2 em { font-family: var(--font-e); font-style: italic; color: var(--blush2); }
.sec-body { font-size: 0.97rem; color: var(--text2); line-height: 1.8; max-width: 520px; font-weight: 300; }

/* ============================================================
   WHY US — 3D CARD ROW
   ============================================================ */
.why-sec {
  padding: 100px 0;
  background: var(--ivory);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px 28px;
  position: relative;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-s);
  border: 1px solid rgba(74,32,64,0.04);
  /* 3D tilt feel */
  transform-style: preserve-3d;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--blush), var(--plum));
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  transform: translateY(-8px) perspective(600px) rotateX(2deg);
  box-shadow: var(--shadow-l);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--ivory2), var(--ivory3));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-s);
  /* subtle 3D */
  box-shadow: 4px 4px 12px rgba(74,32,64,0.1), -2px -2px 8px rgba(255,255,255,0.8);
}
.why-card h4 {
  font-family: var(--font-d); font-size: 1.05rem;
  color: var(--plum); margin-bottom: 8px; font-weight: 400;
}
.why-card p { font-size: 0.84rem; color: var(--text2); line-height: 1.7; font-weight: 300; }

/* ============================================================
   SERVICES SHOWCASE
   ============================================================ */
.services-sec {
  padding: 100px 0;
  background: var(--ivory2);
  position: relative; overflow: hidden;
}
.services-sec::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,180,184,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.svc-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-s);
  cursor: default;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.svc-card-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative; overflow: hidden;
}
.svc-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--ivory2), var(--ivory3));
}
.svc-card-img span { position: relative; z-index: 1; filter: drop-shadow(0 8px 16px rgba(74,32,64,0.2)); }
/* 3D depth on card image */
.svc-card:hover .svc-card-img span { animation: iconPop 0.4s var(--spring) forwards; }
@keyframes iconPop {
  0% { transform: scale(1); }
  60% { transform: scale(1.18) translateY(-6px); }
  100% { transform: scale(1.1) translateY(-4px); }
}
.svc-card-body { padding: 24px 26px 28px; }
.svc-card-body h3 {
  font-family: var(--font-d); font-size: 1.1rem;
  color: var(--plum); margin-bottom: 6px; font-weight: 400;
}
.svc-card-body p { font-size: 0.83rem; color: var(--text2); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.svc-price {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--ivory3);
}
.svc-price-from { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text3); }
.svc-price-val { font-family: var(--font-d); font-size: 1.3rem; color: var(--plum); font-weight: 400; }
.svc-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blush2); background: rgba(212,134,140,0.1);
  border: 1px solid rgba(212,134,140,0.25);
  padding: 3px 9px; border-radius: 20px; margin-bottom: 10px;
}

/* ============================================================
   TEAM — HUMAN PORTRAITS
   ============================================================ */
.team-sec {
  padding: 100px 0;
  background: var(--ivory);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.team-card {
  position: relative;
  transition: all 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-m);
  background: linear-gradient(145deg, var(--ivory2), var(--ivory3));
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  /* 3D depth */
  box-shadow:
    0 12px 40px rgba(74,32,64,0.15),
    0 0 0 1px rgba(255,255,255,0.6),
    inset 0 0 40px rgba(74,32,64,0.04);
}
.team-avatar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 60%);
}
.team-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--plum); color: var(--ivory);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(74,32,64,0.35);
}
.team-info { padding: 18px 4px 0; text-align: center; }
.team-info h4 { font-family: var(--font-d); font-size: 1.1rem; color: var(--plum); margin-bottom: 4px; font-weight: 400; }
.team-info span { font-size: 0.78rem; color: var(--text3); }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-sec {
  padding: 100px 0;
  background: var(--ivory2);
}
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
  margin-top: 56px;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-s);
  transition: all 0.4s var(--ease);
}
.g-item:hover { transform: scale(1.02); box-shadow: var(--shadow-l); z-index: 2; }
.g-item:hover .g-overlay { opacity: 1; }
.g-face {
  width: 100%;
  background: linear-gradient(145deg, var(--ivory2), var(--ivory3));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  aspect-ratio: 1;
}
.g-item:nth-child(3n+1) .g-face { aspect-ratio: 4/5; font-size: 6rem; }
.g-item:nth-child(5) .g-face { aspect-ratio: 3/4; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,32,64,0.75) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.g-overlay span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-sec {
  padding: 100px 0;
  background: var(--plum);
  position: relative; overflow: hidden;
}
.testi-sec::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,180,184,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.testi-sec::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(200,160,96,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.testi-sec .sec-h2 { color: var(--ivory); }
.testi-sec .sec-label { color: var(--blush); }
.testi-sec .sec-label::before { background: var(--blush); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 56px;
  position: relative; z-index: 2;
}
.t-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 26px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.t-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.t-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 4px; margin-bottom: 14px; }
.t-quote {
  font-family: var(--font-e); font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.75;
  margin-bottom: 20px;
}
.t-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }
.t-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--blush2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.95rem;
  flex-shrink: 0;
}
.t-name { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ivory); }
.t-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 100px 0;
  background: var(--ivory);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-vis { position: relative; height: 540px; }
.av-blob {
  position: absolute; top: 24px; left: 24px; right: -16px; bottom: -16px;
  background: linear-gradient(145deg, rgba(232,180,184,0.3), rgba(74,32,64,0.1));
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 60%;
  animation: blobMorph 10s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 40% 60% 50% 50% / 50% 40% 60% 60%; }
  33% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
  66% { border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%; }
}
.av-main {
  position: absolute; top: 0; left: 0; right: 20px; bottom: 20px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--ivory2), var(--ivory3));
  display: flex; align-items: center; justify-content: center;
  font-size: 10rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.6);
  overflow: hidden;
  z-index: 2;
}
.av-main::before {
  content: '';
  position: absolute; top: -20%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
}
.av-stat {
  position: absolute; z-index: 4;
  background: var(--white); border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-m);
  border: 1px solid rgba(255,255,255,0.8);
}
.av-stat.s1 { top: -16px; right: 16px; }
.av-stat.s2 { bottom: -12px; left: -12px; }
.av-stat strong { display: block; font-family: var(--font-d); font-size: 1.6rem; color: var(--blush2); line-height: 1; }
.av-stat span { font-size: 0.7rem; color: var(--text3); letter-spacing: 0.06em; }

.about-text .sec-h2 { margin-bottom: 16px; }
.about-text p { font-size: 0.95rem; color: var(--text2); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.afeat {
  background: var(--ivory2); border: 1px solid var(--ivory3);
  border-radius: 12px; padding: 13px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: var(--text);
  transition: all 0.25s;
}
.afeat:hover { background: var(--white); border-color: rgba(212,134,140,0.3); transform: translateX(3px); }
.afeat-ic { font-size: 1.2rem; flex-shrink: 0; }

/* ============================================================
   SERVICES PAGE FULL
   ============================================================ */
.services-full {
  padding: 80px 0 100px;
  background: var(--ivory);
}
.svc-category { margin-bottom: 64px; }
.svc-cat-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid var(--ivory3);
}
.svc-cat-head h3 {
  font-family: var(--font-d); font-size: 1.5rem;
  color: var(--plum); font-weight: 400;
}
.svc-cat-head span { font-size: 1.8rem; }
.svc-items-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.svc-item {
  background: var(--white); border-radius: 16px;
  padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  box-shadow: var(--shadow-s); transition: all 0.3s;
  border: 1px solid transparent;
}
.svc-item:hover {
  border-color: rgba(232,180,184,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}
.svc-item-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.svc-item-info h4 { font-size: 0.92rem; font-weight: 700; color: var(--plum); margin-bottom: 4px; }
.svc-item-info p { font-size: 0.78rem; color: var(--text2); line-height: 1.6; font-weight: 300; margin-bottom: 8px; }
.svc-item-price { font-family: var(--font-d); font-size: 1rem; color: var(--blush2); }

/* ============================================================
   GALLERY PAGE FULL
   ============================================================ */
.gallery-full { padding: 80px 0 100px; background: var(--ivory); }
.gallery-tabs {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 48px;
  padding: 6px;
  background: var(--ivory2);
  border-radius: 50px;
  width: fit-content;
  max-width: 100%;
}
.gtab {
  padding: 9px 22px; border-radius: 50px; border: none;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text2); background: transparent; cursor: pointer;
  transition: all 0.25s;
}
.gtab.on, .gtab:hover {
  background: var(--plum); color: var(--ivory);
}
.gallery-grid-full {
  columns: 4;
  column-gap: 16px;
}
.gf-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: 16px; overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow-s);
  transition: all 0.4s var(--ease); position: relative;
}
.gf-item:hover { transform: scale(1.02); box-shadow: var(--shadow-l); z-index: 2; }
.gf-face {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--ivory2), var(--ivory3));
  font-size: 5rem; transition: transform 0.5s var(--ease);
}
.gf-item:nth-child(3n+1) .gf-face { aspect-ratio: 3/4; font-size: 6rem; }
.gf-item:hover .gf-face { transform: scale(1.06); }
.gf-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(74,32,64,0.8) 0%, transparent 100%);
  padding: 28px 14px 12px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transform: translateY(4px); opacity: 0;
  transition: all 0.3s;
}
.gf-item:hover .gf-label { transform: translateY(0); opacity: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-sec { padding: 80px 0 100px; background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px; align-items: start; }
.contact-info h2 {
  font-family: var(--font-d); font-size: 2.4rem;
  color: var(--plum); line-height: 1.15; margin-bottom: 14px; font-weight: 400;
}
.contact-info h2 em { font-family: var(--font-e); font-style: italic; color: var(--blush2); }
.contact-info > p { font-size: 0.93rem; color: var(--text2); line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.cinfo-blocks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.cinfo-block {
  background: var(--white); border-radius: 14px;
  padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-s); transition: all 0.3s;
  border: 1px solid transparent;
}
.cinfo-block:hover { border-color: rgba(232,180,184,0.35); transform: translateX(4px); }
.cinfo-ic { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.cinfo-block strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--plum); margin-bottom: 3px; }
.cinfo-block p, .cinfo-block a { font-size: 0.87rem; color: var(--text2); line-height: 1.6; }
.cinfo-block a:hover { color: var(--blush2); }
.corder-box {
  background: linear-gradient(145deg, var(--plum), var(--plum2));
  border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow-l);
}
.corder-box h4 {
  font-family: var(--font-d); font-size: 1.2rem;
  color: var(--ivory); margin-bottom: 8px; font-weight: 400;
}
.corder-box p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
.corder-btns { display: flex; flex-direction: column; gap: 10px; }
.corder-btns a, .corder-btns button { justify-content: center; display: flex; }

.cform-wrap {
  background: var(--white); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-m);
}
.cform-head {
  padding: 28px 32px; background: var(--ivory2);
  border-bottom: 1px solid var(--ivory3);
}
.cform-head h3 {
  font-family: var(--font-d); font-size: 1.5rem;
  color: var(--plum); margin-bottom: 4px; font-weight: 400;
}
.cform-head p { font-size: 0.84rem; color: var(--text2); }
.cform { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text3); }
.fg input, .fg select, .fg textarea {
  background: var(--ivory2); border: 1.5px solid var(--ivory3);
  border-radius: 10px; padding: 12px 14px;
  color: var(--text); font-size: 0.9rem; outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text3); font-weight: 300; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blush2);
  background: var(--white);
}
.submit-btn {
  background: var(--plum); color: var(--ivory);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px; border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.3s; margin-top: 4px; width: 100%;
}
.submit-btn:hover { background: var(--plum2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,32,64,0.3); }

/* Map */
.map-sec { padding: 0 0 80px; background: var(--ivory); }
.map-wrap {
  max-width: calc(100% - 96px); margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-m); height: 380px;
  border: 1px solid var(--ivory3); position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-pin {
  position: absolute; top: 16px; left: 16px;
  background: var(--plum); color: var(--ivory);
  font-size: 0.78rem; font-weight: 700;
  padding: 8px 16px; border-radius: 50px; z-index: 2;
  box-shadow: var(--shadow-s);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(145deg, var(--blush) 0%, var(--plum) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-d); font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white); line-height: 1.15; margin-bottom: 14px;
  font-weight: 400; position: relative; z-index: 2;
}
.cta-banner h2 em { font-family: var(--font-e); font-style: italic; }
.cta-banner p {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.75; position: relative; z-index: 2;
}
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-white { background: var(--white); color: var(--plum); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 30px; border-radius: 50px; transition: all 0.3s; }
.btn-white:hover { background: var(--ivory2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-w { border: 2px solid rgba(255,255,255,0.4); color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 28px; border-radius: 50px; transition: all 0.3s; display: inline-flex; align-items: center; }
.btn-outline-w:hover { border-color: rgba(255,255,255,0.75); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--plum2);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px; margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.f-brand .f-logo { font-family: var(--font-d); font-size: 1.6rem; color: var(--ivory); margin-bottom: 3px; }
.f-brand .f-logo span { color: var(--blush); }
.f-brand .f-sub { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.f-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 220px; margin-bottom: 20px; }
.f-socials { display: flex; gap: 8px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: rgba(255,255,255,0.5);
  transition: all 0.3s; letter-spacing: 0.04em;
}
.fsoc:hover { background: var(--blush2); border-color: var(--blush2); color: #fff; transform: translateY(-2px); }
.f-col h5 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col a { font-size: 0.86rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.f-col a:hover { color: var(--ivory); }
.f-hours h5 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.f-hour-row { display: flex; justify-content: space-between; font-size: 0.83rem; margin-bottom: 7px; }
.f-hour-row span:first-child { color: rgba(255,255,255,0.45); }
.f-hour-row span:last-child { color: rgba(255,255,255,0.8); font-weight: 700; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-masonry { columns: 3; }
  .gallery-grid-full { columns: 3; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 48px 56px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-vis { height: 340px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-items-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── MOBILE NAV BREAKPOINT ── */
@media (max-width: 860px) {
  /* Nav layout for mobile */
  .nav {
    padding: 14px 20px;
    /* keep items inline, no wrapping */
    flex-wrap: nowrap;
    gap: 0;
  }
  .nav.pinned { padding: 11px 20px; }
  .nav-brand { flex-shrink: 1; min-width: 0; }
  .brand-name { font-size: 1.25rem; }
  .brand-tag { display: none; }
  /* Hide desktop nav + book button */
  .nav-menu,
  .nav-book { display: none; }
  /* Show hamburger */
  .ham-btn {
    display: flex;
    margin-left: 16px;
  }

  /* Drawer */
  .mob-drawer { display: flex; }
}

@media (max-width: 700px) {
  .sec-wrap { padding: 0 20px; }
  .why-sec, .services-sec, .team-sec, .gallery-sec,
  .testi-sec, .about-story, .services-full,
  .gallery-full, .contact-sec, .cta-banner { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-left { padding: 120px 20px 56px; }
  .page-banner { padding: 110px 20px 50px; }
  .gallery-masonry, .gallery-grid-full { columns: 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .svc-items-grid { grid-template-columns: 1fr; }
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fg-row { grid-template-columns: 1fr; }
  .map-wrap { max-width: calc(100% - 40px); height: 280px; }
  .about-feats { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px 0; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.6rem; }
  .gallery-masonry, .gallery-grid-full { columns: 1; }
}

/* ── DEV CREDIT ── */
.dev-credit {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 13px 0;
  text-align: center;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.dev-credit-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.dev-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
  animation: devBlink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes devBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.3; }
}
.dev-text { font-size: 11.5px; font-weight: 500; letter-spacing: 0.05em; color: #666; }
.dev-text a {
  color: #a78bfa; text-decoration: none;
  border-bottom: 1px solid rgba(167,139,250,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.dev-text a:hover { color: #c4b5fd; border-color: rgba(196,181,253,0.6); }
.dev-sep { color: #2e2e2e; font-size: 12px; }
.dev-remove {
  font-size: 10.5px; color: #444; background: none;
  border: 1px solid #2a2a2a; border-radius: 5px;
  padding: 2px 8px; cursor: pointer; font-family: inherit;
  transition: all 0.2s; letter-spacing: 0.04em;
}
.dev-remove:hover { color: #777; border-color: #3a3a3a; }
@keyframes devShake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-7px); }
  40%     { transform: translateX(7px); }
  60%     { transform: translateX(-5px); }
  80%     { transform: translateX(5px); }
}
.dev-shake { animation: devShake 0.45s ease; }