:root {
  --coffee: #4d2f12;
  --coffee-soft: #6d4d32;
  --cream: #f5efe6;
  --linen: #e7e2d3;
  --paper: #fffdf8;
  --ink: #27190e;
  --muted: #806b54;
  --line: #d8cbb8;
  --rose: #a43f5b;
  --leaf: #526d3d;
  --gold: #b98632;
  --shadow: 0 24px 70px rgba(77, 47, 18, 0.14);
}

* {
  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;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 203, 184, 0.8);
  display: grid;
  column-gap: 24px;
  row-gap: 5px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  left: 0;
  padding: 10px clamp(20px, 4vw, 64px) 12px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.brand img {
  display: block;
  height: 94px;
  object-fit: contain;
  width: 340px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 32px;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-content: center;
  justify-self: center;
  white-space: nowrap;
}

.nav a,
.header-cta {
  color: var(--coffee);
  font-size: 0.85rem;
  font-weight: 800;
}

.nav a {
  opacity: 0.76;
}

.nav a:hover {
  opacity: 1;
}

.header-cta {
  border: 1px solid var(--coffee);
  border-radius: 999px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding: 10px 18px;
}

.header-cta:hover {
  background: var(--coffee);
  color: var(--cream);
}

.section-band,
.section-block,
.intro,
.final-cta {
  padding-left: clamp(20px, 5vw, 88px);
  padding-right: clamp(20px, 5vw, 88px);
}

.hero {
  background: var(--cream);
  min-height: auto;
  padding-bottom: clamp(28px, 4vw, 54px);
  padding-top: clamp(28px, 4vw, 54px);
}

