:root {
  --wine: #6e3434;
  --wine-dark: #462223;
  --wine-soft: #986d69;
  --cream: #f7f0e8;
  --sand: #e9d7c7;
  --sky: #dceef3;
  --paper: #fffdf9;
  --ink: #231d1b;
  --muted: #716562;
  --line: rgba(110, 52, 52, .14);
  --shadow: 0 24px 65px rgba(62, 38, 34, .12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--wine-dark);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, .96);
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.brand-paw {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
}
.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: var(--muted);
  font-size: .91rem;
  font-weight: 700;
}
.nav a:hover, .nav a:focus-visible { color: var(--wine); }
.menu-button { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(110, 52, 52, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(110, 52, 52, .23); }
.btn:focus-visible { outline: 3px solid rgba(110, 52, 52, .25); outline-offset: 3px; }
.btn-small { min-height: 44px; padding-inline: 18px; font-size: .9rem; }
.btn-outline { background: transparent; color: var(--wine); box-shadow: none; }
.btn-light { background: #fff; color: var(--wine-dark); border-color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 78px 0;
  background:
    radial-gradient(circle at 12% 85%, rgba(220, 238, 243, .95), transparent 30%),
    radial-gradient(circle at 86% 17%, rgba(233, 215, 199, .8), transparent 31%),
    linear-gradient(135deg, #fffdf9 0%, #f8f1e9 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker-light { color: #f1d9d4; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.4rem, 7.2vw, 6.9rem);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 900;
}
.hero h1 em { color: var(--wine); font-style: normal; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-tags span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.location { margin: 28px 0 0; color: var(--muted); font-weight: 700; }

.hero-art { position: relative; min-height: 470px; display: grid; place-items: center; }
.hero-circle {
  width: min(390px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 35px 80px rgba(70, 34, 35, .24);
}
.paw-large { font-size: clamp(6rem, 13vw, 10rem); filter: grayscale(1) brightness(4); }
.hero-circle::before,
.hero-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(110, 52, 52, .18);
}
.hero-circle::before { width: 440px; height: 440px; }
.hero-circle::after { width: 490px; height: 490px; border-style: dashed; }
.hero-card {
  position: absolute;
  z-index: 2;
  min-width: 160px;
  padding: 17px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-card small { display: block; color: var(--muted); font-weight: 700; }
.hero-card strong { display: block; margin-top: 2px; color: var(--wine); font-size: 1.4rem; }
.card-top { top: 52px; right: 4px; transform: rotate(4deg); }
.card-bottom { bottom: 44px; left: 8px; transform: rotate(-4deg); }
.hero-shape { position: absolute; border-radius: 50%; background: rgba(110, 52, 52, .07); }
.hero-shape-a { width: 190px; height: 190px; left: -95px; top: 90px; }
.hero-shape-b { width: 250px; height: 250px; right: -120px; bottom: 20px; }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.presentation-copy h2,
.delivery-card h2,
.contact-main h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  min-height: 270px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}
.feature-card:nth-child(2) { background: var(--sky); }
.feature-card-dark { background: var(--wine-dark); color: #fff; border-color: transparent; }
.feature-icon { margin-bottom: auto; font-size: 2.2rem; }
.feature-label { margin: 30px 0 5px; color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.feature-card-dark .feature-label { color: #e6c9c6; }
.feature-card h3 { margin: 0; font-size: clamp(1.45rem, 2.6vw, 2.2rem); line-height: 1.05; letter-spacing: -.03em; }

.presentation-section { background: var(--cream); }
.presentation-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.presentation-copy .btn { margin-top: 28px; }
.price-line { margin-top: 26px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-line span { display: block; color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-line strong { display: block; margin-top: 3px; color: var(--wine); font-size: clamp(2rem, 4vw, 3rem); }
.package-visual {
  min-height: 470px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 46px 46px 32px 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.package-top { color: var(--wine); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.package-center { color: var(--wine); font-size: clamp(5.5rem, 11vw, 8.5rem); font-weight: 900; line-height: .82; letter-spacing: -.08em; }
.package-center span { display: block; margin-top: 18px; color: var(--ink); font-size: 1.25rem; letter-spacing: .03em; }
.package-bottom { width: 100%; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-weight: 900; letter-spacing: .18em; }

.delivery-section { padding-top: 72px; padding-bottom: 72px; }
.delivery-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px 52px;
  border-radius: var(--radius-xl);
  background: var(--wine);
  color: #fff;
  box-shadow: 0 28px 65px rgba(110, 52, 52, .23);
}
.delivery-icon { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 24px; background: rgba(255, 255, 255, .12); font-size: 2.2rem; }

.gallery-section { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: 1fr .67fr; gap: 28px; align-items: center; }
.photo-card { margin: 0; padding: 12px; border-radius: 32px; background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.photo-card img { width: 100%; height: auto; border-radius: 22px; object-fit: contain; }
.square-card { align-self: start; }
.portrait-card { max-width: 520px; justify-self: center; }

.contact-section { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-main,
.contact-details {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}
.phone { display: block; width: max-content; max-width: 100%; margin: 22px 0; color: var(--wine); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -.04em; }
.contact-details { display: grid; gap: 12px; }
.contact-details article { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: var(--radius-md); background: var(--cream); }
.contact-details article > span { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 15px; background: #fff; }
.contact-details small { display: block; color: var(--muted); font-weight: 700; }
.contact-details strong { display: block; margin-top: 2px; font-size: 1.1rem; }

.footer { padding: 34px 0 105px; background: #fff; border-top: 1px solid var(--line); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--wine); }
.footer-info { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: var(--muted); font-size: .88rem; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(70, 34, 35, .28);
}

@media (max-width: 980px) {
  .header-row { grid-template-columns: auto auto 1fr; }
  .menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
  }
  .menu-button span { width: 18px; height: 2px; border-radius: 999px; background: var(--wine); }
  .nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: 12px; }
  .header-whatsapp { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { text-align: center; }
  .hero-tags, .hero-actions { justify-content: center; }
  .hero-art { min-height: 410px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .presentation-grid { grid-template-columns: 1fr; gap: 36px; }
  .delivery-card { grid-template-columns: auto 1fr; }
  .delivery-card .btn { grid-column: 1 / -1; justify-self: start; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .portrait-card { max-width: 560px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .header-row { grid-template-columns: 1fr auto; gap: 10px; }
  .header-whatsapp { display: none; }
  .menu-button { grid-column: 2; grid-row: 1; }
  .hero { min-height: auto; padding: 70px 0 74px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5.1rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-art { min-height: 330px; }
  .hero-circle { width: 250px; }
  .hero-circle::before { width: 285px; height: 285px; }
  .hero-circle::after { width: 320px; height: 320px; }
  .paw-large { font-size: 5rem; }
  .hero-card { min-width: 130px; padding: 13px 15px; }
  .hero-card strong { font-size: 1.08rem; }
  .card-top { top: 30px; right: 0; }
  .card-bottom { bottom: 24px; left: 0; }
  .feature-card { padding: 26px; }
  .package-visual { min-height: 390px; padding: 34px 24px; border-radius: 34px; }
  .delivery-card { grid-template-columns: 1fr; padding: 34px 26px; }
  .delivery-card .btn { width: 100%; }
  .photo-card { padding: 9px; border-radius: 25px; }
  .photo-card img { border-radius: 18px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-main, .contact-details { padding: 30px 24px; border-radius: 28px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-info { flex-direction: column; justify-content: flex-start; gap: 6px; }
  .floating-whatsapp { width: 54px; height: 54px; padding: 0; border-radius: 50%; }
  .floating-whatsapp span:last-child { display: none; }
}

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