@font-face { font-family: "Manrope"; src: url("../fonts/manrope-400.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-500.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-600.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-700.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-800.ttf") format("truetype"); font-weight: 800; font-display: swap; }

:root {
  --ink: #0b1f33;
  --ink-soft: #163a59;
  --blue: #1098d6;
  --blue-dark: #0875ab;
  --cyan: #75d8f4;
  --ice: #edf9fd;
  --paper: #f8f6f1;
  --white: #ffffff;
  --muted: #60758a;
  --line: rgba(11, 31, 51, 0.12);
  --success: #16846f;
  --shadow: 0 24px 80px rgba(7, 35, 57, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .34;
  background-image: radial-gradient(rgba(11,31,51,.08) .65px, transparent .65px);
  background-size: 8px 8px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 68px 0; }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ice { background: var(--ice); }

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bg-ink .eyebrow { color: var(--cyan); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(3.2rem, 7vw, 7.2rem); font-weight: 820; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.7rem); font-weight: 790; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.lead { color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.65; }
.bg-ink .lead { color: rgba(255,255,255,.72); }
.accent { color: var(--blue); }

.announcement {
  background: var(--ink);
  color: var(--white);
  font-size: .82rem;
  text-align: center;
  padding: 9px 20px;
}
.announcement strong { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(248,246,241,.88);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { min-height: 44px; display: flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { width: 154px; height: auto; mix-blend-mode: multiply; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: none;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}
.nav-links { display: flex; align-items: center; gap: 25px; font-size: .9rem; font-weight: 650; }
.nav-links a { min-height: 44px; display: flex; align-items: center; transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions { min-width: 164px; justify-content: flex-end; }
.nav-actions > .btn { min-width: 148px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: .92rem;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--blue-dark); box-shadow: 0 12px 30px rgba(8,117,171,.23); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-light { background: var(--white); color: var(--ink); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.btn-outline { border-color: var(--line); background: transparent; }
.bg-ink .btn-outline { border-color: rgba(255,255,255,.2); color: var(--white); }
.btn-small { min-height: 44px; padding: 9px 16px; font-size: .82rem; }

.hero { min-height: calc(100vh - 116px); display: grid; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 68px; align-items: center; padding: 70px 0 84px; }
.hero h1 { max-width: 820px; margin-bottom: 28px; }
.hero-copy .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 42px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stat strong { display: block; font-size: 1.15rem; }
.hero-stat span { color: var(--muted); font-size: .82rem; }
.hero-visual { position: relative; min-height: 620px; }
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 180px 180px 22px 22px;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.8); }
.hero-photo.main { inset: 0 76px 70px 0; }
.hero-photo.secondary { width: 230px; height: 310px; right: 0; bottom: 0; border-radius: 120px 120px 18px 18px; border: 9px solid var(--paper); }
.hero-chip {
  position: absolute;
  left: -34px;
  bottom: 105px;
  max-width: 230px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: .84rem;
}
.hero-chip strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb.one { width: 150px; height: 150px; right: -45px; top: 40px; background: var(--cyan); opacity: .45; }
.orb.two { width: 80px; height: 80px; left: -20px; top: 88px; border: 18px solid var(--blue); opacity: .15; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; margin-bottom: 4px; }
.trust-item span { color: var(--muted); font-size: .86rem; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 760px; }
.section-head .lead { max-width: 440px; margin-bottom: 3px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { grid-column: span 2; color: var(--white); background: var(--ink); }
.service-card .number { color: var(--blue); font-size: .78rem; font-weight: 800; }
.service-card h3 { margin-top: 90px; margin-bottom: 14px; }
.service-card p { max-width: 440px; color: var(--muted); margin-bottom: 0; }
.service-card.featured p { color: rgba(255,255,255,.68); }
.card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ice);
  transition: transform .25s ease;
}
.service-card.featured .card-arrow { background: rgba(255,255,255,.1); }
.service-card:hover .card-arrow { transform: rotate(45deg); }

.wholesale-panel {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 64px;
  color: var(--white);
  background: var(--ink);
}
.wholesale-panel::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,216,244,.65), transparent 68%);
}
.wholesale-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .86fr; gap: 80px; align-items: center; }
.wholesale-panel h2 { margin-bottom: 22px; }
.wholesale-panel .lead { color: rgba(255,255,255,.72); }
.check-list { display: grid; gap: 14px; margin: 30px 0 38px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before { content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--cyan); font-size: .75rem; font-weight: 900; }
.wholesale-metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.metric-card { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.metric-card strong { display: block; font-size: 1.85rem; color: var(--cyan); }
.metric-card span { color: rgba(255,255,255,.65); font-size: .82rem; }

.portfolio-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 300px 260px; gap: 14px; }
.portfolio-card { position: relative; overflow: hidden; border-radius: 20px; background: #dbe5ea; }
.portfolio-card:first-child { grid-row: span 2; }
.portfolio-card:nth-child(4) { grid-column: span 2; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.portfolio-card:first-child img { transform: scale(1.45); }
.portfolio-card:nth-child(2) img, .portfolio-card:nth-child(3) img { transform: scale(2); }
.portfolio-card:hover img { transform: scale(1.58); }
.portfolio-card:nth-child(2):hover img, .portfolio-card:nth-child(3):hover img { transform: scale(2.12); }
.portfolio-label { position: absolute; left: 18px; bottom: 18px; padding: 8px 13px; border-radius: 999px; color: var(--white); background: rgba(11,31,51,.75); backdrop-filter: blur(9px); font-size: .75rem; font-weight: 750; }
.abstract-print { width: 100%; height: 100%; background: linear-gradient(135deg, #bfeaf6, #118fc7 42%, #0b1f33 42% 70%, #f8f6f1 70%); }

.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.product-card { padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.product-image { height: 270px; display: grid; place-items: center; overflow: hidden; border-radius: 14px; background: #f2f3f3; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-meta { padding: 18px 6px 6px; }
.product-meta h3 { font-size: 1.05rem; margin-bottom: 7px; }
.product-category { color: var(--muted); font-size: .76rem; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 18px; }
.price { font-weight: 820; }

.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.review-card { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.05); }
.stars { color: #ffd45a; letter-spacing: .12em; }
.review-card blockquote { margin: 24px 0; font-size: 1.08rem; }
.review-card footer { color: rgba(255,255,255,.6); font-size: .84rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-list { display: grid; gap: 12px; margin-top: 32px; }
.contact-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; color: var(--muted); font-size: .76rem; margin-bottom: 3px; }
.contact-item strong { font-size: 1.08rem; }
.map-card { min-height: 460px; overflow: hidden; border-radius: 28px; background: var(--ink); color: var(--white); padding: 44px; position: relative; }
.map-card::before { content: ""; position: absolute; inset: 0; opacity: .22; background: linear-gradient(28deg, transparent 45%, #75d8f4 45% 46%, transparent 46%), linear-gradient(112deg, transparent 55%, #1098d6 55% 56%, transparent 56%); background-size: 110px 110px, 170px 170px; }
.map-pin { position: absolute; top: 45%; left: 53%; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--blue); box-shadow: 0 0 0 12px rgba(117,216,244,.15); }
.map-pin span { transform: rotate(45deg); font-weight: 900; }
.map-card-content { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 34px; padding: 22px; border-radius: 18px; background: rgba(11,31,51,.78); backdrop-filter: blur(14px); }

.page-hero { padding: 90px 0 70px; background: var(--ink); color: var(--white); }
.page-hero h1 { max-width: 930px; font-size: clamp(3rem, 7vw, 6.7rem); margin-bottom: 22px; }
.page-hero .lead { max-width: 730px; color: rgba(255,255,255,.7); }
.breadcrumbs { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.55); font-size: .78rem; margin-bottom: 52px; }
.breadcrumbs a { min-height: 44px; display: flex; align-items: center; }

.quote-layout { display: grid; grid-template-columns: 1.06fr .94fr; gap: 28px; align-items: start; }
.quote-form, .quote-summary { border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: 0 18px 60px rgba(11,31,51,.08); }
.quote-form { padding: 34px; }
.quote-summary { position: sticky; top: 112px; padding: 32px; }
.form-step { padding: 24px 0; border-bottom: 1px solid var(--line); }
.form-step:first-child { padding-top: 0; }
.form-step:last-child { border-bottom: 0; }
.step-title { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step-number { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); font-size: .76rem; font-weight: 850; }
.option-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.option-input { position: absolute; opacity: 0; pointer-events: none; }
.option-label { display: block; min-height: 72px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; text-align: center; font-size: .88rem; font-weight: 720; background: var(--white); transition: border .2s, background .2s; }
.option-label small { display: block; color: var(--muted); font-weight: 500; margin-top: 3px; }
.option-input:checked + .option-label { border-color: var(--blue); background: var(--ice); box-shadow: inset 0 0 0 1px var(--blue); }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .78rem; font-weight: 730; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(16,152,214,.12); }
.upload-box { border: 1.5px dashed rgba(8,117,171,.35); border-radius: 18px; padding: 30px; text-align: center; background: var(--ice); }
.upload-box input { width: min(100%, 330px); }
.upload-box input[type="file"] { min-height: 44px; }
.upload-icon { width: 54px; height: 54px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: var(--white); font-size: 1.5rem; }
.summary-list { display: grid; gap: 14px; padding: 22px 0; margin: 0; border-block: 1px solid var(--line); list-style: none; }
.summary-list li { display: flex; justify-content: space-between; gap: 18px; }
.summary-list span { color: var(--muted); }
.quote-callout { margin: 22px 0; padding: 18px; border-radius: 14px; background: var(--ice); }
.quote-callout strong { display: block; margin-bottom: 4px; }
.full { width: 100%; }
.notice { color: var(--muted); font-size: .75rem; margin-top: 12px; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.process-step { min-height: 280px; padding: 26px 22px; border-right: 1px solid rgba(255,255,255,.12); }
.process-step:last-child { border-right: 0; }
.process-step .number { color: var(--cyan); font-size: .76rem; font-weight: 800; }
.process-step h3 { margin: 78px 0 14px; font-size: 1.08rem; }
.process-step p { color: rgba(255,255,255,.58); font-size: .84rem; }

.faq-list { display: grid; gap: 10px; max-width: 900px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; text-align: left; font-weight: 750; }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.site-footer { padding: 70px 0 28px; background: #071725; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr .75fr; gap: 50px; }
.footer-brand img { width: 190px; opacity: .9; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.62); margin-top: 22px; }
.footer-col h3 { font-size: .9rem; margin-bottom: 18px; }
.footer-col a { min-height: 44px; display: flex; align-items: center; color: rgba(255,255,255,.62); font-size: .86rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.46); font-size: .76rem; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: #1dbf73; box-shadow: 0 14px 34px rgba(29,191,115,.32); font-size: 1.35rem; font-weight: 900; }
.toast { position: fixed; z-index: 80; left: 50%; bottom: 24px; transform: translate(-50%, 120px); padding: 13px 20px; border-radius: 999px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); transition: transform .3s ease; }
.toast.show { transform: translate(-50%, 0); }
.cart-count { min-width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 999px; color: var(--white); background: var(--blue); font-size: .68rem; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 116px 18px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-actions .btn { display: none; }
  .hero-grid, .wholesale-grid, .contact-grid, .quote-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 20px; }
  .hero-visual { min-height: 560px; max-width: 620px; width: 100%; margin: auto; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .quote-summary { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { min-height: 230px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: .72rem; }
  .nav-wrap { height: 72px; }
  .brand img { width: 130px; }
  .nav-links { inset: 106px 14px auto; }
  .section { padding: 76px 0; }
  .section-sm { padding: 50px 0; }
  h1 { font-size: clamp(2.9rem, 16vw, 4.5rem); }
  h2 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .hero-grid { gap: 34px; padding: 48px 0 64px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 18px; }
  .hero-stat { width: calc(50% - 12px); }
  .hero-visual { min-height: 440px; }
  .hero-photo.main { inset: 0 28px 56px 0; }
  .hero-photo.secondary { width: 150px; height: 220px; }
  .hero-chip { left: 6px; bottom: 76px; max-width: 190px; padding: 14px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { display: block; margin-bottom: 34px; }
  .service-grid, .product-grid, .review-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .wholesale-panel { padding: 34px 24px; border-radius: 26px; }
  .wholesale-metric-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 350px 190px 190px; }
  .portfolio-card:first-child { grid-column: span 2; grid-row: auto; }
  .portfolio-card:nth-child(4) { grid-column: span 2; }
  .page-hero { padding: 60px 0 48px; }
  .breadcrumbs { margin-bottom: 34px; }
  .quote-form, .quote-summary { padding: 22px; }
  .option-grid { grid-template-columns: repeat(2,1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 0; padding: 24px 0; border-right: 0; }
  .process-step h3 { margin: 30px 0 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
}

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

/* Photography-first homepage */
.nav-links { gap: 20px; }
.hero-photography {
  position: relative;
  min-height: min(900px, calc(100vh - 116px));
  color: var(--white);
  background: #071725;
}
.hero-backdrop, .hero-shade { position: absolute; inset: 0; }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,17,29,.94) 0%, rgba(4,17,29,.73) 43%, rgba(4,17,29,.14) 78%),
    linear-gradient(0deg, rgba(4,17,29,.58) 0%, transparent 48%);
}
.hero-photography .hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 80px;
  width: min(calc(100% - 40px), 1280px);
  min-height: min(900px, calc(100vh - 116px));
  padding: 82px 0 72px;
  align-items: end;
}
.hero-photography .hero-copy { max-width: 850px; }
.hero-photography h1 { font-size: clamp(3.3rem, 6.4vw, 6.9rem); margin-bottom: 26px; }
.hero-photography .lead { max-width: 700px; color: rgba(255,255,255,.78); }
.hero-photography .eyebrow { color: var(--cyan); }
.hero-photography .accent { color: var(--cyan); }
.btn-ghost-light { border-color: rgba(255,255,255,.36); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }
.hero-photography .hero-stats { border-color: rgba(255,255,255,.2); }
.hero-photography .hero-stat { color: var(--white); }
.hero-photography .hero-stat span { color: rgba(255,255,255,.62); }
.google-stat strong span { color: #ffd45a; font-size: .78rem; letter-spacing: .04em; margin-right: 8px; }
.hero-booking {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: rgba(6,24,39,.6);
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}
.hero-booking-kicker { margin-bottom: 10px; color: var(--cyan); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-booking h2 { font-size: 1.6rem; margin-bottom: 22px; }
.booking-links { display: grid; margin-bottom: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.booking-links a { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .87rem; font-weight: 700; }
.booking-links a b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--cyan); transition: transform .2s ease; }
.booking-links a:hover b { transform: rotate(45deg); }
.hero-booking small { color: rgba(255,255,255,.58); line-height: 1.5; }
.booking-dialog {
  width: min(calc(100% - 32px), 560px);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 32px 100px rgba(0,0,0,.38);
}
.booking-dialog::backdrop { background: rgba(3,14,24,.62); backdrop-filter: blur(8px); }
.booking-dialog[open] { animation: booking-in .24s cubic-bezier(.2,.75,.2,1); }
.booking-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.booking-dialog h2 { max-width: 420px; margin-bottom: 20px; font-size: clamp(1.7rem, 5vw, 2.35rem); }
.booking-dialog .booking-links { margin-bottom: 20px; }
.booking-dialog small { display: block; color: rgba(255,255,255,.56); line-height: 1.55; }
.booking-close { flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.06); font-size: 1.5rem; line-height: 1; }
.booking-close:hover { color: var(--ink); background: var(--cyan); }
@keyframes booking-in { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.service-wedding { isolation: isolate; background-image: linear-gradient(90deg, rgba(7,23,37,.97), rgba(7,23,37,.34)), url("../images/photo-wedding-hero.webp") !important; background-size: cover !important; background-position: center !important; }
.service-grid .service-card:nth-child(1) { order: 1; }
.service-grid .service-card:nth-child(4) { order: 2; }
.service-grid .service-card:nth-child(5) { order: 3; }
.service-grid .service-card:nth-child(2) { order: 4; }
.service-grid .service-card:nth-child(3) { order: 5; }
.service-wedding h3, .service-wedding p, .service-wedding .number, .service-wedding .card-arrow { position: relative; z-index: 1; }
.service-wedding h3 { font-size: clamp(2rem, 4vw, 3.4rem); }
.service-wedding p { max-width: 520px; }

.wholesale-photo { position: relative; min-height: 440px; margin: 0; overflow: hidden; border-radius: 24px; background: rgba(255,255,255,.08); }
.wholesale-photo img { width: 100%; height: 440px; object-fit: cover; }
.wholesale-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,17,29,.92)); }
.wholesale-photo figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; }
.wholesale-photo figcaption strong, .wholesale-photo figcaption span { display: block; }
.wholesale-photo figcaption span { color: rgba(255,255,255,.68); font-size: .83rem; }

.portfolio-card img, .portfolio-card:first-child img, .portfolio-card:nth-child(2) img, .portfolio-card:nth-child(3) img { transform: scale(1.001); }
.portfolio-card:hover img, .portfolio-card:first-child:hover img, .portfolio-card:nth-child(2):hover img, .portfolio-card:nth-child(3):hover img { transform: scale(1.045); }
.portfolio-card:first-child img { object-position: 60% center; }
.portfolio-card:nth-child(2) img { object-position: center 32%; }
.portfolio-card:nth-child(3) img { object-position: center 25%; }
.concept-note { color: rgba(255,255,255,.28); font-size: .68rem; }

.reviews-section { overflow: hidden; }
.google-proof { min-width: 315px; }
.google-proof strong, .google-proof span, .google-proof a { display: block; }
.google-proof strong { color: var(--cyan); font-size: 1.15rem; }
.google-proof span { color: rgba(255,255,255,.62); font-size: .85rem; }
.google-proof a { min-height: 44px; padding-top: 12px; color: var(--white); font-size: .8rem; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.review-carousel { --review-index: 0; }
.review-viewport { overflow: hidden; }
.review-track { display: flex; transform: translateX(calc(var(--review-index) * -100%)); transition: transform .65s cubic-bezier(.22,.75,.22,1); }
.review-card { flex: 0 0 100%; min-height: 320px; display: flex; flex-direction: column; margin-right: 0; padding: 40px; }
.review-top { display: flex; justify-content: space-between; align-items: center; }
.google-badge { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #4285f4; background: var(--white); font-weight: 900; }
.review-card blockquote { flex: 1; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.55; }
.review-card footer strong, .review-card footer span { display: block; }
.review-card footer strong { color: var(--white); font-size: .9rem; }
.review-card footer span { color: rgba(255,255,255,.52); font-size: .76rem; }
.carousel-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.carousel-status { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .76rem; }
.carousel-status .current-slide { color: var(--white); font-weight: 800; }
.carousel-status i { width: 64px; height: 1px; display: block; background: rgba(255,255,255,.25); }
.carousel-buttons { display: flex; gap: 10px; }
.carousel-buttons button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.06); }
.carousel-buttons button:hover { color: var(--ink); background: var(--cyan); }

@media (max-width: 980px) {
  .hero-photography, .hero-photography .hero-grid { min-height: 820px; }
  .hero-photography .hero-grid { grid-template-columns: 1fr; align-content: end; gap: 34px; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,17,29,.91), rgba(4,17,29,.35)), linear-gradient(0deg, rgba(4,17,29,.78), transparent 62%); }
  .hero-booking { width: min(100%, 520px); }
}

@media (max-width: 680px) {
  .hero-photography, .hero-photography .hero-grid { min-height: 780px; }
  .hero-photography .hero-grid { width: min(calc(100% - 28px), 1280px); padding: 68px 0 34px; }
  .hero-backdrop img { object-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,17,29,.96) 0%, rgba(4,17,29,.76) 58%, rgba(4,17,29,.15) 100%); }
  .hero-photography h1 { font-size: clamp(3rem, 14.5vw, 4.5rem); }
  .hero-photography .lead { font-size: 1rem; }
  .hero-booking { display: none; }
  .hero-photography .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-photography .google-stat { grid-column: span 2; }
  .service-wedding h3 { margin-top: 110px; }
  .wholesale-photo { min-height: 290px; }
  .wholesale-photo img { height: 290px; }
  .review-card { min-height: 340px; padding: 26px; }
  .google-proof { min-width: 0; margin-top: 24px; }
  .booking-dialog { padding: 24px; }
}