.eyebrow,
.item-kicker {
  color: var(--rose);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.catalog .section-heading .eyebrow,
.catalog .item-kicker,
.process .eyebrow,
.steps span,
.delivery .section-heading .eyebrow,
.fees dd,
.final-cta .eyebrow {
  color: #e1dec8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.catalog-buy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coffee);
  color: var(--cream);
}

.button-secondary {
  border: 1px solid var(--coffee);
  color: var(--coffee);
}

.hero-gallery {
  display: grid;
  gap: clamp(10px, 2vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: min(68vh, 720px);
  min-height: 540px;
}

.hero-panel {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-panel .hero-slide {
  animation: hero-slideshow 90s infinite;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.hero-panel-one .hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-panel-one .hero-slide:nth-child(2) { animation-delay: 15s; }
.hero-panel-one .hero-slide:nth-child(3) { animation-delay: 30s; }
.hero-panel-one .hero-slide:nth-child(4) { animation-delay: 45s; }
.hero-panel-one .hero-slide:nth-child(5) { animation-delay: 60s; }
.hero-panel-one .hero-slide:nth-child(6) { animation-delay: 75s; }

.hero-panel-two .hero-slide:nth-child(1) { animation-delay: -10s; }
.hero-panel-two .hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-panel-two .hero-slide:nth-child(3) { animation-delay: 20s; }
.hero-panel-two .hero-slide:nth-child(4) { animation-delay: 35s; }
.hero-panel-two .hero-slide:nth-child(5) { animation-delay: 50s; }
.hero-panel-two .hero-slide:nth-child(6) { animation-delay: 65s; }

.hero-panel-three .hero-slide:nth-child(1) { animation-delay: -5s; }
.hero-panel-three .hero-slide:nth-child(2) { animation-delay: 10s; }
.hero-panel-three .hero-slide:nth-child(3) { animation-delay: 25s; }
.hero-panel-three .hero-slide:nth-child(4) { animation-delay: 40s; }
.hero-panel-three .hero-slide:nth-child(5) { animation-delay: 55s; }
.hero-panel-three .hero-slide:nth-child(6) { animation-delay: 70s; }

@keyframes hero-slideshow {
  0%, 15.8% { opacity: 1; }
  16.7%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-panel .hero-slide:first-child {
    opacity: 1;
  }
}

.intro {
  align-items: center;
  background: var(--coffee);
  color: var(--cream);
  display: grid;
  gap: 32px;
  grid-template-columns: 112px minmax(0, 850px);
  justify-content: center;
  padding-bottom: 42px;
  padding-top: 42px;
}

.intro-mark {
  border: 1px solid rgba(246, 241, 232, 0.28);
  border-radius: 50%;
  display: grid;
  height: 106px;
  place-items: center;
  width: 106px;
}

.intro-mark img {
  width: 72px;
}

.intro p {
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  margin: 0;
}

.section-block {
  padding-bottom: 84px;
  padding-top: 84px;
}

.section-heading {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  margin-bottom: 44px;
}

.section-heading h2,
.process h2,
.final-cta h2 {
  color: var(--coffee);
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.catalog-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  min-height: 590px;
  overflow: hidden;
}

.catalog-item-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.catalog-item-reverse .catalog-photo {
  order: 2;
}

.catalog-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.catalog-copy {
  align-content: center;
  display: grid;
  padding: clamp(28px, 5vw, 74px);
}

.catalog-copy h3 {
  color: var(--coffee);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 22px;
}

.catalog-copy p {
  color: var(--coffee-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  max-width: 620px;
}

.catalog-copy ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 18px 0 30px;
  padding-left: 20px;
}

.catalog-buy {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.catalog-buy strong {
  align-items: center;
  background: #e1dec8;
  border-radius: 999px;
  color: var(--coffee);
  display: inline-flex;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  justify-content: center;
  line-height: 1;
  margin-right: 8px;
  min-height: 50px;
  padding: 10px 20px;
  text-align: center;
}

.catalog-buy strong span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: 8px;
}

.split-price {
  align-items: flex-start;
}

.process {
  align-items: start;
  background: var(--cream);
  display: grid;
  gap: clamp(36px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  padding-bottom: 82px;
  padding-top: 82px;
}

.process-copy p:last-child {
  color: var(--coffee-soft);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 590px;
}

.steps {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  min-height: 140px;
  padding: 22px;
}

.steps span {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.steps strong {
  color: var(--coffee);
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.delivery {
  background: var(--paper);
}

.delivery-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.8fr 1.2fr;
}

.periods,
.fees {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.periods h3,
.fees h3 {
  color: var(--coffee);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.periods ul,
.fees dl {
  margin: 0;
  padding: 0;
}

.periods li,
.fees div {
  align-items: center;
  border-top: 1px solid rgba(216, 203, 184, 0.72);
  display: flex;
  justify-content: space-between;
  min-height: 46px;
}

.periods li:first-child,
.fees div:first-child {
  border-top: 0;
}

.periods span,
.fees dt {
  color: var(--muted);
}

.periods strong,
.fees dd {
  color: #e1dec8;
  font-weight: 900;
  margin: 0;
}

.fees dl {
  column-gap: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.final-cta {
  align-items: center;
  background:
    linear-gradient(rgba(77, 47, 18, 0.86), rgba(77, 47, 18, 0.86)),
    url("assets/textura-flores.jpg") center/cover;
  color: var(--cream);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding-bottom: 78px;
  padding-top: 78px;
}

.final-cta .eyebrow {
  color: #e1dec8;
}

.final-cta h2 {
  color: var(--cream);
  max-width: 820px;
}

.final-cta .button-primary {
  background: var(--cream);
  color: var(--coffee);
  flex: 0 0 auto;
}

.site-footer {
  align-items: center;
  background: var(--coffee);
  color: var(--cream);
  display: grid;
  gap: 18px;
  grid-template-columns: 170px 1fr auto;
  padding: 28px clamp(20px, 5vw, 88px);
}

.site-footer img {
  width: 160px;
}

.site-footer p {
  margin: 0;
  opacity: 0.78;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 1120px) {
  .process,
  .delivery-layout {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 500px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .catalog-item,
  .catalog-item-reverse {
    grid-template-columns: 0.72fr 1fr;
    min-height: 520px;
  }

  .catalog-item-reverse .catalog-photo {
    order: 0;
  }

  .catalog-copy h3 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
  }

}

@media (max-width: 780px) {
  .site-header {
    gap: 5px;
    grid-template-columns: 1fr;
    padding: 8px 12px 10px;
  }

  .brand {
    grid-column: 1;
  }

  .brand img {
    height: 76px;
    width: 270px;
  }

  .nav {
    display: flex;
    gap: 20px;
    grid-column: 1;
  }

  .nav a {
    font-size: 0.78rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-bottom: 36px;
    padding-top: 36px;
  }

  .catalog-buy,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-gallery {
    height: min(58vh, 560px);
    min-height: 420px;
  }

  .intro,
  .catalog-item,
  .catalog-item-reverse,
  .fees dl,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro {
    justify-items: start;
  }

  .catalog-item {
    min-height: 0;
  }

  .catalog-photo {
    min-height: 430px;
  }

  .catalog-copy {
    padding: 28px;
  }

  .catalog-copy h3 {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .split-price strong {
    margin-bottom: 8px;
  }

  .process,
  .section-block {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .periods,
  .fees {
    padding: 22px;
  }
}

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

  .brand img {
    height: 70px;
    width: 250px;
  }

  .hero-gallery,
  .catalog-photo {
    height: 400px;
    min-height: 400px;
  }

  .section-heading h2,
  .process h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .catalog-copy {
    padding: 24px;
  }
}

@media (max-width: 340px) {
  .brand img {
    height: 64px;
    width: 220px;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 0.72rem;
  }
}
