:root {
  --ink: #1f241f;
  --paper: #f7f3eb;
  --cream: #efe7d9;
  --olive: #5f6a4e;
  --olive-dark: #36402f;
  --clay: #bd8067;
  --wine: #69484a;
  --line: rgba(31, 36, 31, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: var(--ink); color: white; }
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(100% - 40px, 1240px);
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--olive-dark);
  color: var(--paper);
  font: italic 700 1.55rem/1 Georgia, serif;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 700 1.1rem/1 Georgia, serif; letter-spacing: .035em; }
.brand-copy small { margin-top: .35rem; color: var(--olive); font-size: .62rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 2.1rem; font-size: .86rem; font-weight: 650; }
nav > a:not(.header-contact) { position: relative; }
nav > a:not(.header-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
nav > a:not(.header-contact):hover::after { transform: scaleX(1); }
.header-contact { border: 1px solid var(--ink); padding: .75rem 1.15rem; transition: 180ms ease; }
.header-contact:hover { background: var(--ink); color: white; }

.hero {
  width: min(100% - 40px, 1240px);
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding: 72px 0 88px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1.45rem; color: var(--olive); font-size: .74rem; font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.hero h1, .section-heading h2, .story h2, .business h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; }
.hero h1 { max-width: 640px; margin: 0; font-size: clamp(4.2rem, 7.2vw, 7.35rem); line-height: .88; }
.hero h1 em { color: var(--clay); font-weight: 400; }
.hero-intro { max-width: 570px; margin: 2rem 0 0; color: #52584f; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .9rem 1.2rem; font-size: .84rem; font-weight: 750; transition: 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--olive-dark); color: white; }
.button-primary:hover { background: var(--olive); }
.button-secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, .42); }
.button-secondary:hover { border-color: var(--ink); }
.availability { margin: 1.4rem 0 0; color: #6c7069; font-size: .78rem; }
.availability a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: .25rem; }

