:root {
  --ink: #102018;
  --forest: #0d2117;
  --forest-soft: #183b28;
  --leaf: #43a957;
  --leaf-bright: #57c66b;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --sand: #e6c17a;
  --muted: #6d756f;
  --line: rgba(16, 32, 24, .14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 33, 23, .15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-h: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(9, 24, 16, .91);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(9, 24, 16, .98);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.header-inner {
  width: min(calc(100% - 32px), var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 154px;
  height: 58px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.83);
  font-size: .92rem;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--leaf-bright);
  transition: right .2s ease;
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-whatsapp {
  color: #07140c;
  background: var(--leaf-bright);
  box-shadow: 0 12px 28px rgba(56, 169, 80, .24);
}

.button-whatsapp:hover {
  background: #69d87c;
  box-shadow: 0 16px 34px rgba(56, 169, 80, .34);
}

.button-large {
  min-height: 56px;
  padding: 15px 25px;
  font-size: 1rem;
}

.button-light {
  color: var(--forest);
  background: var(--white);
}

.button-light:hover { background: var(--cream); }

.button-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.44);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.header-cta { min-height: 44px; padding: 11px 17px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 18px 16px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: var(--forest);
  box-shadow: 0 20px 30px rgba(0,0,0,.22);
}

.mobile-menu nav {
  width: min(100%, 560px);
  margin: 0 auto;
  display: grid;
}

.mobile-menu nav > a:not(.button) {
  padding: 12px 2px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.11);
  font-weight: 700;
}

.mobile-menu .button { margin-top: 18px; }

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-h) + 72px) 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(67,169,87,.17), transparent 35%),
    linear-gradient(130deg, #07170f 0%, #102a1c 55%, #173d28 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10vw -30vw auto;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.hero-bloom {
  position: absolute;
  border-radius: 56% 44% 62% 38% / 42% 58% 42% 58%;
  border: 1px solid rgba(230,193,122,.25);
  transform: rotate(24deg);
}

.hero-bloom-one {
  width: 220px;
  height: 370px;
  top: 15%;
  left: -94px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(420px, 1.09fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.hero-copy { max-width: 610px; }

.availability {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .81rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.availability span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf-bright);
  box-shadow: 0 0 0 7px rgba(87,198,107,.12);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: .98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.1vw, 4.35rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-points {
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
}

.hero-points li {
  position: relative;
  padding-left: 21px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .67em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--sand);
  border-radius: 50%;
}

.hero-visual { position: relative; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0,0,0,.3);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,23,15,.38), transparent 40%);
  pointer-events: none;
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-seal {
  position: absolute;
  top: 8%;
  left: -48px;
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--forest);
  background: var(--sand);
  border: 7px solid rgba(13,33,23,.74);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  transform: rotate(-7deg);
}

.hero-seal strong {
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 1;
}

.hero-seal span {
  display: block;
  margin-top: 5px;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  right: -22px;
  bottom: 28px;
  max-width: 240px;
  padding: 17px 20px;
  color: var(--forest);
  background: var(--cream);
  font-size: .86rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.section-space { padding: clamp(78px, 9vw, 132px) 0; }

.section-intro,
.services-grid,
.center-cta,
.split-heading,
.occasion-list,
.about-inner,
.faq-inner {
  width: min(calc(100% - 32px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 1180px;
  margin-bottom: 42px;
}

.section-intro h2 { margin-bottom: 0; }

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 180px));
  justify-content: center;
  gap: 24px;
}

.service-card {
  grid-column: span 2;
  width: 100%;
  max-width: 360px;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(13,33,23,.09);
}

.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-card::after {
  content: none;
}

.square-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.square-photo img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.service-card > .square-photo {
  border-radius: 23px 23px 0 0;
}

.service-card > .square-photo img {
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.service-card:hover > .square-photo img { transform: scale(1.045); }

.service-overlay {
  flex: 1;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-align: center;
}

.service-overlay h3 {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 800;
}

.service-overlay p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.service-overlay .button {
  width: 100%;
  margin-top: auto;
  min-height: 46px;
  font-size: .82rem;
  text-transform: uppercase;
}

.center-cta {
  margin-top: 38px;
  text-align: center;
}

.conversion-band {
  position: relative;
  padding: clamp(68px, 8vw, 110px) 0;
  color: var(--white);
  background: var(--forest);
  overflow: hidden;
}

.conversion-band::after {
  content: "";
  position: absolute;
  inset: -80% -10% auto auto;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(230,193,122,.2);
  border-radius: 50%;
}

.conversion-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
}

.conversion-inner h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.conversion-inner p {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}

