:root {
  --ivory: #f8f5ee;
  --soft-ivory: #fffcf6;
  --olive: #394532;
  --olive-deep: #24301f;
  --olive-muted: #718065;
  --warm-gray: #e7e0d4;
  --stone: #b9ad9b;
  --charcoal: #2d2f2b;
  --muted-text: #6e7069;
  --line: rgba(57, 69, 50, 0.16);
  --shadow: 0 24px 60px rgba(36, 48, 31, 0.12);
  --radius-large: 28px;
  --radius-medium: 18px;
  --container: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 238, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100% - 40px, var(--container));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--olive-deep);
}

.brand img {
  width: 118px;
  height: auto;
}

.footer-brand {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  transition: color 180ms ease;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--olive);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--soft-ivory);
  background: var(--olive);
  border: 1px solid var(--olive);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(57, 69, 50, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--soft-ivory) !important;
  background: var(--olive-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--olive-deep);
  border-radius: 99px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.location-parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    radial-gradient(circle at 15% 20%, rgba(113, 128, 101, 0.2), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(185, 173, 155, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.92), rgba(248, 245, 238, 0.96));
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -24vh;
  width: 54vw;
  height: 54vw;
  min-width: 520px;
  min-height: 520px;
  background: rgba(57, 69, 50, 0.055);
  border: 1px solid rgba(57, 69, 50, 0.08);
  border-radius: 50%;
}

.hero-grid,
.two-column,
.request-grid,
.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--olive-deep);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.03;
}

h1 {
  margin-bottom: 10px;
  max-width: 100%;
  font-size: clamp(3.4rem, 5.6vw, 6.1rem);
  letter-spacing: clamp(0.06em, 0.65vw, 0.1em);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.hero-slogan {
  margin-bottom: 24px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
}

.hero-text,
.section-heading p,
.section-copy p,
.about-text p {
  color: var(--muted-text);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(113, 128, 101, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--soft-ivory);
  background: var(--olive);
  box-shadow: 0 18px 40px rgba(57, 69, 50, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--olive-deep);
}

.btn-secondary {
  color: var(--olive-deep);
  background: rgba(255, 252, 246, 0.72);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--soft-ivory);
  box-shadow: 0 16px 32px rgba(36, 48, 31, 0.08);
}

.visual-card {
  position: relative;
  padding: 14px;
  background: rgba(255, 252, 246, 0.68);
  border: 1px solid rgba(57, 69, 50, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-main-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 440px;
  color: rgba(255, 252, 246, 0.92);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(36, 48, 31, 0.72), rgba(57, 69, 50, 0.5)),
    repeating-linear-gradient(135deg, rgba(255, 252, 246, 0.08) 0 1px, transparent 1px 18px);
  border-radius: 26px;
  overflow: hidden;
}

.image-placeholder span {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
}

