/* ==========================================================================
   Nailora — shared stylesheet
   ========================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: oklch(62% 0.1 25 / 0.25); }

:root{
  --bg: oklch(97% 0.012 75);
  --card: oklch(99% 0.006 80);
  --ink: oklch(27% 0.03 40);
  --ink-soft: oklch(46% 0.025 40);
  --accent: oklch(62% 0.1 25);
  --accent-dark: oklch(50% 0.1 25);
  --gold: oklch(78% 0.09 85);
  --line: oklch(89% 0.014 60);
  --font-h: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-b: 'Poppins', -apple-system, Segoe UI, Roboto, sans-serif;
}

body{
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

.container{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ---------------- Header / Nav ---------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  gap: 16px;
}
.logo{
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span{ display:block; width: 20px; height: 2px; background: var(--ink); }
.nav{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}
.nav a.active{ color: var(--accent); font-weight: 600; }
.nav a.nav-cart{
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 3px;
  color: var(--ink-soft);
}
.nav a.nav-cta{
  background: var(--accent);
  color: #fff;
  padding: 11px 24px;
  border-radius: 3px;
  font-weight: 600;
}
.nav a.nav-cta.is-current{ background: var(--accent-dark); }

@media (max-width: 900px){
  .site-header{ padding: 16px 24px; }
  .nav-toggle{ display: flex; }
  .nav{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
  }
  .nav.is-open{ display: flex; }
  .nav a{ width: 100%; padding: 10px 0; }
  .nav a.nav-cart, .nav a.nav-cta{ width: 100%; text-align: center; margin-top: 6px; }
}

/* ---------------- Buttons ---------------- */
.btn{
  display: inline-block;
  padding: 16px 34px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary{ background: var(--accent); color: #fff; }
.btn-dark{ background: var(--ink); color: #fff; }
.btn-outline{ border-color: var(--ink); color: var(--ink); background: none; }
.btn-block{ width: 100%; }
.btn-sm{ padding: 10px 16px; font-size: 13px; border-radius: 3px; }
.btn:disabled{ opacity: 0.5; cursor: not-allowed; }

/* ---------------- Sections ---------------- */
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-card{ background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark{ background: var(--ink); color: var(--bg); padding: 80px 0; text-align: center; }
.section-dark h2{ font-family: var(--font-h); font-size: 34px; margin: 0 0 18px; font-weight: 600; }
.section-dark p{ font-size: 16px; opacity: 0.8; max-width: 560px; margin: 0 auto 32px; }

.eyebrow{
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 16px;
}
.center{ text-align: center; }

.page-hero{ padding: 72px 0 40px; max-width: 1000px; margin: 0 auto; text-align: center; }
.page-hero h1{ font-family: var(--font-h); font-size: 44px; margin: 0 0 20px; font-weight: 600; }
.page-hero p{ font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ---------------- Hero (home) ---------------- */
.hero{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0;
}
.hero h1{ font-family: var(--font-h); font-size: 56px; line-height: 1.1; margin: 0 0 24px; font-weight: 600; }
.hero p.lead{ font-size: 18px; line-height: 1.7; color: var(--ink-soft); max-width: 520px; margin: 0 0 36px; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats{ display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .num{ font-family: var(--font-h); font-size: 30px; font-weight: 700; }
.hero-stats .label{ color: var(--ink-soft); font-size: 14px; }
.hero-media img{ width: 100%; height: 560px; object-fit: cover; border-radius: 6px; }

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; padding: 48px 0; gap: 40px; }
  .hero h1{ font-size: 38px; }
  .hero-media img{ height: 340px; }
}

/* ---------------- Feature grid (home) ---------------- */
.features-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 64px 0; }
.feature h3{ font-family: var(--font-h); font-size: 20px; margin: 0 0 10px; }
.feature p{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

@media (max-width: 980px){ .features-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .features-grid{ grid-template-columns: 1fr; } }

/* ---------------- Section heading row ---------------- */
.section-head{ display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.section-head h2{ font-family: var(--font-h); font-size: 38px; margin: 0; font-weight: 600; }
.section-head a{ color: var(--accent); font-weight: 600; font-size: 15px; white-space: nowrap; }
h2.section-title{ font-family: var(--font-h); font-size: 34px; margin: 0 0 48px; font-weight: 600; text-align: center; }

/* ---------------- Service cards ---------------- */
.services-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card{ background: var(--card); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.service-card img{ width: 100%; height: 220px; object-fit: cover; }
.service-body{ padding: 24px; }
.service-body h3{ font-family: var(--font-h); font-size: 21px; margin: 0 0 8px; }
.service-body p{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0 0 14px; }
.service-price{ font-weight: 600; color: var(--accent); }

@media (max-width: 980px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .services-grid{ grid-template-columns: 1fr; } }

/* ---------------- Shop promo (home) ---------------- */
.promo-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.promo-grid img{ width: 100%; height: 420px; object-fit: cover; border-radius: 6px; }
.promo-grid h2{ font-family: var(--font-h); font-size: 34px; margin: 0 0 20px; font-weight: 600; }
.promo-grid p{ font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 28px; }

@media (max-width: 900px){
  .promo-grid{ grid-template-columns: 1fr; }
  .promo-grid img{ height: 280px; }
}

/* ---------------- Reviews ---------------- */
.reviews-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card{ background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 28px; }
.review-stars{ color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.review-card p{ font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.review-name{ font-weight: 600; font-size: 14px; }

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

/* ---------------- Cookie banner ---------------- */
.cookie-banner{
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: var(--bg);
  padding: 20px 56px; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; z-index: 100; flex-wrap: wrap;
}
.cookie-banner p{ margin: 0; font-size: 14px; max-width: 800px; }
.cookie-banner a{ color: var(--gold); }
.cookie-banner button{
  background: var(--accent); color: #fff; border: none; padding: 12px 28px;
  border-radius: 3px; font-weight: 600; font-size: 14px; cursor: pointer; white-space: nowrap;
}
.cookie-banner[hidden]{ display: none; }

@media (max-width: 640px){ .cookie-banner{ padding: 16px 20px; } }

/* ---------------- Footer ---------------- */
.site-footer{ background: var(--card); border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid{ display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand{ font-family: var(--font-h); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.footer-desc{ color: var(--ink-soft); font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col-title{ font-weight: 600; margin-bottom: 16px; font-size: 14px; }
.footer-links{ display: flex; flex-direction: column; gap: 10px; }
.footer-links a{ color: var(--ink-soft); font-size: 14px; }
.footer-bottom{ border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p{ margin: 0; color: var(--ink-soft); font-size: 13px; }
.footer-simple{ background: var(--card); border-top: 1px solid var(--line); padding: 32px 0; text-align: center; }
.footer-simple p{ margin: 0; color: var(--ink-soft); font-size: 13px; }
.footer-simple a{ color: var(--accent); }

@media (max-width: 980px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } .footer-bottom{ flex-direction: column; } }

/* ---------------- Values / team (o-nas) ---------------- */
.values-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-item{ text-align: center; }
.value-dot{ width: 56px; height: 56px; border-radius: 50%; background: var(--accent); margin: 0 auto 18px; }
.value-item h3{ font-family: var(--font-h); font-size: 19px; margin: 0 0 10px; }
.value-item p{ color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0; }

.team-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card img{ width: 100%; height: 280px; object-fit: cover; border-radius: 6px; margin-bottom: 16px; }
.team-card h3{ font-family: var(--font-h); font-size: 19px; margin: 0 0 4px; }
.team-role{ color: var(--accent); font-size: 13.5px; font-weight: 600; margin: 0 0 8px; }
.team-bio{ color: var(--ink-soft); font-size: 13.5px; line-height: 1.6; margin: 0; }

@media (max-width: 980px){ .values-grid, .team-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .values-grid, .team-grid{ grid-template-columns: 1fr; } }

/* ---------------- Price list (sluzby) ---------------- */
.price-block{ display: flex; flex-direction: column; gap: 56px; }
.price-category h2{ font-family: var(--font-h); font-size: 26px; margin: 0 0 20px; font-weight: 600; border-bottom: 2px solid var(--accent); padding-bottom: 12px; }
.price-row{ display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); gap: 24px; }
.price-row .name{ font-weight: 600; font-size: 16px; }
.price-row .desc{ color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.price-row .price{ font-family: var(--font-h); font-weight: 700; font-size: 18px; white-space: nowrap; color: var(--accent-dark); }

@media (max-width: 560px){
  .price-row{ flex-direction: column; gap: 4px; }
}

/* ---------------- Shop / products ---------------- */
.shop-toast{
  position: fixed; top: 90px; right: 32px; background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 4px; z-index: 200; font-size: 14px; font-weight: 500;
  transition: opacity .2s ease;
}
.shop-toast[hidden]{ display: none; }
.shop-category{ margin-bottom: 64px; }
.shop-category h2{ font-family: var(--font-h); font-size: 26px; margin: 0 0 24px; font-weight: 600; }
.shop-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card{ background: var(--card); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.product-card img{ width: 100%; height: 200px; object-fit: cover; }
.product-body{ padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-body h3{ font-family: var(--font-h); font-size: 17px; margin: 0 0 6px; font-weight: 600; }
.product-body p{ color: var(--ink-soft); font-size: 13px; line-height: 1.5; margin: 0 0 14px; flex: 1; }
.product-price-row{ display: flex; justify-content: space-between; align-items: center; }
.product-price{ font-weight: 700; font-size: 16px; color: var(--accent-dark); }
.add-cart-btn{ background: var(--ink); color: #fff; border: none; padding: 10px 16px; border-radius: 3px; font-weight: 600; font-size: 13px; cursor: pointer; }
.shop-shipping-note{ background: var(--card); border-top: 1px solid var(--line); padding: 56px 0; text-align: center; }
.shop-shipping-note p{ color: var(--ink-soft); font-size: 14px; margin: 0; }
.shop-shipping-note a{ color: var(--accent); font-weight: 600; }

@media (max-width: 980px){ .shop-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .shop-grid{ grid-template-columns: 1fr; } }

/* ---------------- Gallery ---------------- */
.gallery-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-grid img{ width: 100%; height: 260px; object-fit: cover; border-radius: 4px; }
.insta-row{ display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.insta-row img{ width: 180px; height: 180px; object-fit: cover; border-radius: 4px; }

@media (max-width: 980px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .gallery-grid{ grid-template-columns: 1fr; } }

/* ---------------- Blog ---------------- */
.blog-list{ display: flex; flex-direction: column; gap: 72px; max-width: 1000px; margin: 0 auto; }
.blog-article img{ width: 100%; height: 340px; object-fit: cover; border-radius: 4px; margin-bottom: 28px; }
.blog-tag{ color: var(--accent); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 10px; }
.blog-article h2{ font-family: var(--font-h); font-size: 30px; margin: 0 0 16px; font-weight: 600; }
.blog-article p{ font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 14px; }

@media (max-width: 640px){ .blog-article img{ height: 220px; } .blog-article h2{ font-size: 24px; } }

/* ---------------- Contact ---------------- */
.contact-grid{ display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-item{ margin-bottom: 24px; }
.contact-item .label{ font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.contact-item .value{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.contact-photo{ width: 100%; height: 260px; object-fit: cover; border-radius: 4px; margin-top: 8px; }
.billing-box{ margin-top: 32px; padding: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 4px; }
.billing-box .title{ font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.billing-box p{ color: var(--ink-soft); font-size: 13.5px; line-height: 1.7; margin: 0; }
.form-card{ background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 32px; }
.form-card h2{ font-family: var(--font-h); font-size: 22px; margin: 0 0 20px; font-weight: 600; }
.form-success{ text-align: center; padding: 60px 0; }
.form-success h2{ font-family: var(--font-h); font-size: 24px; margin: 0 0 14px; font-weight: 600; }
.form-success p{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

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

/* ---------------- Forms (shared) ---------------- */
.form-stack{ display: flex; flex-direction: column; gap: 16px; }
.field label{ font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=time], input:not([type]), textarea, select{
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 3px;
  font-size: 14px; font-family: inherit; background: #fff; color: var(--ink);
}
textarea{ resize: vertical; }
select{ appearance: auto; }
.checkbox-line{ display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--ink-soft); margin: 16px 0; }
.checkbox-line input{ margin-top: 2px; width: auto; }
.checkbox-line a{ color: var(--accent); }
.form-note{ font-size: 12px; color: var(--ink-soft); margin: 14px 0 0; }
.form-note a{ color: var(--accent); }

@media (max-width: 560px){ .field-row{ grid-template-columns: 1fr; } }

/* ---------------- Booking (rezervacia) ---------------- */
.booking-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.booking-info h1{ font-family: var(--font-h); font-size: 38px; margin: 0 0 20px; font-weight: 600; }
.booking-info p.lead{ font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 32px; }
.booking-details{ display: flex; flex-direction: column; gap: 18px; }
.booking-details .label{ font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.booking-details .value{ color: var(--ink-soft); font-size: 14px; }

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

/* ---------------- Cart ---------------- */
.cart-grid{ display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.cart-line{ display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); gap: 16px; flex-wrap: wrap; }
.cart-line .name{ font-weight: 600; font-size: 15.5px; }
.cart-line .unit{ color: var(--ink-soft); font-size: 13.5px; margin-top: 4px; }
.qty-controls{ display: flex; align-items: center; gap: 10px; }
.qty-controls button{ width: 30px; height: 30px; border: 1px solid var(--line); background: #fff; border-radius: 3px; cursor: pointer; font-size: 16px; }
.cart-line .line-total{ font-weight: 700; min-width: 70px; text-align: right; color: var(--accent-dark); }
.cart-line .remove{ background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 13px; text-decoration: underline; padding: 0; }
.cart-summary{ background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 28px; position: sticky; top: 100px; }
.cart-summary h2{ font-family: var(--font-h); font-size: 21px; margin: 0 0 20px; font-weight: 600; }
.summary-row{ display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 10px; color: var(--ink-soft); }
.summary-row.total{ font-size: 19px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--line); padding-top: 16px; margin-bottom: 24px; }
.cart-empty{ text-align: center; padding: 80px 0; }
.cart-empty p{ font-size: 17px; color: var(--ink-soft); margin: 0 0 28px; }

@media (max-width: 900px){ .cart-grid{ grid-template-columns: 1fr; } .cart-summary{ position: static; } }

/* ---------------- FAQ ---------------- */
.faq-item{ border-bottom: 1px solid var(--line); padding: 22px 0; cursor: pointer; }
.faq-row{ display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-row h3{ font-family: var(--font-h); font-size: 18px; margin: 0; font-weight: 600; }
.faq-icon{ font-size: 20px; color: var(--accent); flex-shrink: 0; }
.faq-answer{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin: 14px 0 0; max-width: 750px; }
.faq-answer[hidden]{ display: none; }

/* ---------------- Legal pages ---------------- */
.legal-header .container{ padding: 18px 56px; }
.legal-content{ max-width: 820px; margin: 0 auto; padding: 64px 0 100px; }
.legal-content h1{ font-family: var(--font-h); font-size: 38px; margin: 0 0 32px; font-weight: 600; }
.legal-content .updated{ color: var(--ink-soft); font-size: 14px; margin: 0 0 32px; }
.legal-content h2{ font-family: var(--font-h); font-size: 22px; margin: 36px 0 14px; font-weight: 600; }
.legal-content p{ font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.legal-content a{ color: var(--accent); }
.cookie-type-card{ background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 20px; }
.cookie-type-card .title{ font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.cookie-type-card p{ color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin: 0; }
.cookie-types{ display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }

.delivery-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; padding: 24px 0 40px; }
.info-card{ background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 28px; }
.info-card h2{ font-family: var(--font-h); font-size: 20px; margin: 0 0 18px; font-weight: 600; }
.info-row{ display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.info-row:last-of-type{ border-bottom: none; }
.info-row .val{ font-weight: 700; color: var(--accent-dark); }
.info-row .check{ font-weight: 600; }
.info-card .note{ color: var(--ink-soft); font-size: 13.5px; line-height: 1.7; margin: 18px 0 0; }
.legal-extra{ max-width: 900px; margin: 0 auto 96px; }
.legal-extra h2{ font-family: var(--font-h); font-size: 22px; margin: 0 0 14px; font-weight: 600; }
.legal-extra p{ font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.legal-extra a{ color: var(--accent); }

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

/* ---------------- Responsive container padding ---------------- */
@media (max-width: 640px){
  .container{ padding: 0 20px; }
  .section{ padding: 56px 0; }
  .section-tight{ padding: 40px 0; }
  h1{ word-break: break-word; }
}
