:root {
  --bg: #080808;
  --bg-soft: #0f0f0f;
  --card: #131313;
  --card-2: #181818;
  --text: #f6f0e7;
  --muted: #a9a39a;
  --gold: #c99b52;
  --gold-light: #ebc77d;
  --line: rgba(235, 199, 125, .18);
  --line-white: rgba(255,255,255,.09);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 4%, rgba(201,155,82,.08), transparent 24rem),
    radial-gradient(circle at 5% 35%, rgba(201,155,82,.05), transparent 30rem),
    var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 115px 0; position: relative; }
.section-heading { max-width: 680px; margin-bottom: 46px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading > span, .section-kicker {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
}
.section-heading h2, .process-copy h2, .contact-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.035em;
  margin: 8px 0 18px;
  font-weight: 600;
}
.section-heading p, .process-copy > p, .contact-copy > p { color: var(--muted); max-width: 620px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  transition: .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,8,.83);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line-white);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.nav-wrap { height: 88px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; line-height: .82; min-width: 210px; }
.brand-photo { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.12); border: 1px solid rgba(235,199,125,.42); box-shadow: 0 0 0 4px rgba(201,155,82,.035); }
.brand-copy { display: inline-flex; flex-direction: column; }
.brand-copy > span { color: var(--text); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.85rem; font-weight: 600; letter-spacing: -.02em; }
.brand-copy small { color: var(--gold-light); margin: 9px 0 0 31px; letter-spacing: .34em; font-size: .62rem; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { color: #cbc6be; font-size: .86rem; position: relative; transition: .25s ease; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold); transition: .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; gap: 10px; }
.icon-button { height: 42px; display: inline-flex; align-items: center; gap: 9px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 600; transition: .25s ease; }
.icon-button svg { width: 17px; height: 17px; color: var(--gold-light); }
.icon-button:hover { transform: translateY(-2px); border-color: rgba(235,199,125,.55); background: rgba(201,155,82,.08); }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 11px; margin-left: auto; }
.menu-toggle span { display: block; height: 1.5px; background: var(--text); margin: 6px 0; transition: .3s ease; }

.hero { min-height: 900px; padding: 160px 0 65px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(201,155,82,.08);
  border-radius: 50%;
  left: -250px;
  top: 90px;
  box-shadow: 0 0 0 75px rgba(201,155,82,.018), 0 0 0 150px rgba(201,155,82,.012);
}
.hero-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(201,155,82,.09); filter: blur(120px); right: -160px; top: 100px; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(45px, 7vw, 100px); }
.hero-visual { min-height: 610px; position: relative; display: grid; place-items: center; }
.portrait-frame {
  position: relative;
  width: min(100%, 490px);
  aspect-ratio: .82;
  border-radius: 45% 45% 16px 16px;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid var(--line-white);
  box-shadow: 0 60px 100px rgba(0,0,0,.45);
}
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,.55)); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.2); transform: scale(1.02); }
.portrait-ring { position: absolute; inset: 22px; border: 1px solid rgba(235,199,125,.2); border-radius: inherit; z-index: 2; }
.floating-card { position: absolute; z-index: 3; padding: 14px 17px; border-radius: 14px; background: rgba(18,18,18,.76); border: 1px solid var(--line-white); backdrop-filter: blur(15px); box-shadow: 0 18px 45px rgba(0,0,0,.35); }
.floating-card strong { display: block; font-size: .83rem; }
.floating-card span { display: block; color: var(--muted); font-size: .67rem; margin-top: 2px; }
.card-one { left: -15px; top: 22%; }
.card-two { right: -15px; bottom: 13%; }