.split-heading {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.split-heading h2 {
  max-width: 760px;
  margin: 0;
}

.split-heading > svg {
  width: 92px;
  height: 92px;
  color: var(--leaf);
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.occasion-row {
  min-height: 245px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  border: 1px solid rgba(16,32,24,.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(13,33,23,.07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.occasion-row:hover {
  transform: translateY(-5px);
  border-color: rgba(67,169,87,.4);
  box-shadow: 0 22px 52px rgba(13,33,23,.12);
}

.occasion-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--forest);
  border: 1px solid rgba(67,169,87,.32);
  border-radius: 50%;
  background: rgba(87,198,107,.13);
}

.occasion-icon svg {
  width: 27px;
  height: 27px;
}

.occasion-row h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.occasion-row p {
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
}

.delivery {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(9,30,19,.97), rgba(17,59,37,.94)),
    url("/assets/floricultura-mesa-flores.webp") center / cover;
}

.delivery-inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 8vw, 110px);
}

.delivery-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.delivery-copy h2 { max-width: 560px; }

.delivery-cards {
  display: grid;
  gap: 14px;
}

.location-card {
  padding: 25px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}

.location-card > svg {
  width: 34px;
  height: 34px;
  color: var(--leaf-bright);
}

.location-card h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.location-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

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

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.about-copy p { color: #4f5d55; }

.text-link {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--forest);
  font-weight: 900;
  border-bottom: 2px solid var(--leaf);
}

.text-link svg {
  width: 24px;
  height: 24px;
}

.about-visual {
  position: relative;
  width: min(100%, 480px);
  justify-self: end;
}

.about-visual > .square-photo {
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-cta { margin-top: 16px; }

.units { background: var(--paper); }

.units-inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.units-inner > h2 {
  margin-bottom: 14px;
  text-align: center;
}

.units-service-area {
  max-width: 760px;
  margin: 0 auto 42px;
  color: var(--muted);
  text-align: center;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 960px);
  margin: 0 auto;
  gap: 28px;
}

.unit-card {
  width: 100%;
  max-width: 466px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(13,33,23,.1);
}

.unit-card > .square-photo {
  border-radius: 23px 23px 0 0;
}

.unit-content { padding: 28px; }

.unit-content h3 {
  margin-bottom: 22px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
}

.unit-content h3 span {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 9px;
  color: var(--forest);
  border-radius: 999px;
  background: rgba(87,198,107,.18);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.unit-content ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.unit-content li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: var(--muted);
}

.unit-content li svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--leaf);
  fill: none;
}

.unit-content li svg use[href="#icon-whatsapp"] { fill: currentColor; }

.unit-content a {
  color: var(--forest);
  font-weight: 800;
}

.unit-content a:hover { color: var(--leaf); }

.about-note {
  position: absolute;
  left: -44px;
  bottom: 36px;
  padding: 20px 24px;
  display: grid;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.about-note strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.about-note span {
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 700;
}

.faq { background: var(--paper); }

.faq-inner {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 30px);
  align-self: start;
}

.faq-list { border-top: 1px solid var(--line); }

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 86px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details > p {
  max-width: 760px;
  margin: -4px 48px 26px 0;
  color: var(--muted);
}

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 13px;
  height: 1.5px;
  background: var(--forest);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(0deg); }

.contact {
  position: relative;
  min-height: 650px;
  background: var(--forest);
}

.map-wrap {
  position: absolute;
  inset: 0;
}

.map-wrap::after { content: none; }

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.75) contrast(1.05);
}

.contact-card {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  margin-left: max(0px, calc((100vw - var(--container)) / 2));
  padding: 38px;
  color: var(--white);
  background: rgba(9,31,20,.95);
  box-shadow: var(--shadow);
}

.contact-card > img {
  width: 210px;
  height: 86px;
  margin-bottom: 25px;
  object-fit: contain;
  object-position: left center;
}

.contact-card p {
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
}

.contact-card a:not(.button) { color: var(--white); }

.contact-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255,255,255,.72);
  background: #07130d;
}

.footer-grid {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr .62fr 1.2fr;
  gap: clamp(40px, 7vw, 90px);
}

.footer-brand > img {
  width: 220px;
  height: 110px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 440px;
}

.site-footer h2 {
  margin: 22px 0 20px;
  color: var(--white);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a:hover,
.site-footer address a:hover,
.footer-bottom a:hover { color: var(--leaf-bright); }

.site-footer address {
  font-style: normal;
}

.site-footer address p {
  margin-bottom: 8px;
}

.inline-brand-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inline-brand-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom {
  width: min(calc(100% - 32px), var(--container));
  margin: 50px auto 0;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
}

.footer-bottom p { margin-bottom: 0; }

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 1100;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #07140c;
  background: var(--leaf-bright);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease;
}

