/* ============================================
   ABOSODION FARM — Design System
   Palette, type, and shared components
   ============================================ */

:root {
  --charcoal: #161310;
  --eggshell: #FBF6EC;
  --eggshell-dim: #F2EADA;
  --clay: #B5482A;
  --clay-dark: #8E3A21;
  --gold: #C99A3E;
  --gold-light: #E0C170;
  --olive: #3D4630;
  --olive-light: #5A6446;
  --line: rgba(22, 19, 16, 0.12);
  --line-light: rgba(251, 246, 236, 0.18);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--eggshell);
  background-image:
    radial-gradient(circle at 10% 5%, rgba(201, 154, 62, 0.38) 0%, transparent 42%),
    radial-gradient(circle at 92% 15%, rgba(181, 72, 42, 0.30) 0%, transparent 38%),
    radial-gradient(circle at 15% 60%, rgba(61, 70, 48, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(201, 154, 62, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(181, 72, 42, 0.20) 0%, transparent 50%);
  background-attachment: fixed;
  background-size: 100% 100%;
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--eggshell);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a.active {
  color: var(--clay-dark);
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width 0.25s ease;
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a.active:not(.btn-nav)::after {
  width: 100%;
}

.btn-nav {
  background: var(--charcoal);
  color: var(--eggshell);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-nav:hover {
  background: var(--clay);
  transform: translateY(-1px);
}

.btn-nav svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================
   STAMP / SEAL — signature element
   ============================================ */

.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}

.stamp::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px dashed rgba(22, 19, 16, 0.45);
  border-radius: 50%;
}

.stamp-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1.15;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid currentColor;
}

.tag-clay { color: var(--clay-dark); }
.tag-olive { color: var(--olive); }
.tag-gold { color: #8a661f; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--clay);
  color: var(--eggshell);
  box-shadow: 0 6px 18px rgba(181, 72, 42, 0.28);
}

.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(181, 72, 42, 0.34);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--eggshell);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--eggshell);
}

.btn-dark:hover {
  background: var(--olive);
  transform: translateY(-2px);
}

/* ============================================
   HERO (home page)
   ============================================ */

.hero {
  padding: 64px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-eyebrow .rule {
  width: 34px;
  height: 1.5px;
  background: var(--clay);
}

.hero-eyebrow span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-dark);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--clay-dark);
}

.hero p.lede {
  font-size: 1.08rem;
  color: #4a443c;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clay-dark);
}

.hero-stat span {
  font-size: 0.78rem;
  color: #6b6358;
  letter-spacing: 0.02em;
}

.hero-art {
  position: relative;
}

.hero-art-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transform: translateY(-18px);
  box-shadow: 0 30px 60px -20px rgba(22, 19, 16, 0.35);
}

.hero-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--eggshell);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px -12px rgba(22, 19, 16, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 230px;
}

.hero-art-badge .stamp {
  width: 52px;
  height: 52px;
}

.hero-art-badge .stamp-text {
  font-size: 0.42rem;
}

.hero-art-badge p {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section {
  padding: 100px 0;
}

.section-tight { padding: 70px 0; }

.section-dark {
  background: var(--charcoal);
  color: var(--eggshell);
}

.section-olive {
  background: var(--olive);
  color: var(--eggshell);
}

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-head.center .section-eyebrow {
  justify-content: center;
}

.section-eyebrow .rule {
  width: 28px;
  height: 1.5px;
  background: var(--clay);
}

.section-eyebrow span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-dark);
}

.section-dark .section-eyebrow span,
.section-olive .section-eyebrow span {
  color: var(--gold-light);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 14px;
}

.section-head p {
  color: #4a443c;
  font-size: 1.02rem;
}

.section-dark .section-head p,
.section-olive .section-head p {
  color: rgba(251, 246, 236, 0.75);
}

/* ============================================
   PRODUCT CATEGORY CARDS (home preview)
   ============================================ */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,19,16,0.85) 0%, rgba(22,19,16,0.15) 55%, transparent 80%);
}

.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: var(--eggshell);
}

