@import url('fonts/fonts.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral: #D85A30;
  --coral-light: #FAECE7;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-faint: #999;
  --bg: #fdfcf9;
  --surface: #f5f2ec;
  --border: rgba(0,0,0,0.1);
  --border-soft: rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --serif: 'Fraunces', serif;
  --sans: 'Instrument Sans', sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* NAVIGATION */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,252,249,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 60px;
}
.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}
.nav-logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); display: inline-block;
  margin-left: 1px;
}
.nav-logo .brand-a { color: var(--coral); }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 12px; font-weight: 500;
  background: var(--text); color: #fff;
  border-radius: 100px; padding: 7px 16px;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-mobile-toggle { display: none; cursor: pointer; font-size: 20px; }

/* HERO */
.hero {
  background: var(--surface);
  padding: 5rem 1.5rem 4rem;
  border-bottom: 0.5px solid var(--border);
  text-align: center;
}
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--coral);
  background: var(--coral-light); border-radius: 100px;
  padding: 4px 14px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(36px, 6vw, 62px);
  font-weight: 700; line-height: 1.08; margin-bottom: 1rem;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--text-muted); }
.hero p {
  font-size: 16px; color: var(--text-muted); line-height: 1.7;
  max-width: 500px; margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-size: 14px; font-weight: 500;
  background: var(--text); color: #fff;
  border-radius: 100px; padding: 12px 24px;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  font-size: 14px; color: var(--text-muted);
  border: 0.5px solid var(--border); border-radius: 100px;
  padding: 12px 24px; background: white;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: var(--text-muted); }

/* MINI MANIFESTO */
.mini-manifesto {
  background: var(--bg-warm, #f8f3ec);
  padding: 5rem 2.5rem;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.mini-manifesto-inner {
  max-width: 560px;
  margin: 0 auto;
}
.manifesto-rule {
  width: 40px;
  height: 1px;
  background: var(--coral, #c8956c);
  margin: 0 auto;
}
.manifesto-kicker {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--coral, #8b5e3c);
  margin: 2rem 0 1.75rem;
  opacity: 0.5;
}
.manifesto-headline {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text, #3d2b1f);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.manifesto-sub {
  font-size: 15px;
  color: var(--text-muted, #8b5e3c);
  line-height: 1.8;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 2.25rem;
}

/* SECTION HEADERS */
.section { padding: 3rem 1.5rem; }
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 2rem;
}
.section-title { font-family: var(--serif); font-size: 26px; font-weight: 700; }
.section-link { font-size: 13px; color: var(--coral); }
.section-link:hover { text-decoration: underline; }

/* RECIPE CARDS */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.recipe-card {
  background: white; border-radius: var(--radius);
  border: 0.5px solid var(--border);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.recipe-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.recipe-card-accent { height: 5px; }
.recipe-card-body { padding: 1.25rem; }
.recipe-badge {
  font-size: 10px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 8px; display: block;
}
.recipe-card-title {
  font-family: var(--serif); font-size: 19px; font-weight: 700;
  line-height: 1.2; margin-bottom: 8px;
}
.recipe-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.recipe-meta { display: flex; gap: 12px; }
.recipe-meta span {
  font-size: 11px; background: var(--surface); border-radius: 100px;
  padding: 3px 10px; color: var(--text-muted);
}

/* FEATURED ARTICLE */
.featured {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 3rem 1.5rem;
}
.featured-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.featured-label {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 1rem;
}
.featured-title {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.featured-title em { font-style: italic; font-weight: 300; }
.featured-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.featured-visual {
  background: white; border-radius: var(--radius);
  border: 0.5px solid var(--border);
  padding: 2rem; text-align: center;
}
.featured-visual-title { font-family: var(--serif); font-size: 15px; font-weight: 600; margin-bottom: 1.5rem; color: var(--text-muted); }
.ratio-display { display: flex; align-items: flex-end; justify-content: center; gap: 8px; margin-bottom: 1rem; }
.ratio-block {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.ratio-fill { width: 52px; border-radius: 6px; }
.ratio-num { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.ratio-name { font-size: 11px; color: var(--text-muted); }

/* GUIDES LIST */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.guide-card {
  background: white; border-radius: var(--radius);
  border: 0.5px solid var(--border); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s;
}
.guide-card:hover { transform: translateY(-2px); }
.guide-card-top { display: flex; align-items: center; justify-content: space-between; }
.guide-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 100px; background: var(--surface); color: var(--text-muted);
}
.guide-read-time { font-size: 11px; color: var(--text-faint); }
.guide-title { font-family: var(--serif); font-size: 17px; font-weight: 700; line-height: 1.3; }
.guide-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.guide-arrow { font-size: 16px; color: var(--coral); align-self: flex-end; }

/* SPIRITS RATINGS */
.spirits-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.spirits-card {
  background: white; border-radius: var(--radius);
  border: 0.5px solid var(--border); overflow: hidden;
}
.spirits-card-header { padding: 1.25rem 1.5rem; border-bottom: 0.5px solid var(--border-soft); }
.spirits-card-title { font-family: var(--serif); font-size: 16px; font-weight: 700; }
.spirits-card-sub { font-size: 12px; color: var(--text-muted); }
.spirit-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 1.5rem; border-bottom: 0.5px solid var(--border-soft);
}
.spirit-item:last-child { border-bottom: none; }
.spirit-name { font-size: 14px; font-weight: 500; }
.spirit-type { font-size: 11px; color: var(--text-faint); }
.spirit-score { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--coral); }

/* NEWSLETTER */
.newsletter {
  background: var(--text); color: white;
  padding: 4rem 1.5rem; text-align: center;
  border-top: 0.5px solid var(--border);
}
.newsletter-tag {
  display: inline-block; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.newsletter h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.1; margin-bottom: 0.75rem;
}
.newsletter h2 em { font-style: italic; font-weight: 300; opacity: 0.7; }
.newsletter p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: 8px; max-width: 420px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: 100px;
  border: 0.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
  color: white; font-family: var(--sans); font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 22px; border-radius: 100px;
  background: var(--coral); color: white;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  border: none; cursor: pointer; white-space: nowrap;
  transition: opacity .2s;
}
.newsletter-form button:hover { opacity: 0.9; }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 12px; }

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  padding: 2.5rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--serif); font-size: 16px; font-weight: 700; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-copy { font-size: 12px; color: var(--text-faint); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--text-faint); transition: color .2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--text); color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: 13px; line-height: 1.6;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner a { color: var(--coral); text-decoration: underline; }
.cookie-banner-text { flex: 1; min-width: 240px; }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  border: none; border-radius: 100px; padding: 8px 20px;
  cursor: pointer; transition: opacity .2s; white-space: nowrap;
}
.cookie-btn-accept { background: var(--coral); color: white; }
.cookie-btn-accept:hover { opacity: 0.9; }
.cookie-btn-decline { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.22); }