.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: .78rem; margin-bottom: 20px; }
.eyebrow small { color: var(--muted); }
.google-g { font-size: 1.2rem; font-weight: 800; }
.hero h1 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(4.5rem, 8.2vw, 7.8rem); font-weight: 600; line-height: .76; letter-spacing: -.06em; }
.hero h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(246,240,231,.65); }
.hero-specialty { color: var(--gold-light); font-weight: 600; margin: 30px 0 12px; font-size: clamp(.95rem, 1.7vw, 1.12rem); }
.hero-text { color: #b9b4ac; max-width: 650px; font-size: .97rem; }
.hero-info { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 24px; margin: 28px 0 32px; }
.hero-info > div { display: flex; gap: 12px; align-items: flex-start; color: #d7d1c7; font-size: .82rem; }
.hero-info svg { width: 21px; height: 21px; flex: 0 0 21px; color: var(--gold-light); margin-top: 2px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; font-size: .84rem; transition: .3s ease; cursor: pointer; }
.btn svg { width: 20px; height: 20px; }
.btn-primary { color: #15120d; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 15px 35px rgba(201,155,82,.16); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(201,155,82,.25); }
.btn-secondary { color: var(--text); border-color: rgba(235,199,125,.32); background: rgba(255,255,255,.025); }
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--gold-light); background: rgba(201,155,82,.08); }
.hero-strip { margin-top: 70px; padding-top: 28px; border-top: 1px solid var(--line-white); display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hero-strip div { display: flex; align-items: baseline; gap: 12px; }
.hero-strip strong { color: var(--gold-light); font: 600 2rem/1 "Cormorant Garamond", Georgia, serif; }
.hero-strip span { color: var(--muted); font-size: .76rem; }

.portfolio-section { background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; grid-auto-flow: dense; gap: 14px; }
.work-card { position: relative; border: 0; padding: 0; border-radius: 18px; overflow: hidden; background: var(--card); cursor: zoom-in; color: var(--text); }
.work-card.tall { grid-row: span 2; }
.work-card.wide { grid-column: span 2; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.83)); opacity: .7; transition: .35s ease; }
.work-card > span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; text-align: left; transform: translateY(5px); transition: .35s ease; }
.work-card strong { display: block; font-size: .9rem; }
.work-card small { display: block; color: #c7c1b8; font-size: .69rem; margin-top: 2px; }
.work-card:hover img { transform: scale(1.055); filter: saturate(1.03) contrast(1.04); }
.work-card:hover::after { opacity: 1; }
.work-card:hover > span { transform: translateY(0); }
.extra-work { display: none; }
.portfolio-grid.expanded .extra-work { display: block; }
.portfolio-actions { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.text-link { color: var(--gold-light); font-size: .8rem; font-weight: 600; border-bottom: 1px solid rgba(235,199,125,.35); padding-bottom: 4px; }

.specialties-section { overflow: hidden; }
.specialties-section::before { content: "M"; position: absolute; right: -20px; top: 10px; font: 600 35rem/1 "Cormorant Garamond", Georgia, serif; color: rgba(255,255,255,.012); pointer-events: none; }
.specialties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.specialty-card { padding: 34px 28px 31px; min-height: 290px; border: 1px solid var(--line-white); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); position: relative; overflow: hidden; transition: .35s ease; }
.specialty-card::after { content: ""; position: absolute; width: 120px; height: 120px; border: 1px solid rgba(201,155,82,.12); border-radius: 50%; right: -50px; bottom: -50px; }
.specialty-card:hover { transform: translateY(-8px); border-color: rgba(235,199,125,.28); background: linear-gradient(145deg, rgba(201,155,82,.08), rgba(255,255,255,.012)); }
.specialty-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: rgba(201,155,82,.09); color: var(--gold-light); }
.specialty-icon svg { width: 28px; height: 28px; }
.specialty-card h3 { margin: 26px 0 10px; font: 600 1.65rem/1 "Cormorant Garamond", Georgia, serif; }
.specialty-card p { color: var(--muted); font-size: .8rem; margin: 0; }

.process-section { background: #0b0b0b; border-block: 1px solid var(--line-white); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-copy { position: sticky; top: 145px; }
.process-copy .btn { margin-top: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line-white); }
.process-list li:first-child { border-top: 1px solid var(--line-white); }
.process-list > li > span { color: var(--gold-light); font: 600 1.25rem/1 "Cormorant Garamond", Georgia, serif; }
.process-list h3 { margin: -5px 0 7px; font: 600 1.55rem/1 "Cormorant Garamond", Georgia, serif; }
.process-list p { color: var(--muted); margin: 0; font-size: .82rem; }

