@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Fraunces:ital,wght@1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --white: #ffffff;
  --cream: #f6f3ec;
  --cream-deep: #ece5d5;
  --card: #ffffff;
  --black: #0f0e0c;
  --ink: #17150f;
  --ink-soft: #6c6558;
  --ink-faint: #a49c8b;
  --line: #ddd5c3;
  --accent: #b5451f;
  --accent-soft: #f2e2d6;
  --shadow-soft: 0 20px 45px rgba(15, 14, 12, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

em {
  font-style: italic;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  color: var(--accent);
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-brand .logo {
  color: var(--ink);
}

.footer-brand .logo .logo-img {
  border-color: var(--line);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a:not(.cart-link) {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s;
  position: relative;
}

.nav-links a:not(.cart-link):hover {
  color: white;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: white !important;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  transition: border-color 0.15s, background 0.15s;
}

.cart-link:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

[data-cart-badge] {
  background: var(--black);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- Language toggle ---------- */
.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-toggle button {
  padding: 6px 13px;
  border-radius: 1px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  transition: background 0.15s, color 0.15s;
}

.lang-toggle button.active {
  background: white;
  color: var(--black);
}

/* ---------- Hero: split editorial layout ---------- */
.hero {
  background: var(--accent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}

.hero-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: 5;
  padding: 10px;
  background: var(--cream);
  box-shadow:
    0 0 0 2px var(--accent),
    0 0 0 9px var(--cream),
    0 0 0 11px rgba(255, 255, 255, 0.6),
    0 30px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
}

.hero-seal:hover {
  transform: translate(-50%, -50%) scale(1.04) rotate(-2deg);
}

.hero-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.hero-text {
  padding: 90px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.08;
  margin: 0 0 22px;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero p.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 420px;
  margin: 0 0 8px;
  line-height: 1.6;
}

.hero p.lead strong {
  display: block;
  color: white;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 40px;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 2;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 64px 28px 48px; }
  .hero-visual { min-height: 340px; }
  .hero-photo { min-height: 340px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-seal {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 168px;
    height: 168px;
    padding: 7px;
  }

  .hero-seal:hover {
    transform: translate(-50%, 50%) scale(1.04) rotate(-2deg);
  }
}

/* ---------- Trust list ---------- */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-list .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.trust-list .row .mark {
  color: white;
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: var(--black);
  padding: 15px 32px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid white;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  font-family: "Inter", sans-serif;
}

.btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: white;
  color: var(--black);
  border-color: white;
}

/* On light backgrounds, invert the default button to black-on-transparent */
.section .btn:not(.btn-secondary),
.newsletter .btn,
.form-card .btn,
.cart-summary .btn,
.shop-card .btn {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.section .btn:not(.btn-secondary):hover,
.newsletter .btn:hover,
.form-card .btn:hover,
.cart-summary .btn:hover,
.shop-card .btn:hover {
  background: white;
  color: var(--black);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 24px;
}

.section.tight {
  padding: 60px 24px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 56px;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--accent);
  color: white;
}

.section-dark .section-title,
.section-dark h2 {
  color: white;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Why Solari: numbered list ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.why-item {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.why-item .num {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
}

.why-item h3 {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.why-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Recommended line / badge row ---------- */
.recommended-line {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 560px;
  margin: 0 auto 32px;
  font-family: "Fraunces", serif;
  font-style: italic;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 32px;
}

.badge-pill {
  background: transparent;
  border: 1px solid var(--ink);
  padding: 9px 18px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.92rem;
}

.checklist li .check {
  color: var(--accent);
  font-weight: 800;
}

/* ---------- Process steps ---------- */
.process-steps {
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 12px;
}

/* ---------- Warning / treat-not-meal card ---------- */
.warning-card {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.warning-card p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.warning-card p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Statement band (Made for Dogs) ---------- */
.statement-band {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.statement-band .rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 28px;
}

.statement-band p.big {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 32px 26px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
  border-color: var(--ink);
}

.product-emoji {
  font-size: 2.4rem;
  background: var(--cream);
  border-radius: 2px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.product-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-block;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 2px;
}

.product-card h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  min-height: 42px;
  margin: 0 0 16px;
  line-height: 1.5;
}

.product-price {
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

/* ---------- Testimonials (black section) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  padding: 30px;
}

.stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  color: white;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Shop / single product ---------- */
.shop-card {
  max-width: 440px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 44px 36px;
  text-align: center;
  color: var(--ink);
}

.shop-card .product-emoji {
  width: 100px;
  height: 100px;
  font-size: 2.8rem;
  margin-bottom: 22px;
  background: var(--cream);
}

.shop-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.shop-price-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.shop-weight {
  color: var(--ink-faint);
  font-size: 0.85rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.price-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.5;
}

/* ---------- Product details ---------- */
.details-block {
  max-width: 640px;
  margin: 52px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  text-align: left;
}

.details-block h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  margin-top: 28px;
  color: var(--ink);
}

.details-block h3:first-child {
  margin-top: 0;
}

.details-block p,
.details-block ul {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.details-block ul {
  padding-left: 18px;
}

.details-block ul li {
  margin-bottom: 4px;
}

/* ---------- Newsletter band ---------- */
.newsletter {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 88px 24px;
}

.newsletter h2 {
  color: white;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  font-size: 0.92rem;
  font-family: "Inter", sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-form button {
  white-space: nowrap;
  padding: 15px 26px;
}

.newsletter-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Contact ---------- */
.contact-card {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.contact-email {
  display: inline-block;
  margin-top: 20px;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  font-size: 0.92rem;
}

/* ---------- Cart page ---------- */
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 18px;
  margin-bottom: 14px;
  transition: box-shadow 0.15s;
}

.cart-item:hover {
  box-shadow: var(--shadow-soft);
}

.cart-item-emoji {
  font-size: 1.7rem;
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  margin: 0 0 4px;
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: "Archivo", sans-serif;
}

.cart-item-info .unit-price {
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-control button {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}

.qty-control button:hover {
  background: var(--accent-soft);
}

.cart-item-total {
  font-weight: 700;
  min-width: 70px;
  text-align: right;
  font-family: "Archivo", sans-serif;
}

.remove-btn {
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-summary {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-top: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--ink-soft);
}

.empty-state .emoji {
  font-size: 2.8rem;
  margin-bottom: 20px;
  opacity: 0.6;
}

.empty-state h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
}

/* ---------- Checkout form ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

@media (max-width: 720px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; gap: 12px; }
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 34px;
}

.form-card h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 2px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  background: var(--cream);
  font-family: "Inter", sans-serif;
  transition: border-color 0.15s, background 0.15s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--ink);
  background: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-banner {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 28px;
}

.order-summary-list {
  margin-bottom: 18px;
}

.order-summary-list .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

/* ---------- Confirmation ---------- */
.confirmation {
  text-align: center;
  padding: 110px 24px;
}

.confirmation .emoji {
  font-size: 3rem;
  margin-bottom: 24px;
  opacity: 0.7;
}

.confirmation h1 {
  margin-bottom: 12px;
  font-size: 2rem;
  text-transform: uppercase;
}

.confirmation .order-id {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: 2px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0;
  font-family: "Archivo", sans-serif;
  letter-spacing: 0.03em;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--cream);
  padding: 68px 24px 30px;
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 44px;
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 13px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
