:root {
  --gold: #c98f2c;
  --gold-dark: #a56f19;
  --gold-soft: #f6ead8;
  --champagne: #f8f3ea;
  --cream: #fffaf3;
  --stone: #e8dfd0;
  --graphite: #252321;
  --body: #494641;
  --muted: #777067;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 16px 40px rgba(68, 46, 19, .10);
  --shadow-soft: 0 8px 22px rgba(68, 46, 19, .07);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--graphite);
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 243, .94);
  border-bottom: 1px solid rgba(201, 143, 44, .18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--graphite);
  font-size: .95rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--graphite);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #d99d36, var(--gold-dark));
  box-shadow: 0 10px 24px rgba(165, 111, 25, .26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 14px 30px rgba(165, 111, 25, .34);
}

.btn-secondary {
  color: var(--graphite);
  background: rgba(255, 255, 255, .86);
  border-color: rgba(165, 111, 25, .34);
}

.btn-large {
  min-height: 54px;
  padding: 15px 20px;
}

.section-band {
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(255, 250, 243, .92) 42%, rgba(255, 250, 243, .12) 66%),
    radial-gradient(circle at 18% 20%, rgba(201, 143, 44, .12), transparent 32%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  min-height: 620px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 36px 66px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  letter-spacing: -.035em;
}

.lead {
  max-width: 560px;
  margin-top: 20px;
  color: var(--graphite);
  font-size: 1.1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  min-width: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.trust-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 150px;
}

.trust-strip .line-icon {
  grid-row: span 2;
}

.trust-strip strong {
  color: var(--graphite);
  font-size: .92rem;
}

.trust-strip small {
  color: var(--muted);
  font-size: .86rem;
}