/* ARTICLE PAGE */
.article-hero { padding: 4rem 1.5rem 3rem; background: var(--surface); border-bottom: 0.5px solid var(--border); text-align: center; }
.article-hero .breadcrumb { font-size: 12px; color: var(--text-faint); margin-bottom: 1.5rem; }
.article-hero .breadcrumb span { color: var(--coral); }
.article-hero h1 { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.1; max-width: 700px; margin: 0 auto 1rem; }
.article-meta { display: flex; gap: 16px; justify-content: center; font-size: 13px; color: var(--text-faint); flex-wrap: wrap; }
.article-body { max-width: 720px; margin: 0 auto; padding: 3rem 1.5rem; }
.article-body p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; }
.article-body h2 { font-family: var(--serif); font-size: 26px; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--text); }
.article-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 2rem 0 0.75rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body li { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.article-body .recipe-box { background: var(--surface); border-radius: var(--radius); border: 0.5px solid var(--border); padding: 1.5rem 2rem; margin: 2rem 0; }
.article-body .recipe-box h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; margin: 0 0 1rem; color: var(--text); }
.article-body .recipe-box ul { padding-left: 1.25rem; }
.article-body .recipe-box li { font-size: 15px; color: var(--text-muted); margin-bottom: 4px; }
.article-body blockquote { border-left: 3px solid var(--coral); padding: 0.5rem 0 0.5rem 1.5rem; margin: 2rem 0; }
.article-body blockquote p { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--text); }

/* ARTICLES LIST PAGE */
.articles-header { padding: 3rem 1.5rem 2rem; background: var(--surface); border-bottom: 0.5px solid var(--border); }
.articles-header h1 { font-family: var(--serif); font-size: 36px; font-weight: 700; margin-bottom: 0.5rem; }
.articles-header p { color: var(--text-muted); font-size: 15px; }
.articles-list { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem; }
.article-row {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0; border-bottom: 0.5px solid var(--border-soft);
}
.article-row:last-child { border-bottom: none; }
.article-row-num { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--surface); -webkit-text-stroke: 1px var(--border); min-width: 40px; }
.article-row-content { flex: 1; }
.article-row-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--coral); font-weight: 500; margin-bottom: 6px; }
.article-row-title { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.25; margin-bottom: 6px; }
.article-row-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.article-row-meta { font-size: 12px; color: var(--text-faint); margin-top: 8px; }