.reviews-layout { display: grid; grid-template-columns: .35fr .65fr; gap: 55px; align-items: start; }
.rating-summary { padding: 36px; border-radius: var(--radius); background: linear-gradient(145deg, rgba(201,155,82,.10), rgba(255,255,255,.02)); border: 1px solid var(--line); }
.rating-summary h2 { font: 600 6rem/.9 "Cormorant Garamond", Georgia, serif; margin: 18px 0 8px; }
.rating-summary h2 small { color: var(--muted); font-size: 1.2rem; }
.stars { color: var(--gold-light); letter-spacing: .12em; font-size: 1.1rem; }
.stars span { color: #48433c; }
.rating-summary p { color: var(--muted); font-size: .78rem; margin: 12px 0 24px; }
.review-cards { display: grid; gap: 14px; }
.review-card { padding: 26px; border: 1px solid var(--line-white); border-radius: 18px; background: var(--card); }
.review-top { display: flex; align-items: center; gap: 12px; }
.avatar-letter { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,155,82,.13); color: var(--gold-light); font-weight: 700; }
.review-top strong, .review-top span { display: block; }
.review-top strong { font-size: .84rem; }
.review-top span { color: var(--muted); font-size: .67rem; }
.stars.small { font-size: .76rem; margin-top: 18px; }
.review-card blockquote { margin: 13px 0 0; font: 500 1.5rem/1.3 "Cormorant Garamond", Georgia, serif; }
.review-muted { margin: 12px 0 0; color: var(--muted); font-size: .76rem; }

.contact-section { padding-bottom: 90px; }
.contact-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; padding: 28px; border-radius: 28px; border: 1px solid var(--line-white); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.contact-copy { padding: 32px 20px 32px 20px; }
.contact-copy h2 { font-size: clamp(3rem, 5vw, 4.5rem); }
.contact-list { display: grid; gap: 14px; margin: 30px 0; }
.contact-list a { display: flex; align-items: flex-start; gap: 14px; padding: 13px; border-radius: 14px; transition: .25s ease; }
.contact-list a:hover { background: rgba(201,155,82,.07); }
.contact-list svg { width: 22px; height: 22px; color: var(--gold-light); margin-top: 4px; }
.contact-list span { font-size: .82rem; color: #d8d2c8; }
.contact-list small { display: block; color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 2px; }
.map-wrap { min-height: 570px; border-radius: 20px; overflow: hidden; position: relative; background: #111; }
.map-wrap::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: rgba(7,7,7,.35); mix-blend-mode: multiply; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.93) contrast(.85); }
.map-overlay { position: absolute; z-index: 2; left: 24px; bottom: 24px; max-width: 310px; padding: 18px; border-radius: 14px; background: rgba(9,9,9,.86); border: 1px solid var(--line); backdrop-filter: blur(15px); }
.map-overlay strong, .map-overlay span, .map-overlay a { display: block; }
.map-overlay strong { font: 600 1.2rem/1 "Cormorant Garamond", Georgia, serif; }
.map-overlay span { color: var(--muted); font-size: .7rem; margin: 6px 0 11px; }
.map-overlay a { color: var(--gold-light); font-size: .72rem; }