.hero-media {
  position: relative;
  min-height: 560px;
  margin: 0 calc((100vw - min(calc(100vw - 40px), var(--max))) / -2) 0 0;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(255, 250, 243, .72) 18%, rgba(255, 250, 243, 0) 42%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.confidence {
  padding: 18px 0 54px;
  background: var(--champagne);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini-card,
.service-card,
.step-card,
.zone-card,
.cta-card {
  border: 1px solid rgba(201, 143, 44, .17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  padding: 24px;
}

.mini-card h2 {
  margin-top: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.mini-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
}

.section-pad {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -.02em;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 235px;
  padding: 26px;
  background:
    linear-gradient(140deg, rgba(246, 234, 216, .72), rgba(255, 255, 255, .96) 42%),
    var(--white);
}

.service-card.wide {
  grid-column: span 2;
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-weight: 800;
  font-size: .85rem;
}

.service-card h3,
.step-card h3 {
  font-size: 1.12rem;
}

.service-card p,
.step-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .96rem;
}

.work {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: var(--shadow-soft);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.tall img {
  object-position: 52% 46%;
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 35, 33, .62);
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.audience {
  padding: 52px 0;
  background: var(--champagne);
  border-block: 1px solid rgba(201, 143, 44, .12);
}

.audience h2 {
  margin-bottom: 28px;
  text-align: center;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border-left: 1px solid rgba(201, 143, 44, .18);
  color: var(--graphite);
  font-weight: 700;
  font-size: .92rem;
}

.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 26px 22px 24px;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(165, 111, 25, .24);
}

.step-card .feature-icon {
  margin: 12px 0 18px;
}

.zones {
  background: var(--white);
}

.zones-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.zones h2 {
  max-width: 460px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.zones p {
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.02rem;
}

.zones .strong {
  color: var(--graphite);
  font-weight: 800;
}

.zone-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
}

.zone-card ul {
  margin: 0;
  padding: 26px;
  list-style: none;
  border-right: 1px solid rgba(201, 143, 44, .16);
}

.zone-card li {
  position: relative;
  padding-left: 24px;
  color: var(--graphite);
  font-weight: 700;
}

.zone-card li + li {
  margin-top: 14px;
}

.zone-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(36deg, transparent 0 48%, rgba(201, 143, 44, .12) 48% 50%, transparent 50%),
    linear-gradient(128deg, transparent 0 42%, rgba(37, 35, 33, .08) 42% 44%, transparent 44%),
    radial-gradient(circle at 70% 22%, rgba(201, 143, 44, .12), transparent 22%),
    #f7f1e7;
  color: var(--graphite);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.map-pin {
  position: absolute;
  top: 82px;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 12px 24px rgba(165, 111, 25, .25);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--white);
}

.final-cta {
  padding: 52px 0;
  background: var(--champagne);
}

.cta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(37, 211, 102, .12), transparent 20%),
    linear-gradient(120deg, var(--white), #fbf2e4);
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-card p {
  margin-top: 10px;
  color: var(--graphite);
}

.phone-visual {
  width: 88px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 8px solid var(--graphite);
  border-radius: 22px;
  background: var(--white);
  transform: rotate(-10deg);
  box-shadow: var(--shadow-soft);
}

.phone-visual .icon {
  width: 42px;
  height: 42px;
  background: var(--whatsapp);
}

.site-footer {
  padding: 36px 0;
  background: var(--cream);
  border-top: 1px solid rgba(201, 143, 44, .18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 10px;
}

.site-footer p,
.footer-services strong {
  color: var(--graphite);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-contact a,
.footer-contact span,
.footer-services span,
.legal-links a {
  color: var(--body);
  font-size: .92rem;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-services,
.legal-links {
  display: grid;
  gap: 8px;
}

.legal-links a:hover,
.footer-contact a:hover {
  color: var(--gold-dark);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 28;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .36);
}

.floating-whatsapp .icon {
  width: 32px;
  height: 32px;
  background: var(--white);
}

.icon,
.line-icon,
.feature-icon {
  display: inline-block;
  flex: none;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon {
  width: 20px;
  height: 20px;
}

.line-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.feature-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
}

.whatsapp-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9.4 3 4 8.3 4 14.9c0 2.4.7 4.6 1.9 6.5L4 29l7-1.8c1.8 1 3.8 1.5 5.9 1.5 6.6 0 12-5.3 12-11.9C28.9 8.3 23.6 3 16 3zm0 21.7c-1.9 0-3.7-.5-5.3-1.4l-.4-.2-3.9 1 1-3.8-.3-.4a9.6 9.6 0 0 1-1.5-5.1c0-5.4 4.5-9.8 10-9.8s9.9 4.4 9.9 9.8-4.5 9.9-9.5 9.9zm5.5-7.4c-.3-.2-1.8-.9-2-1-.3-.1-.5-.2-.7.2s-.8 1-.9 1.2c-.2.2-.3.2-.6.1-1.8-.9-3-1.6-4.2-3.6-.3-.5.3-.5.9-1.6.1-.2 0-.4 0-.5 0-.2-.7-1.7-1-2.3-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.3 3.5 5.6 4.9 2.1.9 2.9.9 3.9.8.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.2-.3-.2-.6-.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9.4 3 4 8.3 4 14.9c0 2.4.7 4.6 1.9 6.5L4 29l7-1.8c1.8 1 3.8 1.5 5.9 1.5 6.6 0 12-5.3 12-11.9C28.9 8.3 23.6 3 16 3zm0 21.7c-1.9 0-3.7-.5-5.3-1.4l-.4-.2-3.9 1 1-3.8-.3-.4a9.6 9.6 0 0 1-1.5-5.1c0-5.4 4.5-9.8 10-9.8s9.9 4.4 9.9 9.8-4.5 9.9-9.5 9.9zm5.5-7.4c-.3-.2-1.8-.9-2-1-.3-.1-.5-.2-.7.2s-.8 1-.9 1.2c-.2.2-.3.2-.6.1-1.8-.9-3-1.6-4.2-3.6-.3-.5.3-.5.9-1.6.1-.2 0-.4 0-.5 0-.2-.7-1.7-1-2.3-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.3 3.5 5.6 4.9 2.1.9 2.9.9 3.9.8.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.2-.3-.2-.6-.4z'/%3E%3C/svg%3E");
}

.phone-icon,
.phone-line-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.4 2.7 3.6 4.9 6.3 6.3l2.1-2.1c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2V20c0 .7-.5 1.2-1.2 1.2C10.5 21.2 2.8 13.5 2.8 3.8c0-.7.5-1.2 1.2-1.2h3.6c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.8.6 4 .1.4 0 .8-.3 1.2l-2.5 1.8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.4 2.7 3.6 4.9 6.3 6.3l2.1-2.1c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2V20c0 .7-.5 1.2-1.2 1.2C10.5 21.2 2.8 13.5 2.8 3.8c0-.7.5-1.2 1.2-1.2h3.6c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.8.6 4 .1.4 0 .8-.3 1.2l-2.5 1.8z'/%3E%3C/svg%3E");
}

.pin-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a8 8 0 0 0-8 8c0 5.2 8 12 8 12s8-6.8 8-12a8 8 0 0 0-8-8zm0 11.2A3.2 3.2 0 1 1 12 6.8a3.2 3.2 0 0 1 0 6.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a8 8 0 0 0-8 8c0 5.2 8 12 8 12s8-6.8 8-12a8 8 0 0 0-8-8zm0 11.2A3.2 3.2 0 1 1 12 6.8a3.2 3.2 0 0 1 0 6.4z'/%3E%3C/svg%3E");
}

