/* El Pitayero — Tortilla Sonorense */

:root {
  --green: #1f5c2e;
  --green-deep: #143d1e;
  --green-mid: #2d7a3e;
  --yellow: #f5d74a;
  --yellow-hot: #ffe76d;
  --cream: #fff8e7;
  --cream-soft: #faf4e3;
  --magenta: #c2185b;
  --magenta-hot: #e91e63;
  --ink: #1a1a14;
  --muted: #5a5a4e;
  --sand: #e8d9b8;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(20, 61, 30, 0.18);
  --radius: 4px;
  --header-h: 4.5rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-script: "Caveat", cursive;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-soft);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 248, 231, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 92, 46, 0.12);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-link img {
  height: 2.75rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
  opacity: 0.85;
  transition: opacity 0.2s var(--ease), color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  opacity: 1;
  color: var(--magenta);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.nav-desktop + .header-actions {
  margin-left: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.lang-switch button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--green);
  color: var(--yellow-hot);
}

.lang-switch button:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}

/* Big Call CTA */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  background: var(--magenta);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-call:hover,
.btn-call:focus-visible {
  background: var(--magenta-hot);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.45);
}

.btn-call:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.btn-call svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-call .call-number {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(31, 92, 46, 0.12);
  padding: 1rem 1.25rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--green-deep);
  border-bottom: 1px solid rgba(31, 92, 46, 0.08);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .btn-call .call-label-short {
    display: none;
  }

  .btn-call .call-number {
    display: inline;
  }

  .header-actions {
    margin-left: 0;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--green-deep);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-hot);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 248, 231, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 248, 231, 0.12);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--yellow-hot);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(88vh, 46rem);
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(20, 61, 30, 0.82) 0%,
      rgba(20, 61, 30, 0.55) 38%,
      rgba(20, 61, 30, 0.2) 62%,
      rgba(20, 61, 30, 0.35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(20, 61, 30, 0.25) 0%,
      transparent 35%,
      rgba(20, 61, 30, 0.55) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
  width: 100%;
}

.hero-brand {
  width: min(100%, 22rem);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 0 rgba(255, 248, 231, 0.35))
    drop-shadow(0 8px 32px rgba(0, 0, 0, 0.55));
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero-brand img {
  width: 100%;
  height: auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.3s forwards;
}

.hero-lead {
  margin-top: 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 36ch;
  opacity: 0;
  color: rgba(255, 248, 231, 0.92);
  animation: riseIn 0.9s var(--ease) 0.45s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.6s forwards;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.1rem;
}

/* ——— Consignment ——— */
.consignment {
  background:
    linear-gradient(135deg, var(--green-deep) 0%, var(--green) 55%, #3a8a4a 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.consignment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(245, 215, 74, 0.2), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(233, 30, 99, 0.15), transparent 35%);
  pointer-events: none;
}

.consignment .section-inner {
  position: relative;
}

.consignment .section-eyebrow {
  color: var(--yellow);
}

.consignment .section-title {
  color: var(--cream);
}

.consignment .section-lead {
  color: rgba(255, 248, 231, 0.85);
}

.steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.step {
  padding: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.65rem;
  display: block;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: rgba(255, 248, 231, 0.82);
  font-size: 0.98rem;
}

/* ——— Products ——— */
.products {
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(245, 215, 74, 0.18), transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(31, 92, 46, 0.08), transparent 40%);
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem 2rem;
  }
}

.product {
  text-align: center;
  padding: 1.25rem 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 92, 46, 0.08);
  border-radius: 12px;
}

.product-thumb {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  width: min(100%, 9.5rem);
  box-shadow: var(--shadow);
  border: 3px solid var(--yellow);
  background: var(--sand);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--green-deep);
  margin-bottom: 0.25rem;
  line-height: 1.25;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.product:nth-child(even) h3 {
  color: var(--magenta);
}