.hero-visual { position: relative; min-width: 0; box-shadow: 28px 28px 0 var(--cream); }
.hero-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(31, 36, 31, .22)); }
.hero-visual img { width: 100%; aspect-ratio: .88; display: block; object-fit: cover; object-position: 68% center; }
.hero-note { position: absolute; right: -16px; bottom: 34px; z-index: 2; width: min(260px, 58%); padding: 1.1rem 1.25rem; background: var(--olive-dark); color: white; }
.hero-note span { display: block; margin-bottom: .35rem; color: #ced4c5; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-note strong { font: 400 1.04rem/1.3 Georgia, serif; }

.section-shell { width: min(100% - 40px, 1240px); margin: 0 auto; }
.collections { padding: 110px 0 125px; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 4rem; margin-bottom: 3.4rem; }
.section-heading h2, .story h2, .business h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .99; }
.section-heading > p, .story-content > p:last-child, .business-intro > p:last-child { margin: 0; color: #5c6159; font-size: .97rem; line-height: 1.75; }
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.collection-card { min-height: 370px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.7rem; background: var(--paper); transition: 200ms ease; }
.collection-card:hover { color: white; }
.tone-arcilla:hover { background: var(--clay); }
.tone-oliva:hover { background: var(--olive); }
.tone-arena:hover { background: #a98e69; }
.tone-vino:hover { background: var(--wine); }
.collection-number { align-self: flex-start; border-bottom: 1px solid currentColor; padding-bottom: .35rem; font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.collection-card h3 { margin: 0 0 .8rem; font: 400 2rem/1 Georgia, serif; }
.collection-card p { margin: 0; color: #676b64; font-size: .88rem; line-height: 1.65; }
.collection-card:hover p { color: rgba(255,255,255,.8); }
.collection-card a { display: inline-flex; align-items: center; gap: .45rem; font-size: .77rem; font-weight: 750; }

.story { min-height: 430px; display: grid; grid-template-columns: .25fr 1fr .4fr; align-items: center; gap: 3rem; padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-quote { align-self: start; color: var(--clay); font: 400 9rem/.9 Georgia, serif; }
.story-content { max-width: 720px; }
.story-content > p:last-child { max-width: 600px; margin-top: 1.6rem; }
.story-seal { width: 148px; height: 148px; justify-self: end; border: 1px solid var(--olive); border-radius: 50%; display: grid; place-items: center; align-content: center; color: var(--olive-dark); transform: rotate(6deg); }
.story-seal span { font-size: .58rem; font-weight: 750; letter-spacing: .21em; text-transform: uppercase; }
.story-seal strong { margin: .25rem 0; font: italic 400 3.5rem/.9 Georgia, serif; }

.business { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(4rem, 8vw, 8rem); padding: 125px 0; }
.business-intro > p:last-child { max-width: 430px; margin-top: 1.5rem; }
.business-list { margin: 0; border-top: 1px solid var(--line); }
.business-row { display: grid; grid-template-columns: minmax(190px, .65fr) 1fr; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.business-row dt { color: var(--olive); font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.business-row dd { margin: 0; font-size: .94rem; font-weight: 650; line-height: 1.55; }
.business-row dd a { text-decoration: underline; text-decoration-color: rgba(31,36,31,.32); text-underline-offset: .28rem; }

.responsible { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.4rem; margin-bottom: 110px; padding: 2rem; background: var(--olive-dark); color: white; }
.shield { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #cfd8c6; border-radius: 50%; color: #cfd8c6; font-weight: 800; }
.responsible h2 { margin: 0 0 .35rem; font: 400 1.5rem/1.2 Georgia, serif; }
.responsible p { max-width: 720px; margin: 0; color: #d8ded4; font-size: .85rem; line-height: 1.6; }
.responsible > a { padding-bottom: .3rem; border-bottom: 1px solid rgba(255,255,255,.5); font-size: .8rem; font-weight: 750; }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; padding: 54px max(20px, calc((100vw - 1240px) / 2)); background: #1f241f; color: white; }
.footer-brand { display: flex; align-items: flex-start; gap: .9rem; }
.footer-brand .brand-mark { background: var(--paper); color: var(--olive-dark); }
.footer-brand strong { font: 400 1.2rem/1.2 Georgia, serif; }
.footer-brand p, footer address, .footer-legal { color: #bbc1b7; font-size: .78rem; font-style: normal; line-height: 1.7; }
.footer-brand p { margin: .35rem 0 0; }
.footer-legal { display: flex; flex-direction: column; align-items: flex-end; }
.footer-legal a { color: white; font-weight: 750; }
.footer-legal small { margin-top: .7rem; color: #929a8f; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr .82fr; gap: 3rem; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6rem); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .business { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 760px) {
  .site-header { height: 82px; }
  nav > a:not(.header-contact) { display: none; }
  nav { gap: 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 3rem; padding: 62px 0 76px; }
  .hero h1 { font-size: clamp(4rem, 18vw, 6.2rem); }
  .hero-intro { font-size: 1rem; }
  .hero-visual { box-shadow: 14px 14px 0 var(--cream); }
  .hero-visual img { aspect-ratio: 1 / 1.08; }
  .hero-note { right: -5px; }
  .collections, .business { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 1.4rem; margin-bottom: 2.4rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 315px; }
  .story { grid-template-columns: .15fr 1fr; gap: 1.5rem; padding: 74px 0; }
  .story-quote { font-size: 6rem; }
  .story-seal { display: none; }
  .business-row { grid-template-columns: 1fr; gap: .6rem; }
  .responsible { grid-template-columns: auto 1fr; margin-bottom: 74px; }
  .responsible > a { grid-column: 2; justify-self: start; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { align-items: flex-start; }
}

@media (max-width: 470px) {
  .site-header, .hero, .section-shell { width: min(100% - 28px, 1240px); }
  .brand-copy { display: none; }
  .header-contact { padding: .7rem .9rem; }
  .hero h1 { font-size: clamp(3.75rem, 19vw, 5.3rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .section-heading h2, .story h2, .business h2 { font-size: 2.75rem; }
  .story { grid-template-columns: 1fr; }
  .story-quote { height: 44px; }
  .responsible { grid-template-columns: 1fr; }
  .responsible > a { grid-column: 1; }
}

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