.user-icon,
.group-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.4 0-8 2.2-8 5v2h16v-2c0-2.8-3.6-5-8-5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.4 0-8 2.2-8 5v2h16v-2c0-2.8-3.6-5-8-5z'/%3E%3C/svg%3E");
}

.doc-icon,
.budget-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h9l5 5v15H6V2zm8 1.5V8h4.5M8.5 12h7v2h-7v-2zm0 4h7v2h-7v-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h9l5 5v15H6V2zm8 1.5V8h4.5M8.5 12h7v2h-7v-2zm0 4h7v2h-7v-2z'/%3E%3C/svg%3E");
}

.diamond-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h36l10 16-28 34L4 24 14 8zm4 6-6 10h12l4-10H18zm18 0 4 10h12l-6-10H36zm-8 0-4 10h16l-4-10h-8zm-14 16 14 18-5-18H14zm17 0 1 18 1-18h-2zm10 0-5 18 14-18H41z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h36l10 16-28 34L4 24 14 8zm4 6-6 10h12l4-10H18zm18 0 4 10h12l-6-10H36zm-8 0-4 10h16l-4-10h-8zm-14 16 14 18-5-18H14zm17 0 1 18 1-18h-2zm10 0-5 18 14-18H41z'/%3E%3C/svg%3E");
}

.sparkle-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 4l6 18 18 6-18 6-6 18-6-18-18-6 18-6 6-18zm21 36 3 8 8 3-8 3-3 8-3-8-8-3 8-3 3-8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 4l6 18 18 6-18 6-6 18-6-18-18-6 18-6 6-18zm21 36 3 8 8 3-8 3-3 8-3-8-8-3 8-3 3-8z'/%3E%3C/svg%3E");
}

.building-icon,
.building-icon-line,
.company-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 58V14l24-8v52h20V24l-20-8v-6l26 10v38h4v4H0v-4h10zm8-35h7v7h-7v-7zm0 13h7v7h-7v-7zm0 13h7v7h-7v-7zm22-17h6v6h-6v-6zm0 11h6v6h-6v-6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 58V14l24-8v52h20V24l-20-8v-6l26 10v38h4v4H0v-4h10zm8-35h7v7h-7v-7zm0 13h7v7h-7v-7zm0 13h7v7h-7v-7zm22-17h6v6h-6v-6zm0 11h6v6h-6v-6z'/%3E%3C/svg%3E");
}

.whatsapp-outline-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9.4 3 4 8.3 4 14.9c0 2.4.7 4.6 1.9 6.5L4 29l7-1.8c1.8 1 3.8 1.5 5.9 1.5 6.6 0 12-5.3 12-11.9C28.9 8.3 23.6 3 16 3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9.4 3 4 8.3 4 14.9c0 2.4.7 4.6 1.9 6.5L4 29l7-1.8c1.8 1 3.8 1.5 5.9 1.5 6.6 0 12-5.3 12-11.9C28.9 8.3 23.6 3 16 3z'/%3E%3C/svg%3E");
}