.product-pack {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.product-price {
  font-weight: 700;
  color: var(--green-deep);
  font-size: 0.95rem;
  margin: 0.35rem 0 0.75rem;
}

.qty-wrap {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  margin-top: 0.15rem;
  width: 100%;
  max-width: 14rem;
  margin-left: auto;
  margin-right: auto;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(31, 92, 46, 0.3);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.qty-btn {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.qty-btn:hover {
  background: rgba(31, 92, 46, 0.08);
  color: var(--magenta);
}

.qty-input {
  width: 3.25rem;
  height: 2.35rem;
  border: 0;
  border-left: 1px solid rgba(31, 92, 46, 0.15);
  border-right: 1px solid rgba(31, 92, 46, 0.15);
  text-align: center;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--cream-soft);
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  width: 100%;
}

.qty-steps .qty-step:nth-child(4) {
  grid-column: 1 / 2;
}

.qty-steps .qty-step:nth-child(5) {
  grid-column: 2 / 3;
}

.qty-step {
  min-width: 0;
  padding: 0.4rem 0.25rem;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.qty-step:hover,
.qty-step:focus-visible {
  background: var(--green);
  color: var(--yellow-hot);
  outline: none;
}

.qty-step--accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-deep);
}

.qty-step--accent:hover,
.qty-step--accent:focus-visible {
  background: var(--yellow-hot);
  border-color: var(--yellow-hot);
  color: var(--green-deep);
}

.qty-step--muted {
  border-color: rgba(31, 92, 46, 0.25);
  color: var(--muted);
  background: transparent;
}

.qty-step--muted:hover,
.qty-step--muted:focus-visible {
  background: rgba(194, 24, 91, 0.08);
  border-color: var(--magenta);
  color: var(--magenta);
}

/* ——— Order section ——— */
.order-section {
  background:
    linear-gradient(180deg, #f3efe2 0%, var(--cream) 100%);
  border-top: 1px solid rgba(31, 92, 46, 0.08);
}

.order-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .order-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }
}

.order-summary {
  background: var(--green-deep);
  color: var(--cream);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .order-summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.order-summary h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.order-lines {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 248, 231, 0.12);
}

.order-empty {
  opacity: 0.75;
  font-size: 0.95rem;
}

.order-moq {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
}

.order-moq.is-short {
  background: rgba(233, 30, 99, 0.2);
  color: #ffc1d5;
}

.order-moq.is-ok {
  background: rgba(245, 215, 74, 0.2);
  color: var(--yellow-hot);
}

.order-totals {
  display: grid;
  gap: 0.45rem;
}

.order-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.order-totals dt {
  opacity: 0.8;
}

.order-total-row {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 248, 231, 0.2);
  font-size: 1.15rem !important;
  font-weight: 700;
}

.order-qty-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.order-form {
  display: grid;
  gap: 1rem;
}

.order-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.95rem;
}

.order-form input,
.order-form textarea,
.order-form select {
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(31, 92, 46, 0.25);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 92, 46, 0.15);
}

.order-form-row {
  display: grid;
  gap: 1rem;
}

.order-confirm-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.9;
  color: var(--yellow-hot);
}

@media (min-width: 560px) {
  .order-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .order-form-row.order-form-row--3 {
    grid-template-columns: 1.2fr 0.55fr 0.75fr;
  }
}

.order-zone {
  border: 1.5px solid rgba(31, 92, 46, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
}

.order-zone legend {
  font-weight: 700;
  color: var(--green-deep);
  padding: 0 0.35rem;
}

.zone-option {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 600;
  cursor: pointer;
}

.zone-option input {
  margin-top: 0.2rem;
  accent-color: var(--green);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

#order-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.order-success {
  display: none;
  margin-top: 0.5rem;
  padding: 1rem;
  background: rgba(31, 92, 46, 0.1);
  border-left: 3px solid var(--green);
  color: var(--green-deep);
}

.order-success.is-visible {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.order-success p {
  font-weight: 700;
}

/* Order sticky bar (mobile) — sits above call bar */
.order-sticky-bar {
  display: none;
}

@media (max-width: 767px) {
  .order-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 3.35rem;
    left: 0;
    right: 0;
    z-index: 89;
    background: var(--cream);
    border-top: 1px solid rgba(31, 92, 46, 0.15);
    padding: 0.55rem 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-deep);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }

  .order-sticky-bar .is-ok {
    color: var(--green-mid);
  }

  .order-sticky-bar a {
    background: var(--yellow);
    color: var(--green-deep);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
  }
}


