/* ============================================================
   Skin By Leudy — boutique esthetician studio, Trujillo Alto PR
   Type: Bodoni Moda (editorial Didone display) + Jost (geometric sans)
   Palette inspired by the real blush-lit studio
   ============================================================ */

:root {
  --ivory:    #F7F2ED;
  --blush:    #E8CFC9;
  --blush-2:  #EFDFD9;
  --rose:     #C9A6A0;
  --taupe:    #A88F82;
  --stone:    #D8D1C8;
  --espresso: #1D1B18;
  --white:    #FFFFFF;

  --ink:      #1D1B18;
  --ink-soft: #4a443f;
  --muted:    #8a7f76;
  --line:     rgba(29, 27, 24, 0.10);
  --line-2:   rgba(29, 27, 24, 0.06);

  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans:  "Jost", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vh, 150px);

  --r: 3px;
  --r-img: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--rose); color: var(--white); }

/* ---------- type ---------- */
.serif { font-family: var(--serif); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

.kicker {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}
.kicker.center { justify-content: center; }
.kicker.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}

p { margin: 0 0 1em; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.75; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.section-pad { padding-block: var(--section-y); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--r);
  border: 1px solid var(--espresso);
  cursor: pointer;
  transition: all 0.45s var(--ease);
  background: var(--espresso);
  color: var(--ivory);
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--espresso); border-color: var(--espresso); color: var(--ivory); }

.btn-light {
  background: var(--ivory);
  color: var(--espresso);
  border-color: var(--ivory);
}
.btn-light:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rose);
  transition: gap 0.4s var(--ease), color 0.4s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--rose); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--ease);
}
.header.scrolled {
  background: rgba(247, 242, 237, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
}
.header.scrolled .header-inner { padding-block: 14px; }

.brand img { height: 30px; width: auto; transition: height 0.5s var(--ease); }
.header.scrolled .brand img { height: 26px; }

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.header .btn { padding: 13px 24px; font-size: 11.5px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 120;
}
.hamburger span {
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
  visibility: hidden;
}
.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 40px; }
.mobile-menu li { overflow: hidden; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 56px);
  font-weight: 500;
  line-height: 1.3;
  display: block;
  color: var(--ink);
}
.mobile-menu a:hover { color: var(--rose); font-style: italic; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 150px; padding-bottom: var(--section-y); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 28px; font-weight: 500;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero .lead { max-width: 30em; margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 48px; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.trust li {
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--line);
  line-height: 1.4;
}
.trust li:last-child { border-right: none; margin-right: 0; padding-right: 0; }

/* hero image cluster */
.hero-media { position: relative; }
.hero-media .frame-main {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(29,27,24,0.4);
}
.hero-media .frame-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame-main::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,27,24,0) 55%, rgba(29,27,24,0.28) 100%);
}
.hero-media .portrait-card {
  position: absolute;
  bottom: -34px; left: -34px;
  width: 40%;
  border-radius: var(--r-img);
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: 0 24px 50px -28px rgba(29,27,24,0.5);
  aspect-ratio: 3 / 4;
}
.hero-media .portrait-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: rgba(247,242,237,0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   MARQUEE / promise ribbon
   ============================================================ */
.ribbon {
  background: var(--espresso);
  color: var(--ivory);
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid rgba(247,242,237,0.12);
}
.ribbon-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.ribbon-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  color: var(--ivory);
}
.ribbon-track span::after { content: "·"; color: var(--rose); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   BRAND PROMISE
   ============================================================ */
.promise-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 64px;
}
.promise-head h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.08; }
.promise-head h2 em { font-style: italic; color: var(--rose); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.pcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-img);
  padding: 40px 34px 44px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -38px rgba(29,27,24,0.35); }
.pcard .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--rose);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.pcard .icon {
  margin-bottom: 26px;
  color: var(--rose);
}
.pcard .icon svg { display: block; width: 34px; height: 34px; }
.pcard:hover .icon { color: var(--espresso); }
.pcard .icon, .pcard:hover .icon { transition: color 0.5s var(--ease); }
.pcard h3 { font-size: 25px; margin-bottom: 14px; }
.pcard p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--blush-2); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 50px;
}
.services-head h2 { font-size: clamp(32px, 4vw, 54px); }
.services-head h2 em { font-style: italic; color: var(--rose); }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.tab {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.tab:hover { color: var(--ink); border-color: var(--taupe); }
.tab.active { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-img);
  overflow: hidden;
}
.scard {
  background: var(--ivory);
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.4s var(--ease);
  animation: fadeCard 0.5s var(--ease) both;
}
@keyframes fadeCard { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.scard:hover { background: var(--white); }
.scard-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.scard h3 { font-size: 22px; line-height: 1.15; }
.scard .cat-tag {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe); font-family: var(--sans); white-space: nowrap; padding-top: 6px;
}
.scard p { font-size: 14.5px; color: var(--ink-soft); margin: 0; flex: 1; }
.scard .book {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); font-weight: 500; display: inline-flex; align-items: center; gap: 7px;
  margin-top: 6px; align-self: flex-start;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.scard .book:hover { border-color: var(--rose); gap: 12px; }
.services-cta { margin-top: 44px; display: flex; justify-content: center; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--rose); color: var(--ivory); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.about-media { position: relative; }
.about-media .img-wrap {
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(29,27,24,0.55);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media .sig {
  position: absolute;
  bottom: 28px; right: -18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--ivory);
  background: var(--espresso);
  padding: 14px 26px;
  border-radius: var(--r);
  box-shadow: 0 20px 40px -22px rgba(29,27,24,0.6);
}
.about .kicker { color: var(--ivory); }
.about .kicker::before { background: var(--ivory); }
.about h2 { font-size: clamp(34px, 4.4vw, 60px); color: var(--ivory); margin-bottom: 26px; }
.about p { color: rgba(247,242,237,0.92); font-size: 17px; max-width: 34em; }
.about .note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ivory);
  border-left: 2px solid rgba(247,242,237,0.4);
  padding-left: 22px;
  margin: 30px 0 36px;
}
.about .btn-light { margin-top: 6px; }