.floating-whatsapp:hover {
  background: #69d87c;
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  :root { --header-h: 72px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .brand { width: 145px; height: 54px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 52px); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 720px); margin: 0 auto; }
  .hero-image-wrap { aspect-ratio: 1 / 1; max-height: none; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 360px)); }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .service-card:nth-child(5) { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
  .conversion-inner { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .delivery-inner { grid-template-columns: 1fr; }
  .delivery-copy, .faq-heading { position: static; }
  .delivery-copy h2 { max-width: 760px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-copy { max-width: 780px; }
  .about-visual { width: min(100%, 480px); margin-left: auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 20px; }
  .occasion-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-heading h2 { max-width: 780px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .hero { padding-bottom: 64px; }
  .hero-inner { gap: 46px; }
  h1 { font-size: clamp(2.7rem, 12vw, 4.5rem); }
  h2 { font-size: clamp(2.15rem, 9vw, 3.4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; width: min(100%, 420px); justify-self: center; }
  .service-overlay { padding: 24px; }
  .split-heading > svg { display: none; }
  .occasion-row { min-height: 0; padding: 26px; gap: 18px; }
  .about-note { left: 18px; bottom: 18px; }
  .contact { min-height: 520px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 575px) {
  .header-inner, .hero-inner, .section-intro, .services-grid, .center-cta, .conversion-inner, .split-heading, .occasion-list, .delivery-inner, .about-inner, .faq-inner, .footer-grid, .footer-bottom {
    width: min(calc(100% - 24px), var(--container));
  }
  .brand { width: 128px; }
  .hero { padding-top: calc(var(--header-h) + 38px); }
  .availability { font-size: .7rem; line-height: 1.4; }
  .hero-points { font-size: .95rem; }
  .hero .button-large { width: 100%; }
  .hero-image-wrap { aspect-ratio: 1 / 1; }
  .services-grid { gap: 18px; }
  .service-overlay p { font-size: .88rem; }
  .center-cta .button { width: 100%; }
  .conversion-inner .button { width: 100%; }
  .occasion-row { min-height: 112px; padding: 20px 0; }
  .occasion-row:hover { padding-left: 8px; padding-right: 8px; }
  .occasion-row h3 { font-size: 1.3rem; }
  .occasion-row p { font-size: .92rem; }
  .delivery-copy .button { width: 100%; }
  .location-card { padding: 20px 16px; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .location-card > svg { width: 28px; height: 28px; }
  .about-visual > .square-photo { border-radius: 18px; }
  .units-grid { grid-template-columns: 1fr; width: min(100%, 466px); }
  .faq-list summary { min-height: 78px; padding: 20px 0; font-size: 1.1rem; }
  .faq-list details > p { margin-right: 0; font-size: .94rem; }
  .floating-whatsapp { width: 56px; height: 56px; }
}

@media (max-width: 479px) {
  .section-space { padding-top: 70px; padding-bottom: 70px; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .service-overlay { padding: 20px; }
  .occasion-icon { width: 46px; height: 46px; }
  .occasion-list { grid-template-columns: 1fr; gap: 14px; }
  .unit-content { padding: 23px 20px; }
  .unit-content h3 { font-size: 1.5rem; }
}

@media (max-width: 374px) {
  .brand { width: 116px; }
  .menu-toggle { width: 42px; height: 42px; }
  .button { padding-left: 15px; padding-right: 15px; font-size: .88rem; }
}

@media (max-width: 319px) {
  body { min-width: 280px; }
  .availability { letter-spacing: .03em; }
}

@media (min-width: 320px) { :root { --fluid-gutter: 12px; } }
@media (min-width: 375px) { :root { --fluid-gutter: 16px; } }
@media (min-width: 480px) { :root { --fluid-gutter: 20px; } }
@media (min-width: 576px) { :root { --fluid-gutter: 24px; } }
@media (min-width: 640px) { :root { --fluid-gutter: 28px; } }
@media (min-width: 768px) { :root { --fluid-gutter: 32px; } }
@media (min-width: 992px) { :root { --container: 920px; } }
@media (min-width: 1024px) { :root { --container: 960px; } }
@media (min-width: 1200px) { :root { --container: 1120px; } }
@media (min-width: 1280px) { :root { --container: 1180px; } }
@media (min-width: 1400px) { :root { --container: 1260px; } }
@media (min-width: 1440px) { :root { --container: 1280px; } }
@media (min-width: 1536px) { :root { --container: 1360px; } }
@media (min-width: 1920px) {
  :root { --container: 1480px; }
  body { font-size: 1.08rem; }
  .hero-inner { grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); }
}
@media (min-width: 2560px) {
  :root { --container: 1680px; }
  body { font-size: 1.16rem; }
  .hero { min-height: 900px; }
}

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