.products-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ——— About ——— */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 18rem;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(20, 61, 30, 0.45));
}

.mvv {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mvv h3 {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.mvv p {
  color: var(--muted);
}

.values {
  margin-top: 2.5rem;
}

.values h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.value-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .value-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .value-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  padding-left: 1rem;
  border-left: 3px solid var(--yellow);
}

.value-item strong {
  display: block;
  color: var(--green-deep);
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

.value-item:nth-child(even) {
  border-left-color: var(--magenta);
}

/* ——— Service area ——— */
.service {
  position: relative;
  color: var(--cream);
  overflow: hidden;
}

.service-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.service-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 61, 30, 0.92) 0%,
    rgba(20, 61, 30, 0.78) 45%,
    rgba(20, 61, 30, 0.55) 100%
  );
}

.service .section-inner {
  position: relative;
  z-index: 1;
}

.service .section-eyebrow {
  color: var(--yellow);
}

.service .section-title {
  color: var(--cream);
}

.service .section-lead {
  color: rgba(255, 248, 231, 0.88);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.service-tags span {
  padding: 0.45rem 0.95rem;
  border: 1.5px solid rgba(245, 215, 74, 0.55);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--yellow-hot);
  background: rgba(20, 61, 30, 0.35);
}

/* ——— Contact ——— */
.contact {
  background:
    linear-gradient(180deg, var(--cream-soft), var(--cream));
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-card {
  background: var(--green-deep);
  color: var(--cream);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(245, 215, 74, 0.35), transparent 70%);
  pointer-events: none;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  position: relative;
}

.contact-role {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-lines {
  display: grid;
  gap: 1rem;
  position: relative;
}

.contact-lines a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: color 0.2s;
}

.contact-lines a:hover {
  color: var(--yellow-hot);
}

.contact-lines .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.contact-lines .value {
  font-weight: 700;
  font-size: 1.1rem;
  word-break: break-word;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
  position: relative;
}

.contact-actions .btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.contact-actions .btn-whatsapp:hover {
  filter: brightness(1.05);
}

.contact-photo {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 12rem;
}

.contact-photo img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(31, 92, 46, 0.25);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 92, 46, 0.15);
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(31, 92, 46, 0.1);
  border-left: 3px solid var(--green);
  color: var(--green-deep);
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 248, 231, 0.85);
  padding: 3rem 1.25rem 3rem;
  /* Just clears Call/WhatsApp + order bars — keep gap tight */
  padding-bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 3.5rem;
  width: auto;
  margin-bottom: 0.75rem;
  filter: brightness(1.05);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--yellow);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.footer-col a {
  display: block;
  padding: 0.25rem 0;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--yellow-hot);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 248, 231, 0.15);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.65rem;
}

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

.footer-admin {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.28;
  transition: opacity 0.2s;
}

.footer-admin:hover,
.footer-admin:focus-visible {
  opacity: 0.65;
}

/* ——— Mobile sticky bar ——— */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  background: var(--green-deep);
  border-top: 2px solid var(--yellow);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
}

.mobile-bar a:first-child {
  background: var(--magenta);
}

.mobile-bar a.wa {
  background: #128c7e;
}

.mobile-bar svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (min-width: 768px) {
  .mobile-bar {
    display: none;
  }
}

/* ——— Scroll companion ——— */
.scroll-companion {
  position: fixed;
  right: max(0.35rem, env(safe-area-inset-right));
  top: 50%;
  z-index: 40;
  width: 5.5rem;
  height: 5.5rem;
  pointer-events: none;
  opacity: 0.55;
  transform: translate3d(0, -50%, 0);
  will-change: transform, opacity;
  transition: opacity 0.4s var(--ease);
  contain: layout style;
}

.scroll-companion svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(20, 61, 30, 0.25));
}

.scroll-companion.is-dimmed {
  opacity: 0.2;
}

.scroll-companion.is-hidden {
  opacity: 0;
}

@media (max-width: 767px) {
  .scroll-companion {
    width: 3.25rem;
    height: 3.25rem;
    right: 0.35rem;
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-companion {
    display: none;
  }
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