.cat-card-body .tag {
  border-color: var(--gold-light);
  color: var(--gold-light);
  margin-bottom: 12px;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cat-card-body p {
  font-size: 0.86rem;
  color: rgba(251, 246, 236, 0.8);
}

/* ============================================
   WHY US / FEATURES
   ============================================ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feat {
  padding-top: 24px;
  border-top: 2px solid var(--line);
}

.feat .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.feat h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feat p {
  font-size: 0.94rem;
  color: #4a443c;
}

.section-dark .feat { border-top-color: var(--line-light); }
.section-dark .feat p { color: rgba(251,246,236,0.72); }

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--clay);
  border-radius: 22px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--eggshell);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(251, 246, 236, 0.85);
  font-size: 0.98rem;
}

.cta-band .btn-dark {
  background: var(--charcoal);
  flex-shrink: 0;
}

.cta-band .btn-dark:hover {
  background: var(--eggshell);
  color: var(--charcoal);
}

/* ============================================
   PRODUCTS PAGE — Crate label / menu board
   ============================================ */

.page-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero .section-eyebrow { margin-bottom: 18px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 640px;
}

.page-hero p {
  max-width: 560px;
  color: #4a443c;
  font-size: 1.02rem;
}

.board {
  margin-bottom: 90px;
}

.board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--charcoal);
}

.board-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
}

.board-head .stamp {
  width: 56px;
  height: 56px;
}

.board-head .stamp-text { font-size: 0.46rem; }

.board-photo {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 36px;
  align-items: center;
}

.board-photo-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/4;
}

.board-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-photo-note p {
  color: #4a443c;
  font-size: 1rem;
  margin-bottom: 18px;
}

.board-photo-note ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.board-photo-note li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
}

.board-photo-note li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.price-list {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 1px solid var(--line);
}

.price-row-info h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.price-row-info p {
  font-size: 0.86rem;
  color: #6b6358;
}

.price-row-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clay-dark);
  white-space: nowrap;
}

.price-row-amount span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b6358;
  display: block;
  margin-top: 2px;
}

.price-row-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--olive);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--olive);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.price-row-cta:hover {
  background: var(--olive);
  color: var(--eggshell);
}

.price-row-cta svg { width: 14px; height: 14px; }

.note-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--eggshell-dim);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 8px;
  font-size: 0.86rem;
  color: #4a443c;
}

.note-strip svg {
  width: 20px;
  height: 20px;
  color: var(--clay-dark);
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-q .plus::before { width: 10px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 10px; }

.faq-item.open .faq-q .plus {
  background: var(--clay);
  border-color: var(--clay);
}

.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after {
  background: var(--eggshell);
}

.faq-item.open .faq-q .plus::after {
  transform: scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding-bottom: 22px;
  color: #4a443c;
  font-size: 0.96rem;
  max-width: 600px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-method {
  background: var(--eggshell-dim);
  border-radius: 20px;
  padding: 38px;
  margin-bottom: 20px;
}

.contact-method-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.contact-method h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-method p {
  color: #4a443c;
  font-size: 0.96rem;
  margin-bottom: 22px;
}

.contact-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clay-dark);
  margin-bottom: 22px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-row .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--eggshell-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row .ico svg {
  width: 20px;
  height: 20px;
  color: var(--clay-dark);
}

.info-row h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.info-row p {
  font-size: 0.92rem;
  color: #4a443c;
}

.contact-art {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: sticky;
  top: 100px;
}

.contact-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.order-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.order-step .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--eggshell);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.order-step p {
  font-size: 0.92rem;
  color: #4a443c;
  padding-top: 4px;
}

.order-step strong {
  color: var(--charcoal);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--charcoal);
  color: var(--eggshell);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 26px;
}

.footer-brand .brand-name { color: var(--eggshell); }
.footer-brand .brand-name span { color: var(--gold-light); }

.footer-brand p {
  margin-top: 14px;
  max-width: 280px;
  font-size: 0.88rem;
  color: rgba(251, 246, 236, 0.62);
}

.footer-cols {
  display: flex;
  gap: 56px;
}

.footer-col h5 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(251, 246, 236, 0.78);
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(251, 246, 236, 0.45);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art-frame { transform: none; max-width: 420px; margin: 0 auto; }
  .hero-art-badge { left: 50%; transform: translateX(-50%); bottom: -24px; }
  .cat-grid { grid-template-columns: 1fr; gap: 18px; }
  .feat-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .board-photo { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-art { position: static; aspect-ratio: 16/9; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-cols { gap: 40px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--eggshell);
    padding: 24px 28px 28px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    align-items: flex-start;
  }
  .price-row { grid-template-columns: 1fr; gap: 10px; }
  .price-row-amount { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 500px) {
  .wrap { padding: 0 20px; }
  .hero { padding-top: 40px; }
  .section { padding: 70px 0; }
  .cta-band { border-radius: 16px; }
}
