:root {
  --espresso: #5A2706;
  --caramel: #D6A65A;
  --cream: #EAE1D7;
  --light: #F5EEE6;
  --dark: #3B1700;
  --white: #FFF9F2;
  --shadow: 0 24px 70px rgba(59, 23, 0, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--caramel);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--espresso);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.6rem, 13vw, 8.8rem);
  max-width: 800px;
}

h2 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  max-width: 850px;
}

h3 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(90, 39, 6, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--espresso);
  color: var(--light);
  box-shadow: 0 14px 30px rgba(90, 39, 6, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--dark);
}

.btn-secondary {
  border-color: rgba(90, 39, 6, 0.22);
  color: var(--espresso);
  background: rgba(245, 238, 230, 0.55);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--espresso);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 50;
}

.nav {
  width: min(var(--container), calc(100% - 26px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(90, 39, 6, 0.12);
  background: rgba(245, 238, 230, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(59, 23, 0, 0.08);
}

.logo {
  font-family: "Nunito", sans-serif;
  font-weight: 1000;
  font-size: 1.55rem;
  letter-spacing: -0.08em;
  color: var(--espresso);
  line-height: 0.8;
}

.logo span {
  display: block;
  font-size: 0.46rem;
  letter-spacing: 0.32em;
  font-weight: 900;
  margin-top: 8px;
  color: var(--caramel);
}

.logo-footer {
  color: #F5EEE6;
}

.nav-links {
  display: none;
  gap: 26px;
  align-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(90, 39, 6, 0.72);
}

.nav-links a:hover {
  color: var(--espresso);
}

.hero {
  min-height: 100vh;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 166, 90, 0.28), transparent 28%),
    radial-gradient(circle at 10% 74%, rgba(90, 39, 6, 0.11), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy p {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  max-width: 610px;
  margin: 26px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.55);
  border: 1px solid rgba(90, 39, 6, 0.12);
  color: rgba(90, 39, 6, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  min-height: 450px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: radial-gradient(circle at 30% 20%, rgba(214, 166, 90, 0.4), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(90, 39, 6, 0.24), transparent 34%),
    linear-gradient(135deg, #3b1700 0%, #5a2706 48%, #eae1d7 100%);
  animation: float 5s ease-in-out infinite;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(59, 23, 0, 0.62));
}

.hero-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  color: var(--light);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.hero-label strong {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.hero-label span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
  color: var(--caramel);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

section {
  padding: 92px 0;
}

.statement {
  background: var(--light);
  text-align: center;
  border-block: 1px solid rgba(90, 39, 6, 0.08);
}

.statement h2 {
  margin-inline: auto;
}

.spoon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(214, 166, 90, 0.16);
  color: var(--caramel);
  font-size: 1.6rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.section-head p {
  max-width: 620px;
}

.products {
  display: grid;
  gap: 26px;
}

.product {
  display: grid;
  overflow: hidden;
  background: var(--light);
  border: 1px solid rgba(90, 39, 6, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 55px rgba(59, 23, 0, 0.08);
}

.product-image {
  min-height: 310px;
  background:
    radial-gradient(circle at 30% 25%, rgba(214, 166, 90, 0.45), transparent 34%),
    linear-gradient(135deg, var(--espresso), var(--dark));
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    linear-gradient(to bottom, #8a4a1c 0 18%, #f4ddbf 18% 36%, #6b3514 36% 55%, #f6e7d4 55% 74%, #4a1c05 74% 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transform: rotate(-6deg);
}

.product-image.oreo::before {
  background:
    linear-gradient(to bottom, #21130e 0 18%, #f4e2cb 18% 36%, #1c120f 36% 55%, #f5e8d9 55% 74%, #2b1a13 74% 100%);
}

.product-image::after {
  content: "Eloy Misú";
  position: absolute;
  inset: auto 26px 26px auto;
  color: rgba(255, 249, 242, 0.86);
  font-weight: 1000;
  font-size: 1.3rem;
  letter-spacing: -0.08em;
}

.product-content {
  padding: 30px;
}

.product-content p {
  margin: 18px 0 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 166, 90, 0.14);
  color: var(--espresso);
  font-size: 0.86rem;
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  background: rgba(245, 238, 230, 0.68);
  border: 1px solid rgba(90, 39, 6, 0.10);
  border-radius: var(--radius-lg);
  padding: 24px;
  counter-increment: step;
  position: relative;
}

.step::before {
  content: "0" counter(step);
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  color: var(--caramel);
  display: block;
  margin-bottom: 16px;
}

.about-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.brand-board {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: radial-gradient(circle at 20% 25%, rgba(214, 166, 90, 0.45), transparent 30%),
    linear-gradient(145deg, #3B1700, #5A2706 45%, #D6A65A);
  min-height: 430px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gallery-item {
  min-height: 230px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 20%, rgba(214, 166, 90, 0.45), transparent 30%),
    linear-gradient(135deg, #fff6eb, #d3a36a 48%, #4c1d04);
  box-shadow: 0 14px 40px rgba(59, 23, 0, 0.08);
  border: 1px solid rgba(90, 39, 6, 0.08);
  padding: 20px;
  display: flex;
  align-items: end;
  font-weight: 1000;
  color: var(--light);
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(2) {
  min-height: 330px;
  background: linear-gradient(145deg, #3B1700, #5A2706 45%, #D6A65A);
}

.gallery-item:nth-child(3) {
  background: linear-gradient(145deg, #F5EEE6, #D6A65A);
  color: var(--espresso);
}

.gallery-item:nth-child(4) {
  background: linear-gradient(145deg, #5A2706, #EAE1D7);
}

.gallery-item:nth-child(5) {
  background: linear-gradient(145deg, #EAE1D7, #3B1700);
}

.delivery {
  background: var(--dark);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.delivery::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(214, 166, 90, 0.18);
  right: -140px;
  top: -140px;
}

.delivery h2,
.delivery h3 {
  color: var(--light);
}

.delivery p,
.delivery-text {
  color: rgba(245, 238, 230, 0.76);
  max-width: 680px;
  margin: 24px 0 30px;
}

.delivery .btn-secondary {
  color: var(--light);
  border-color: rgba(245, 238, 230, 0.22);
  background: transparent;
}

.reviews,
.blog-grid {
  display: grid;
  gap: 18px;
}

.review,
.blog-card,
.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(245, 238, 230, 0.74);
  border: 1px solid rgba(90, 39, 6, 0.10);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(59, 23, 0, 0.06);
}

.review strong {
  display: block;
  margin-top: 18px;
  font-weight: 1000;
}

.stars {
  color: var(--caramel);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.blog-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--espresso);
  font-weight: 1000;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--espresso);
  font: inherit;
  font-weight: 1000;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding-top: 16px;
}

.faq-item.active .faq-answer {
  max-height: 160px;
}

.site-footer {
  background: var(--espresso);
  color: var(--light);
  padding: 58px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links h3 {
  font-size: 1.3rem;
  color: #F5EEE6;
}

.footer-description {
  margin-top: 20px;
  max-width: 420px;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 238, 230, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(245, 238, 230, 0.62);
}

.float-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.float-actions a,
.float-actions button {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--light);
  box-shadow: 0 14px 34px rgba(59, 23, 0, 0.28);
  font-weight: 1000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.order-overlay {
  position: fixed;
  inset: 0;
  background: rgba(90, 39, 6, 0.28);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 200;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.order-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.order-modal {
  width: min(100%, 680px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 32px;
  background: var(--cream);
  box-shadow: 0 28px 85px rgba(59, 23, 0, 0.28);
  border: 1px solid rgba(90, 39, 6, 0.12);
}

.order-modal-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.order-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}

.order-modal-back {
  min-width: 52px;
  min-height: 52px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(90, 39, 6, 0.12);
  background: rgba(245, 238, 230, 0.9);
  color: var(--espresso);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.order-modal-back:hover {
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.order-modal-close {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(90, 39, 6, 0.12);
  background: rgba(245, 238, 230, 0.9);
  color: var(--espresso);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  transition: 0.25s ease;
}

.order-modal-close:hover {
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.order-modal-subtitle {
  margin-top: 8px;
  color: rgba(90, 39, 6, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.order-modal-body {
  flex: 1 1 auto;
  padding: 0 24px 24px;
  display: grid;
  gap: 8px;
}

.order-step-indicator {
  display: grid;
  gap: 4px;
}

.order-progress-text {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--espresso);
}

.order-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(90, 39, 6, 0.16);
  overflow: hidden;
}

.order-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--espresso), var(--caramel));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.order-step-header {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.order-step-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 4px;
}

.order-step-subtitle {
  font-size: 1rem;
  color: rgba(90, 39, 6, 0.72);
  line-height: 1.6;
}

.order-steps {
  display: grid;
}

.order-step {
  display: none;
  gap: 22px;
}

.order-step.active {
  display: grid;
}

.order-field,
.order-field label {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.order-field input,
.order-field textarea,
.order-field-grid input,
.order-field-grid textarea {
  width: 100%;
  border: 1px solid rgba(90, 39, 6, 0.18);
  border-radius: 16px;
  background: #fff;
  color: var(--espresso);
  padding: 14px 16px;
  font-size: 1rem;
}

.order-field-grid {
  display: grid;
  gap: 14px;
}

.order-field-grid label {
  display: grid;
  gap: 10px;
}

.order-field-full {
  grid-column: span 2;
}

.order-error {
  color: #b03b18;
  font-size: 0.86rem;
  display: none;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}

.order-actions.order-final-actions {
  justify-content: flex-end;
}

.order-steps .btn {
  min-width: 140px;
}

.flavor-grid {
  display: grid;
  gap: 16px;
}

.flavor-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(90, 39, 6, 0.14);
  background: rgba(255, 249, 242, 0.84);
  box-shadow: 0 18px 48px rgba(90, 39, 6, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.flavor-card.flavor-active {
  transform: translateY(-4px);
  border-color: var(--espresso);
  box-shadow: 0 24px 64px rgba(90, 39, 6, 0.18);
}

.flavor-card-image {
  min-height: 170px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
}

.flavor-cafe .flavor-card-image {
  background: linear-gradient(180deg, #7c4d2d 0%, #332010 45%, #4c2411 100%);
}

.flavor-oreo .flavor-card-image {
  background: linear-gradient(180deg, #2d1b12 0%, #1b0f0b 45%, #44332a 100%);
}

.flavor-card h3 {
  margin-bottom: 8px;
}

.flavor-card p {
  margin-bottom: 12px;
  color: rgba(90, 39, 6, 0.76);
}

.quantity-card {
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  gap: 14px;
  align-items: center;
  max-width: 320px;
  margin-bottom: 18px;
  border: 1px solid rgba(90, 39, 6, 0.16);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.quantity-btn {
  width: 100%;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(90, 39, 6, 0.16);
  background: rgba(245, 238, 230, 0.86);
  color: var(--espresso);
  font-size: 1.55rem;
  cursor: pointer;
}

.quantity-value {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

.order-subtotal,
.shipping-row span,
.summary-row span {
  color: rgba(90, 39, 6, 0.68);
  font-size: 0.96rem;
}

.order-subtotal {
  font-size: 1rem;
  margin-bottom: 22px;
}

.upsell-content {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 249, 242, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(90, 39, 6, 0.14);
}

.upsell-image {
  min-height: 180px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background: linear-gradient(135deg, #3b1700 0%, #5a2706 45%, #d6a65a 100%);
}

.upsell-copy {
  margin-bottom: 6px;
  font-weight: 900;
}

.upsell-economy {
  color: var(--espresso);
}

.order-cta-grid {
  display: grid;
  gap: 12px;
}

.shipping-card,
.summary-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid rgba(90, 39, 6, 0.14);
}

.shipping-row,
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.shipping-total {
  padding-top: 10px;
  border-top: 1px solid rgba(90, 39, 6, 0.12);
}

.shipping-total-value,
.summary-total {
  font-size: 1.1rem;
  color: var(--espresso);
}

.summary-products {
  display: grid;
  gap: 10px;
}

.summary-product {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-total-row {
  font-weight: 900;
}

.order-final-actions {
  justify-content: space-between;
}

.order-field-grid {
  grid-template-columns: 1fr;
}

.order-steps {
  margin-top: 0;
  padding-top: 0;
  gap: 0;
  align-content: start;
}

.order-step.active {
  display: block;
  margin: 0;
  padding: 0;
}

.order-step-header {
  margin: 0 0 14px 0;
  padding: 0;
  min-height: auto;
}

.order-step-title {
  margin: 0 0 8px 0;
  padding: 0;
}

.order-step-subtitle {
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .order-modal-card {
    padding: 32px;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-field-full {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .order-modal {
    width: calc(100% - 24px);
    max-height: 94vh;
    border-radius: 24px;
  }

  .order-modal-header {
    padding: 18px 18px 0;
  }

  .order-modal-body {
    padding: 0 18px 18px;
  }

  .order-modal-close,
  .order-modal-back {
    min-width: 46px;
    min-height: 46px;
  }

  .order-actions {
    justify-content: stretch;
  }

  .order-actions .btn {
    width: 100%;
  }

  .order-cta-grid {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .products {
    gap: 34px;
  }

  .product {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .product:nth-child(even) .product-image {
    order: 2;
  }

  .product-content {
    padding: 52px;
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
  }

  .gallery-item {
    min-height: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
    min-height: auto;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 2;
  }

  .reviews,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 759px) {
  .nav {
    min-height: 66px;
  }

  .nav .btn {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero {
    padding-top: 115px;
  }

  .hero-card {
    min-height: 390px;
  }

  .hero-label {
    flex-direction: column;
    align-items: start;
  }

  section {
    padding: 72px 0;
  }
}