.search-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 3a7.5 7.5 0 0 1 5.9 12.1l4.2 4.2-1.4 1.4-4.2-4.2A7.5 7.5 0 1 1 10.5 3zm0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 3a7.5 7.5 0 0 1 5.9 12.1l4.2 4.2-1.4 1.4-4.2-4.2A7.5 7.5 0 1 1 10.5 3zm0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11z'/%3E%3C/svg%3E");
}

.home-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 2 11h3v10h6v-6h2v6h6V11h3L12 3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 2 11h3v10h6v-6h2v6h6V11h3L12 3z'/%3E%3C/svg%3E");
}

.shop-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16l2 7a4 4 0 0 1-6 3.5 4 4 0 0 1-6 0A4 4 0 0 1 4 11l2-7zm2 11v6h12v-6a5.7 5.7 0 0 1-2-.8 6 6 0 0 1-8 0 5.7 5.7 0 0 1-2 .8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16l2 7a4 4 0 0 1-6 3.5 4 4 0 0 1-6 0A4 4 0 0 1 4 11l2-7zm2 11v6h12v-6a5.7 5.7 0 0 1-2-.8 6 6 0 0 1-8 0 5.7 5.7 0 0 1-2 .8z'/%3E%3C/svg%3E");
}

.cup-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9h12v4a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5V9zm12 2h2a2 2 0 0 1 0 4h-2v-4zM7 3h2v4H7V3zm4 0h2v4h-2V3zM3 20h16v2H3v-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9h12v4a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5V9zm12 2h2a2 2 0 0 1 0 4h-2v-4zM7 3h2v4H7V3zm4 0h2v4h-2V3zM3 20h16v2H3v-2z'/%3E%3C/svg%3E");
}

.briefcase-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4h6l1 3h5v13H3V7h5l1-3zm1.5 3h3L13 6h-2l-.5 1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4h6l1 3h5v13H3V7h5l1-3zm1.5 3h3L13 6h-2l-.5 1z'/%3E%3C/svg%3E");
}

.tools-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 6-5 5-3-3 5-5a6 6 0 0 0-7.7 7.7L3 18v3h3l7.3-7.3A6 6 0 0 0 21 6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 6-5 5-3-3 5-5a6 6 0 0 0-7.7 7.7L3 18v3h3l7.3-7.3A6 6 0 0 0 21 6z'/%3E%3C/svg%3E");
}

.mail-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5h20v14H2V5zm2 3v9h16V8l-8 5L4 8zm1.8-1 6.2 3.9L18.2 7H5.8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5h20v14H2V5zm2 3v9h16V8l-8 5L4 8zm1.8-1 6.2 3.9L18.2 7H5.8z'/%3E%3C/svg%3E");
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 16px;
    border: 1px solid rgba(201, 143, 44, .2);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 58px 0 26px;
  }

  .hero-media {
    min-height: 460px;
    margin: 0 0 42px;
    border-radius: var(--radius);
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255, 250, 243, .42), rgba(255, 250, 243, 0) 32%);
  }

  .confidence-grid,
  .services-grid,
  .process-grid,
  .audience-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .zones-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 122px;
  }

  .main-nav {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .section-band {
    background: var(--cream);
  }

  .hero-copy {
    padding: 42px 0 22px;
  }

  .hero h1 {
    font-size: clamp(2.12rem, 9.8vw, 3.05rem);
    line-height: 1.06;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 14px;
    font-size: .94rem;
    white-space: normal;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-media {
    min-height: 390px;
    margin-bottom: 28px;
  }

  .hero-media img {
    object-position: 50% 35%;
  }

  .confidence {
    padding: 14px 0 42px;
  }

  .confidence-grid,
  .services-grid,
  .process-grid,
  .audience-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 58px 0;
  }

  .service-card,
  .service-card.wide {
    min-height: auto;
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .audience-grid span {
    border-left: 0;
    border-bottom: 1px solid rgba(201, 143, 44, .16);
  }

  .zone-card {
    grid-template-columns: 1fr;
  }

  .zone-card ul {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 143, 44, .16);
  }

  .map-visual {
    min-height: 230px;
  }

  .cta-card {
    padding: 22px;
  }

  .phone-visual {
    width: 70px;
    height: 94px;
    border-width: 6px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 430px) {
  .hero-media {
    min-height: 330px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
  }

  .gallery-item:first-child {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
