:root {
  --ink: #151617;
  --paper: #fffaf0;
  --cream: #f7eddb;
  --white: #ffffff;
  --green: #0f7a4f;
  --green-dark: #095b3a;
  --red: #bd3b36;
  --blue: #244b73;
  --gold: #d79922;
  --shadow: 0 22px 55px rgba(21, 22, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(21, 22, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  font-weight: 800;
  background: var(--red);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--gold);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.1rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(21, 22, 23, 0.68);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--green);
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-whatsapp,
.btn,
.quick-strip a,
.google-btn,
.floating-whatsapp,
.popup-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-weight: 800;
  border-radius: 7px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-whatsapp {
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(15, 122, 79, 0.24);
}

.header-whatsapp:hover,
.btn:hover,
.quick-strip a:hover,
.google-btn:hover,
.floating-whatsapp:hover,
.popup-whatsapp:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(20px, 6vw, 82px) 54px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&w=1800&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 22, 19, 0.9) 0%, rgba(9, 22, 19, 0.62) 48%, rgba(9, 22, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 9.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 28px 0 0;
  font-size: clamp(1.12rem, 2.1vw, 1.45rem);
  color: rgba(255, 255, 255, 0.91);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  padding: 13px 22px;
  border: 2px solid transparent;
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(15, 122, 79, 0.28);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(21, 22, 23, 0.18);
  background: transparent;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats span {
  min-width: 128px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
}

.quick-strip a {
  min-height: 74px;
  padding: 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 0;
}

.quick-strip a:nth-child(1) {
  background: var(--green);
}

.quick-strip a:nth-child(2) {
  background: var(--red);
}

.quick-strip a:nth-child(3) {
  background: var(--blue);
}

.quick-strip a:nth-child(4) {
  background: var(--gold);
  color: var(--ink);
}

.section,
.feature-band,
.google-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 72px);
  padding: 92px 0 56px;
  align-items: end;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child,
.feature-copy p,
.google-panel p,
.contact-card p,
.store-details p {
  color: rgba(21, 22, 23, 0.72);
  font-size: 1.04rem;
}

.collections {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.collection-card {
  min-height: 260px;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collection-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  font-weight: 900;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.collection-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.collection-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.card-red {
  background: var(--red);
}

.card-green {
  background: var(--green);
}

.card-blue {
  background: var(--blue);
}

.card-gold {
  color: var(--ink);
  background: var(--gold);
}

.card-gold p {
  color: rgba(21, 22, 23, 0.72);
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  margin-top: 90px;
  padding: clamp(32px, 6vw, 64px);
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(21, 22, 23, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 10px;
}

.service-list span {
  padding: 14px;
  font-weight: 800;
  background: var(--cream);
  border-left: 5px solid var(--green);
  border-radius: 6px;
}

.book-stack {
  display: grid;
  gap: 16px;
  transform: rotate(-4deg);
}

.book {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding-left: 26px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  border-radius: 6px;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(21, 22, 23, 0.14);
}

.book-one {
  width: 84%;
  background: var(--red);
}

.book-two {
  width: 96%;
  margin-left: auto;
  background: var(--blue);
}

.book-three {
  width: 88%;
  background: var(--green);
}

.book-four {
  width: 74%;
  margin-left: auto;
  color: var(--ink);
  background: var(--gold);
}

.google-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 40px;
  margin-top: 90px;
  padding: 46px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.google-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.google-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.google-btn {
  justify-content: flex-start;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
}

.google-btn span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 1.2rem;
  background: #4285f4;
  border-radius: 50%;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 20px;
  padding: 90px 0;
}

.contact-card,
.store-details {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
}

.contact-card {
  background: var(--cream);
}

.store-details {
  color: var(--white);
  background: var(--green-dark);
}

.store-details h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
}

dl {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

dl div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

dt {
  font-weight: 900;
}

dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  min-height: 54px;
  padding: 0 20px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 36px rgba(15, 122, 79, 0.34);
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.promo-popup.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, 0.68);
  backdrop-filter: blur(9px);
}

.promo-popup-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(28px, 6vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.96)),
    var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 16px 16px 0 var(--gold), 0 32px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(18px) scale(0.96);
  transition: transform 260ms ease;
}

.promo-popup.is-visible .promo-popup-card {
  transform: translateY(0) scale(1);
}

.promo-popup-card::before {
  position: absolute;
  top: -76px;
  right: -58px;
  width: 168px;
  height: 168px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 22px,
    var(--blue) 22px 44px,
    var(--green) 44px 66px,
    var(--gold) 66px 88px
  );
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(18deg);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  background: var(--white);
  border: 2px solid rgba(21, 22, 23, 0.18);
  border-radius: 50%;
}

.popup-close:hover {
  border-color: var(--ink);
}

.popup-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--red);
  border-radius: 999px;
}

.promo-popup h2 {
  position: relative;
  z-index: 1;
  max-width: 410px;
  font-size: clamp(2rem, 7vw, 3.7rem);
}

.promo-popup p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  max-width: 430px;
  color: rgba(21, 22, 23, 0.74);
  font-size: 1.05rem;
}

.popup-offer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.popup-offer span {
  padding: 9px 11px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--cream);
  border: 1px solid rgba(21, 22, 23, 0.09);
  border-radius: 999px;
}

.popup-whatsapp {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 56px;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
  box-shadow: 0 16px 30px rgba(15, 122, 79, 0.28);
}

.popup-whatsapp:hover {
  background: var(--green-dark);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 8px;
  }

  .hero {
    min-height: 880px;
    padding-top: 170px;
  }

  .quick-strip,
  .intro,
  .collections,
  .feature-band,
  .google-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .collections {
    grid-template-columns: repeat(2, 1fr);
  }

  .google-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .header-whatsapp {
    width: 100%;
  }

  .hero {
    min-height: 760px;
    padding: 190px 20px 40px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 20vw, 5.6rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-strip a {
    min-height: 62px;
  }

  .section,
  .feature-band,
  .google-panel {
    width: min(100% - 28px, 1180px);
  }

  .intro {
    padding-top: 64px;
  }

  .collections {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 220px;
  }

  .feature-band,
  .google-panel {
    padding: 28px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .book-stack {
    transform: none;
  }

  .contact-section {
    padding: 64px 0;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .promo-popup {
    padding: 16px;
  }

  .promo-popup-card {
    box-shadow: 8px 8px 0 var(--gold), 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  footer {
    display: block;
    padding-bottom: 88px;
  }

  footer a {
    display: inline-block;
    margin-top: 10px;
  }
}