/* ============================================================
   STUDIO EXPERIENCE
   ============================================================ */
.studio { overflow: hidden; }
.studio-feature {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.studio-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.studio-feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,27,24,0.05) 0%, rgba(29,27,24,0.55) 100%);
}
.studio-overlay {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 64px);
  max-width: 620px;
  color: var(--ivory);
}
.studio-overlay .logo-mark { height: 36px; margin-bottom: 26px; }
.studio-overlay h2 { font-size: clamp(30px, 4vw, 50px); color: var(--ivory); margin-bottom: 20px; }
.studio-overlay p { color: rgba(247,242,237,0.9); font-size: 16.5px; max-width: 38em; margin-bottom: 30px; }
.studio-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  list-style: none; padding: 0; margin: 0;
}
.studio-highlights li {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex; align-items: center; gap: 9px;
}
.studio-highlights li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose); display: inline-block;
}

/* ============================================================
   RESULTS GALLERY
   ============================================================ */
.results-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.results-head h2 { font-size: clamp(32px, 4.4vw, 56px); margin-bottom: 18px; }
.results-head h2 em { font-style: italic; color: var(--rose); }
.gallery {
  columns: 4;
  column-gap: clamp(10px, 1.2vw, 16px);
}
.gtile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-img);
  background: var(--stone);
  margin: 0 0 clamp(10px, 1.2vw, 16px);
  break-inside: avoid;
}
.gtile img {
  width: 100%; height: auto; display: block;
  transition: transform 0.9s var(--ease);
}
.gtile:hover img { transform: scale(1.05); }
.gtile .tag {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory); z-index: 2; opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.gtile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(29,27,24,0.45));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gtile:hover::after { opacity: 1; }
.gtile:hover .tag { opacity: 1; transform: none; }
/* masonry: tiles flow at natural aspect ratio */
.disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 34px;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.book-cta { background: var(--blush); text-align: center; }
.book-cta .inner { max-width: 760px; margin: 0 auto; }
.book-cta h2 { font-size: clamp(38px, 5.5vw, 76px); line-height: 1.02; margin-bottom: 24px; }
.book-cta h2 em { font-style: italic; color: var(--rose); }
.book-cta p { font-size: 18px; color: var(--ink-soft); max-width: 30em; margin: 0 auto 40px; }
.book-cta .buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.book-cta .small-note { margin-top: 28px; font-size: 12.5px; letter-spacing: 0.08em; color: var(--taupe); text-transform: uppercase; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-img);
  overflow: hidden;
}
.contact-col { background: var(--ivory); padding: clamp(36px, 4vw, 60px); }
.contact-col h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 8px; }
.contact-col .sub { color: var(--muted); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 34px; }
.info-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line-2);
}
.info-row:last-of-type { border-bottom: none; }
.info-row .label { font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--taupe); }
.info-row .val { font-size: 15px; text-align: right; }
.info-row .val a:hover { color: var(--rose); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contact-actions .btn { padding: 13px 22px; font-size: 11.5px; }

.hours-row {
  display: flex; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid var(--line-2);
  font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.closed { color: var(--muted); }
.hours-row .day { letter-spacing: 0.04em; }
.hours-row.today { color: var(--rose); font-weight: 500; }
.map-embed {
  margin-top: 28px;
  border-radius: var(--r-img);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 16/7;
  background:
    repeating-linear-gradient(45deg, var(--stone), var(--stone) 12px, #d0c8bd 12px, #d0c8bd 24px);
  display: flex; align-items: center; justify-content: center;
}
.map-embed .pin {
  text-align: center; background: rgba(247,242,237,0.92); backdrop-filter: blur(4px);
  padding: 16px 24px; border-radius: var(--r); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
}
.map-embed .pin strong { display:block; font-family: var(--serif); font-size: 18px; letter-spacing: 0; text-transform: none; margin-bottom: 4px; font-weight: 500;}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: var(--ivory); padding-top: clamp(64px, 8vh, 110px); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,242,237,0.12);
}
.footer-brand img { height: 34px; margin-bottom: 24px; }
.footer-brand p { color: rgba(247,242,237,0.7); max-width: 28em; font-size: 15px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin: 0 0 22px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col a { color: rgba(247,242,237,0.82); font-size: 15px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding: 30px 0 40px;
  font-size: 12.5px; letter-spacing: 0.06em;
  color: rgba(247,242,237,0.55);
}
.footer-bottom .socials { display: flex; gap: 22px; }
.footer-bottom .socials a { color: rgba(247,242,237,0.7); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-bottom .socials a:hover { color: var(--rose); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ribbon-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 0.95fr; }
  .gallery { columns: 3; }
}
@media (max-width: 880px) {
  .nav-links, .header .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .promise-head, .services-head, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-media { margin-top: 40px; max-width: 460px; }
  .hero-media .portrait-card { width: 34%; bottom: -24px; left: -16px; }
  .about-grid { gap: 48px; }
  .about-media { max-width: 440px; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-grid { border: none; background: transparent; gap: 16px; }
  .contact-col { border: 1px solid var(--line); border-radius: var(--r-img); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .gallery { columns: 2; }
  .trust li { border-right: none; padding-right: 0; margin-right: 0; margin-bottom: 8px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .scard { padding: 26px 24px; }
  .about-media .sig { font-size: 30px; right: 0; }
}

/* anchor offset for sticky header */
[id] { scroll-margin-top: 90px; }