.site-footer { border-top: 1px solid var(--line-white); padding: 65px 0 22px; background: #060606; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child > p, .footer-grid > div:last-child p { color: var(--muted); font-size: .74rem; max-width: 220px; }
.footer-grid h3 { color: var(--gold-light); font-size: .68rem; text-transform: uppercase; letter-spacing: .17em; margin: 0 0 17px; }
.footer-grid > div:not(:first-child) > a { display: block; color: #c8c2b8; font-size: .76rem; margin: 7px 0; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 20px; border-top: 1px solid var(--line-white); color: #77716a; font-size: .65rem; }
.footer-bottom a { color: var(--gold-light); }

.floating-whatsapp, .back-to-top { position: fixed; z-index: 80; bottom: 24px; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 15px 35px rgba(0,0,0,.35); transition: .3s ease; }
.floating-whatsapp { right: 24px; background: #25d366; color: #fff; }
.floating-whatsapp svg { width: 25px; height: 25px; stroke-width: 1.9; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.back-to-top { right: 84px; border: 1px solid var(--line); color: var(--gold-light); background: rgba(12,12,12,.9); opacity: 0; visibility: hidden; transform: translateY(10px); cursor: pointer; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold-light); }

.lightbox { position: fixed; z-index: 120; inset: 0; display: grid; place-items: center; padding: 45px; background: rgba(0,0,0,.93); backdrop-filter: blur(15px); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(100%, 980px); max-height: 88vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.65); }
.lightbox-close { position: absolute; right: 24px; top: 18px; width: 48px; height: 48px; border: 1px solid var(--line-white); border-radius: 50%; color: #fff; background: rgba(255,255,255,.05); font-size: 1.7rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (pointer:fine) {
  body, a, button { cursor: none; }
  .cursor-ring { position: fixed; left: 0; top: 0; width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 1px solid rgba(235,199,125,.65); border-radius: 50%; pointer-events: none; z-index: 200; transition: width .18s ease, height .18s ease, margin .18s ease, background .18s ease; }
  .cursor-ring span { position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; margin: -2px; border-radius: 50%; background: var(--gold-light); }
  .cursor-ring.hover { width: 54px; height: 54px; margin: -27px 0 0 -27px; background: rgba(201,155,82,.09); }
}

@media (max-width: 1050px) {
  .header-actions .instagram { display: none; }
  .main-nav { gap: 20px; }
  .hero-grid { gap: 50px; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-layout { grid-template-columns: .42fr .58fr; }
}

@media (max-width: 860px) {
  .section { padding: 88px 0; }
  .site-header { background: rgba(8,8,8,.88); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line-white); }
  .nav-wrap { height: 76px; }
  .brand { min-width: 176px; gap: 9px; }
  .brand-photo { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-copy > span { font-size: 1.55rem; }
  .brand-copy small { font-size: .55rem; }
  .menu-toggle { display: block; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .main-nav { position: fixed; top: 76px; left: 16px; right: 16px; display: grid; gap: 0; padding: 10px; border: 1px solid var(--line-white); border-radius: 18px; background: rgba(14,14,14,.98); box-shadow: 0 25px 70px rgba(0,0,0,.55); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 15px 14px; border-radius: 10px; }
  .main-nav a:hover, .main-nav a.active { background: rgba(201,155,82,.08); }
  .main-nav a::after { display: none; }
  .header-actions { margin-left: 0; }
  .header-actions .whatsapp span { display: none; }
  .header-actions .whatsapp { width: 42px; padding: 0; justify-content: center; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-text { margin-inline: auto; }
  .hero-info { max-width: 590px; margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 500px; order: 2; }
  .portrait-frame { max-width: 440px; }
  .hero-strip { margin-top: 45px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .work-card.wide { grid-column: span 1; }
  .process-grid, .contact-card, .reviews-layout { grid-template-columns: 1fr; }
  .process-copy { position: static; }
  .map-wrap { min-height: 460px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section { padding: 72px 0; }
  .section-heading h2, .process-copy h2, .contact-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -.025em;
    text-wrap: balance;
    overflow-wrap: normal;
  }
  .header-actions { display: none; }
  .brand { min-width: 0; }
  .brand-photo { width: 38px; height: 38px; flex-basis: 38px; }
  .brand-copy > span { font-size: 1.4rem; }
  .brand-copy small { margin-left: 23px; font-size: .5rem; }
  .hero { padding-top: 112px; }
  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 4.25rem);
    line-height: .9;
    letter-spacing: -.045em;
    text-wrap: balance;
  }
  .hero h1 em { display: inline-block; line-height: 1; }
  .hero-specialty { font-size: .88rem; }
  .hero-info { grid-template-columns: 1fr; padding: 0 8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 440px; }
  .portrait-frame { width: calc(100% - 28px); max-height: 480px; }
  .floating-card { padding: 11px 13px; }
  .card-one { left: 0; }
  .card-two { right: 0; }
  .hero-strip { grid-template-columns: 1fr; gap: 12px; }
  .hero-strip div { justify-content: space-between; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; gap: 9px; }
  .work-card.tall { grid-row: span 1; }
  .work-card > span { left: 12px; right: 12px; bottom: 12px; }
  .work-card small { display: none; }
  .portfolio-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .portfolio-actions .btn { width: 100%; }
  .specialties-grid { grid-template-columns: 1fr; }
  .specialty-card { min-height: 0; }
  .process-list li { grid-template-columns: 50px 1fr; gap: 12px; }
  .rating-summary { padding: 28px; }
  .rating-summary h2 { font-size: clamp(4.3rem, 20vw, 5.25rem); line-height: 1; }
  .review-card blockquote { line-height: 1.25; }
  .contact-card { padding: 12px; }
  .contact-copy { padding: 24px 10px 18px; }
  .map-wrap { min-height: 380px; }
  .map-overlay { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 16px; bottom: 16px; }
  .back-to-top { right: 74px; bottom: 16px; }
  .lightbox { padding: 16px; }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(3.15rem, 16.5vw, 3.75rem);
    line-height: .94;
  }
  .section-heading h2, .process-copy h2, .contact-copy h2 {
    font-size: clamp(2.35rem, 12vw, 2.8rem);
    line-height: 1.06;
  }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .process-copy h2, .contact-copy h2 { margin-bottom: 14px; }
  .specialty-card h3, .process-list h3 { line-height: 1.12; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