.image-placeholder small {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note {
  position: absolute;
  right: -28px;
  bottom: 42px;
  max-width: 230px;
  padding: 20px;
  background: var(--soft-ivory);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(36, 48, 31, 0.14);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.floating-note span {
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about,
.request {
  background: var(--soft-ivory);
}

.two-column {
  grid-template-columns: 0.8fr 1.2fr;
}

.section-copy {
  align-self: start;
}

.about-text {
  padding: 38px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.value-card {
  min-height: 160px;
  padding: 22px;
  background: var(--soft-ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}

.value-card span {
  color: var(--olive-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.value-card h3 {
  margin-top: 34px;
  margin-bottom: 0;
  font-size: 1.35rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.benefits-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.product-card,
.contact-card,
.request-form,
.map-card {
  background: var(--soft-ivory);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(36, 48, 31, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card:hover,
.product-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 69, 50, 0.28);
  box-shadow: 0 26px 56px rgba(36, 48, 31, 0.11);
}

.info-card {
  min-height: 250px;
  padding: 30px;
  border-radius: var(--radius-large);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--olive);
  background: rgba(113, 128, 101, 0.1);
  border: 1px solid rgba(113, 128, 101, 0.16);
  border-radius: 50%;
  font-size: 1.2rem;
}

.info-card p,
.product-body p,
.contact-card span,
.hours span {
  color: var(--muted-text);
}

.catalog {
  background:
    linear-gradient(180deg, rgba(248, 245, 238, 0.94), rgba(248, 245, 238, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(113, 128, 101, 0.12), transparent 30%);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-large);
}

.product-image {
  min-height: 245px;
  display: grid;
  place-items: center;
  color: rgba(255, 252, 246, 0.86);
  background: var(--olive);
  position: relative;
  isolation: isolate;
}

.product-image::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 32%;
  background: rgba(255, 252, 246, 0.18);
  border: 1px solid rgba(255, 252, 246, 0.28);
  border-radius: 18px 18px 10px 10px;
  transform: perspective(360px) rotateX(24deg);
  z-index: -1;
}

.product-image span {
  padding: 7px 12px;
  background: rgba(36, 48, 31, 0.36);
  border: 1px solid rgba(255, 252, 246, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-ebano {
  background: linear-gradient(145deg, #1f211f, #4a5145);
}

.product-nogal {
  background: linear-gradient(145deg, #8b6647, #4a3426);
}

.product-blanco {
  color: var(--olive-deep);
  background: linear-gradient(145deg, #f6f1e8, #cfc6b8);
}

.product-blanco span {
  background: rgba(255, 252, 246, 0.75);
}

.product-gris {
  background: linear-gradient(145deg, #6d706c, #343835);
}

.product-clasico {
  background: linear-gradient(145deg, #9a7451, #6b4b32);
}

.product-premium {
  background: linear-gradient(145deg, #5d624d, #2f3929);
}

.product-body {
  padding: 28px;
}

.finish {
  margin-bottom: 10px;
  color: var(--olive) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--olive);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--olive-deep);
}

.location {
  position: relative;
  overflow: hidden;
  background: var(--olive-deep);
}

.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 48, 31, 0.95), rgba(36, 48, 31, 0.78));
  z-index: 1;
}

.location-parallax {
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.05), transparent),
    repeating-linear-gradient(120deg, rgba(255, 252, 246, 0.04) 0 1px, transparent 1px 20px);
  transform: translateY(0);
}

.location-grid {
  z-index: 2;
}

.location h2,
.location .eyebrow,
.location address {
  color: var(--soft-ivory);
}

.location p {
  color: rgba(255, 252, 246, 0.75);
}

address {
  margin: 26px 0;
  font-style: normal;
}

.map-card {
  min-height: 410px;
  padding: 14px;
  background: rgba(255, 252, 246, 0.12);
  border-color: rgba(255, 252, 246, 0.16);
  border-radius: 30px;
}

.map-embed {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
  border-radius: 22px;
  filter: saturate(0.82) contrast(0.95);
}

.map-placeholder {
  height: 100%;
  min-height: 380px;
  display: grid;
  place-items: center;
  color: rgba(255, 252, 246, 0.88);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(248, 245, 238, 0.14), rgba(113, 128, 101, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 252, 246, 0.08) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(255, 252, 246, 0.08) 0 1px, transparent 1px 36px);
  border: 1px solid rgba(255, 252, 246, 0.18);
  border-radius: 22px;
}

.map-placeholder span {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
}

.map-placeholder small {
  display: block;
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-grid {
  grid-template-columns: 0.82fr 1fr;
}

.request-form {
  padding: 36px;
  border-radius: var(--radius-large);
}

.form-row {
  margin-bottom: 20px;
}

label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--olive-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

label span {
  color: var(--olive-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  color: var(--charcoal);
  background: #fffdf8;
  border: 1px solid rgba(57, 69, 50, 0.2);
  border-radius: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input {
  height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 116px;
  padding: 14px 16px;
  resize: vertical;
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
  background: var(--soft-ivory);
  border-color: rgba(57, 69, 50, 0.44);
  box-shadow: 0 10px 22px rgba(36, 48, 31, 0.06);
}

.error-message {
  display: none;
  margin-top: 6px;
  color: #8f332b;
  font-size: 0.82rem;
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #8f332b;
}

.form-row.has-error .error-message {
  display: block;
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.success-message {
  display: none;
  margin: 18px 0 0;
  padding: 16px 18px;
  color: var(--olive-deep);
  background: rgba(113, 128, 101, 0.13);
  border: 1px solid rgba(113, 128, 101, 0.22);
  border-radius: 16px;
  font-weight: 700;
}

.success-message.is-visible {
  display: block;
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-card {
  min-height: 190px;
  padding: 26px;
  border-radius: var(--radius-large);
}

.contact-card span,
.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card span {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  min-height: 56px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.contact-card a {
  margin-top: 24px;
  color: var(--olive);
  font-weight: 800;
}

.hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--soft-ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}

.hours strong {
  color: var(--olive-deep);
}

.footer {
  color: rgba(255, 252, 246, 0.78);
  background: var(--olive-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0;
}

.footer-brand,
.footer h2 {
  color: var(--soft-ivory);
}

.footer h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 8px;
}

.footer-bottom {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 252, 246, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 88px 0;
  }

  .hero-grid,
  .two-column,
  .request-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .benefits-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    right: 24px;
  }
}

@media (max-width: 820px) {
  .navbar {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 72px 20px auto 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(113, 128, 101, 0.1);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
  }

  .image-placeholder {
    min-height: 340px;
  }

  .hero-main-image {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 72px 0;
  }

  .brand img {
    width: 108px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .hero-actions,
  .hours {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .location .btn {
    width: 100%;
  }

  .benefits-grid,
  .product-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-text,
  .request-form {
    padding: 24px;
  }

  .info-card {
    min-height: auto;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin: 14px 6px 0;
  }

  .product-image {
    min-height: 210px;
  }

  .contact-card strong {
    min-height: auto;
  }
}