/* FINGER FOOD PAGE */
.fingerfood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.ff-card {
  background: white; border-radius: var(--radius);
  border: 0.5px solid var(--border); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.ff-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.ff-card-header { padding: 1.25rem 1.5rem 0; }
.ff-card-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 6px; display: block;
}
.ff-card-title { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.2; margin-bottom: 6px; }
.ff-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.ff-card-pair {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 1.5rem; border-top: 0.5px solid var(--border-soft);
  font-size: 12px; color: var(--text-muted);
}
.ff-card-pair-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ff-recipe-steps { padding: 0 1.5rem 1.25rem; }
.ff-recipe-steps h4 { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); margin: 1rem 0 8px; }
.ff-ingredient-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ff-ingredient { font-size: 12px; background: var(--surface); border-radius: 100px; padding: 3px 10px; color: var(--text-muted); }
.ff-step { font-size: 13px; color: var(--text-muted); line-height: 1.6; padding: 6px 0; border-bottom: 0.5px solid var(--border-soft); display: flex; gap: 10px; }
.ff-step:last-child { border-bottom: none; }
.ff-step-num { font-family: var(--serif); font-weight: 700; color: var(--coral); font-size: 15px; flex-shrink: 0; width: 16px; }

/* ROME VENUES PAGE */
.rome-intro { max-width: 680px; margin: 0 auto; padding: 3rem 1.5rem 2rem; text-align: center; }
.rome-intro h2 { font-family: var(--serif); font-size: 32px; font-weight: 700; margin-bottom: 1rem; }
.rome-intro p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.neighborhood-section { padding: 2rem 1.5rem; border-top: 0.5px solid var(--border); }
.neighborhood-section:first-of-type { border-top: none; }
.neighborhood-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 8px; }
.neighborhood-name { font-family: var(--serif); font-size: 28px; font-weight: 700; }
.neighborhood-vibe { font-size: 13px; color: var(--text-muted); font-style: italic; }
.venue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.venue-card {
  background: white; border-radius: var(--radius);
  border: 0.5px solid var(--border); padding: 1.25rem;
  display: flex; flex-direction: column; gap: 10px;
}
.venue-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.venue-name { font-family: var(--serif); font-size: 18px; font-weight: 700; line-height: 1.2; }
.venue-type {
  font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap; background: var(--surface); border-radius: 100px;
  padding: 3px 10px; color: var(--text-muted); flex-shrink: 0;
}
.venue-address { font-size: 12px; color: var(--text-faint); }
.venue-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.venue-must-order { 
  background: var(--coral-light); border-radius: var(--radius-sm);
  padding: 10px 12px; font-size: 12px; color: var(--coral);
}
.venue-must-order strong { font-weight: 500; }
.venue-details { display: flex; gap: 12px; flex-wrap: wrap; }
.venue-detail { font-size: 11px; color: var(--text-faint); display: flex; align-items: center; gap: 4px; }
.venue-price { font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--text); }
.rome-tip {
  background: var(--surface); border-radius: var(--radius); border: 0.5px solid var(--border);
  padding: 1.25rem 1.5rem; margin: 1.5rem; display: flex; gap: 14px; align-items: flex-start;
}
.rome-tip-icon { font-size: 20px; flex-shrink: 0; }
.rome-tip-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.rome-tip-text strong { color: var(--text); font-weight: 500; }

/* ARCHIVE / EXTENDED ARTICLE LIST */
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.archive-card {
  background: white; border-radius: var(--radius);
  border: 0.5px solid var(--border); padding: 1.25rem;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .15s;
}
.archive-card:hover { transform: translateY(-2px); }
.archive-card-month { font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-faint); }
.archive-card-title { font-family: var(--serif); font-size: 16px; font-weight: 700; line-height: 1.3; flex: 1; }
.archive-card-meta { font-size: 12px; color: var(--text-faint); }

/* HOMEPAGE ENHANCED — 6-month feel */
.homepage-archive { background: var(--surface); border-top: 0.5px solid var(--border); padding: 3rem 1.5rem; }
.issue-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); border: 0.5px solid var(--border); border-radius: 100px;
  padding: 4px 12px; margin-bottom: 1.5rem;
}
.issue-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.popular-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.popular-item { background: white; padding: 1rem 1.25rem; }
.popular-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--coral-light); -webkit-text-stroke: 1px var(--coral); line-height: 1; margin-bottom: 6px; }
.popular-title { font-family: var(--serif); font-size: 15px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.popular-reads { font-size: 11px; color: var(--text-faint); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .mini-manifesto { padding: 3.5rem 1.5rem; }
  .manifesto-headline { font-size: 19px; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-visual { display: none; }
  .spirits-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .mini-manifesto { padding: 2.5rem 1rem; }
  .manifesto-headline { font-size: 17px; }
  .manifesto-sub { font-size: 14px; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .section { padding: 2rem 1rem; }
}
