/* ============================================
   RAIWTID AI CONSULTING — Main Stylesheet
   ============================================ */

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

/* --- Variables --- */
:root {
  --green-primary: #1A6B3A;
  --green-secondary: #27AE60;
  --green-light: #E8F5E9;
  --yellow: #FFD100;
  --yellow-dark: #E6BC00;
  --black: #0A0A0A;
  --dark: #111111;
  --text-dark: #1A1A1A;
  --text-gray: #555555;
  --text-light: #888888;
  --bg-light: #F7F9F7;
  --bg-white: #FFFFFF;
  --border: #E0E0E0;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-pad: 80px 0;
  --max-width: 1200px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { color: var(--text-gray); line-height: 1.8; }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--green-primary); color: #000; border-color: var(--green-primary); }
.btn-secondary:hover { background: #145530; border-color: #145530; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: #fff; color: var(--green-primary); transform: translateY(-2px); }
.btn-outline-green { background: transparent; color: var(--green-primary); border-color: var(--green-primary); }
.btn-outline-green:hover { background: var(--green-primary); color: #fff; transform: translateY(-2px); }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; height: 240px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--text-dark); padding: 10px 18px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green-primary); background: var(--green-light); }
.nav-cta { margin-left: 12px; }
.nav-cta .btn { font-size: 1rem; padding: 12px 26px; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle span { display: block; width: 28px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 300px 0 70px;
  background: linear-gradient(135deg, var(--green-primary) 0%, #0D4A28 100%);
  color: #fff; text-align: center;
}
.page-hero h1 { color: #000; margin-bottom: 16px; }
.page-hero p { color: rgba(0,0,0,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; color: rgba(0,0,0,0.6); }
.breadcrumb a { color: #000; }

/* --- Section --- */
.section { padding: var(--section-pad); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--green-light); color: var(--green-primary);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px;
  border-radius: 100px; margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.02rem; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--dark); }
.text-center { text-align: center; }

/* --- Cards --- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card {
  background: #fff; border-radius: var(--radius-md); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-primary); }
.card-icon {
  width: 56px; height: 56px; background: var(--green-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-primary); font-weight: 600; font-size: 0.9rem;
  margin-top: 16px; font-family: var(--font-heading); transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--green-secondary); }

/* --- Audience Grid --- */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.audience-card {
  text-align: center; padding: 36px 24px; background: #fff;
  border-radius: var(--radius-md); border: 2px solid var(--border); transition: var(--transition);
}
.audience-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-card .icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.audience-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.audience-card p { font-size: 0.88rem; }

/* --- Mission Banner --- */
.mission-banner {
  background: linear-gradient(135deg, var(--green-primary), #0A3D22);
  color: #000; padding: 88px 0; text-align: center;
}
.mission-banner h2 { color: #000; margin-bottom: 24px; }
.mission-banner p { color: rgba(0,0,0,0.85); font-size: 1.05rem; max-width: 760px; margin: 0 auto 36px; line-height: 1.9; }

/* --- CTA Section --- */
.cta-section { padding: 80px 0; background: var(--black); text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.02rem; max-width: 540px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Hero (Home) --- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #082118 0%, #1A6B3A 55%, #0D4A28 100%);
  position: relative; overflow: hidden; padding-top: 240px; padding-bottom: 60px;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,209,0,0.07) 0%, transparent 70%); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(39,174,96,0.1) 0%, transparent 70%); pointer-events: none;
}
.hero-oval {
  position: relative; z-index: 1;
  background: rgba(255,209,0,0.10);
  border: 1.5px solid rgba(255,209,0,0.38);
  border-radius: 48px;
  padding: 56px 64px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.hero-oval-left { flex-shrink: 0; }
.hero-oval-headshot {
  width: 200px; height: 240px; object-fit: cover; object-position: top;
  border-radius: 24px; border: 2px solid rgba(255,209,0,0.4);
  display: block;
}
.hero-oval-right {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px; flex: 1;
}
.hero-oval-logo { height: 70px; width: auto; }
.hero-oval h1 { color: var(--yellow); font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.25; margin: 0; }
.hero-oval-lead { font-size: 1.0rem; color: rgba(255,255,255,0.88); line-height: 1.8; margin: 0; }
.hero-oval-body { font-size: 0.97rem; color: rgba(255,255,255,0.75); line-height: 1.85; margin: 0; }
.hero-oval .cta-buttons { flex-wrap: wrap; margin: 4px 0; }
.hero-oval-author {
  font-size: 0.82rem; color: rgba(255,255,255,0.58); font-family: var(--font-heading); font-weight: 500;
  border-top: 1px solid rgba(255,209,0,0.22); padding-top: 16px; width: 100%;
}

/* --- Forms --- */
.form-section { padding: var(--section-pad); }
.form-wrapper {
  max-width: 640px; margin: 0 auto; background: #fff;
  border-radius: var(--radius-lg); padding: 48px 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-dark); background: #fff; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(26,107,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success.show { display: block; }
.form-success h3 { color: var(--green-primary); margin-bottom: 12px; font-size: 1.4rem; }
.form-success p { color: var(--text-gray); }
.checkmark { font-size: 3rem; margin-bottom: 16px; display: block; }

/* --- Services Page --- */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-visual { order: 2; }
.service-block.reverse .service-content { order: 1; }
.service-visual {
  background: linear-gradient(135deg, var(--green-primary), #0A3D22);
  border-radius: var(--radius-lg); padding: 52px 40px; text-align: center; color: #000;
}
.service-icon-lg { font-size: 4rem; margin-bottom: 20px; display: block; }
.service-visual h3 { color: #000; font-size: 1.4rem; margin-bottom: 12px; }
.service-visual p { color: rgba(0,0,0,0.75); font-size: 0.92rem; }
.service-content h2 { margin-bottom: 16px; }
.service-content > p { margin-bottom: 24px; line-height: 1.85; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-gray); }
.feature-check {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--green-light);
  color: var(--green-primary); border-radius: 50%; font-size: 0.7rem;
  font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.audiences-served { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.audience-badge {
  background: var(--green-light); color: var(--green-primary);
  padding: 5px 12px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; font-family: var(--font-heading);
}

/* --- Case Studies --- */
.case-studies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.cs-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cs-header { padding: 28px; background: linear-gradient(135deg, var(--green-primary), #0A3D22); }
.cs-tag { display: inline-block; background: rgba(0,0,0,0.15); color: #000; font-size: 0.75rem; font-weight: 600; font-family: var(--font-heading); letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.cs-header h3 { color: #000; font-size: 1.15rem; }
.cs-body { padding: 28px; }
.cs-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.cs-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-light); font-family: var(--font-heading); }
.cs-body p { font-size: 0.93rem; margin-bottom: 20px; }
.cs-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px; background: var(--bg-light); border-radius: var(--radius-sm); }
.result-item { text-align: center; }
.result-value { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; color: var(--green-primary); display: block; }
.result-label { font-size: 0.72rem; color: var(--text-light); }

/* --- About --- */
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.approach-card { padding: 32px 24px; background: #fff; border-radius: var(--radius-md); border-top: 4px solid var(--green-primary); box-shadow: var(--shadow-sm); transition: var(--transition); }
.approach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.approach-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 12px; }
.approach-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { padding: 32px 24px; background: #fff; border-radius: var(--radius-md); border-left: 4px solid var(--yellow); box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.value-card h3 { color: var(--green-primary); margin-bottom: 10px; font-size: 1.05rem; }

/* --- Calendly Page --- */
.calendly-page { padding: 60px 0; background: var(--bg-light); }
.calendly-inner { max-width: 900px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.calendly-info { display: grid; grid-template-columns: 1fr 2fr; gap: 0; min-height: 600px; }
.calendly-sidebar { background: linear-gradient(135deg, var(--green-primary), #0A3D22); padding: 48px 36px; color: #000; }
.calendly-sidebar h3 { color: #000; margin-bottom: 16px; }
.calendly-sidebar p { color: rgba(0,0,0,0.8); font-size: 0.93rem; margin-bottom: 28px; line-height: 1.7; }
.calendly-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(0,0,0,0.75); }
.calendly-embed { padding: 0; }
.calendly-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; min-height: 500px; padding: 48px; text-align: center; background: var(--bg-light);
}
.calendly-placeholder h3 { color: var(--dark); margin-bottom: 12px; }
.calendly-placeholder p { font-size: 0.9rem; margin-bottom: 24px; max-width: 340px; }
.calendly-placeholder .note { font-size: 0.8rem; color: var(--text-light); margin-top: 16px; }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-family: var(--font-heading); font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--text-gray); margin: 0; }

/* --- Footer --- */
footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.75; max-width: 270px; }
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom span { color: var(--yellow); }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
  background: var(--green-primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition);
  z-index: 999; border: none; font-size: 1.1rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green-secondary); transform: translateY(-3px); }

/* --- Fade animations --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 992px) {
  .service-block { grid-template-columns: 1fr; gap: 36px; }
  .service-block.reverse .service-visual { order: unset; }
  .service-block.reverse .service-content { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calendly-info { grid-template-columns: 1fr; }
  .calendly-sidebar { padding: 36px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-container { height: 100px; }
  .nav-logo img { height: 90px !important; }
  .page-hero { padding: 160px 0 50px; }
  .hero { padding-top: 100px; }
  .hero-oval { padding: 44px 48px; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px 0; }

  /* Navbar */
  .nav-container { height: 80px; padding: 0 16px; }
  .nav-logo img { height: 70px !important; }
  .nav-menu {
    display: none; position: fixed; top: 80px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px 20px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    gap: 4px; align-items: flex-start; z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; margin-top: 8px; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero { padding-top: 80px; min-height: auto; padding-bottom: 48px; }
  .hero-oval { padding: 36px 28px; border-radius: 32px; gap: 24px; flex-direction: column; align-items: center; text-align: center; }
  .hero-oval-right { align-items: center; }
  .hero-oval-headshot { width: 160px; height: 190px; }
  .hero-oval h1 { font-size: 1.5rem; }
  .hero-oval .cta-buttons { justify-content: center; }

  /* Page Hero */
  .page-hero { padding: 120px 0 40px; }
  .page-hero h1 { font-size: 1.6rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .cs-results { grid-template-columns: repeat(3, 1fr); }

  /* About section two-column */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }

  /* Mission banner */
  .mission-banner { padding: 56px 0; }

  /* Approach & values */
  .approach-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Case studies */
  .case-studies-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-container { height: 70px; }
  .nav-logo img { height: 60px !important; }
  .nav-menu { top: 70px; }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; width: 100%; }

  .audience-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .cs-results { grid-template-columns: 1fr; }

  .page-hero { padding: 100px 0 36px; }
  .hero { padding-top: 70px; }
  .hero-oval { padding: 28px 20px; border-radius: 24px; gap: 20px; }
  .hero-oval-logo { height: 56px; }
  .hero-oval-headshot { width: 130px; height: 155px; }

  /* Calendly */
  .calendly-inline-widget { height: 500px !important; }

  /* Article related grid */
  .related-grid { grid-template-columns: 1fr !important; }

  /* Footer brand text */
  .footer-brand p { max-width: 100%; }

  /* Section padding */
  :root { --section-pad: 40px 0; }
  .container { padding: 0 16px; }
}
