/*
Theme Name: Brooks Law
Theme URI: https://patrickbrookslaw.com/
Author: Brooks Law Firm
Author URI: https://patrickbrookslaw.com/
Description: A professional WordPress theme for law firms, designed for Brooks Law Firm in Memphis, Tennessee. Features a classic multi-section homepage (hero, practice areas, about, contact), dedicated practice area page templates, customizer options for firm details and disclaimers, and Tennessee attorney advertising compliance considerations. Built for PHP 8.1+ and WordPress 6.0+.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brooks-law
Tags: two-columns, right-sidebar, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks
*/

:root {
    --navy: #102a43;
    --navy-dark: #0a1b2e;
    --gold: #b08a3e;
    --gold-light: #d4b26a;
    --cream: #f7f4ed;
    --paper: #ffffff;
    --ink: #1c1c1c;
    --muted: #5a6472;
    --rule: #d9d2c2;
    --shadow: 0 6px 24px rgba(16, 42, 67, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: var(--navy); transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1; border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important; color: #21759b;
    display: block; font-size: 14px; font-weight: bold;
    height: auto; left: 5px; line-height: normal;
    padding: 15px 23px 14px; text-decoration: none;
    top: 5px; width: auto; z-index: 100000;
}
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: var(--muted); font-style: italic; padding-top: 6px; }
.sticky { display: block; }
.bypostauthor { display: block; }

/* Top bar */
.topbar {
    background: var(--navy-dark);
    color: #cfd8e3;
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: 0.5px;
}
.topbar .wrap {
    max-width: 1160px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.topbar a { color: #cfd8e3; text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }

/* Header */
.site-header {
    background: var(--navy);
    color: #fff;
    border-bottom: 3px solid var(--gold);
}
.navwrap {
    max-width: 1160px; margin: 0 auto; padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.brand .name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px; font-weight: 700;
    letter-spacing: 1.5px; color: #fff;
    text-transform: uppercase;
}
.brand .tag {
    font-size: 11px; letter-spacing: 3px;
    color: var(--gold-light); margin-top: 4px;
    text-transform: uppercase;
}
.custom-logo-link img { max-height: 60px; width: auto; }

.main-navigation ul {
    list-style: none; display: flex;
    gap: 28px; flex-wrap: wrap;
    margin: 0; padding: 0;
}
.main-navigation a {
    color: #fff; text-decoration: none;
    font-size: 14px; letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
    display: inline-block;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { border-bottom-color: var(--gold); }

.main-navigation .sub-menu {
    display: none; position: absolute;
    background: var(--navy-dark);
    flex-direction: column; gap: 0;
    padding: 10px 0; min-width: 220px;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.main-navigation li { position: relative; }
.main-navigation li:hover > .sub-menu { display: flex; }
.main-navigation .sub-menu li { width: 100%; }
.main-navigation .sub-menu a {
    padding: 8px 20px; width: 100%;
    border-bottom: none; font-size: 13px;
}
.main-navigation .sub-menu a:hover {
    background: var(--navy);
    border-bottom-color: transparent;
    color: var(--gold-light);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--gold);
    color: #fff; padding: 8px 14px;
    font-size: 13px; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

/* Hero */
.hero {
    position: relative;
    background:
        linear-gradient(rgba(10, 27, 46, 0.82), rgba(10, 27, 46, 0.88)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600'><rect width='100%25' height='100%25' fill='%23102a43'/><g stroke='%231a3a5c' stroke-width='1' fill='none'><path d='M0 100 L800 100 M0 200 L800 200 M0 300 L800 300 M0 400 L800 400 M0 500 L800 500'/><path d='M100 0 L100 600 M200 0 L200 600 M300 0 L300 600 M400 0 L400 600 M500 0 L500 600 M600 0 L600 600 M700 0 L700 600'/></g></svg>");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 90px 24px 80px;
    text-align: center;
}
.hero.hero-home { padding: 140px 24px 120px; }
.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px; color: #fff;
    font-weight: 700; line-height: 1.15;
    max-width: 900px; margin: 0 auto 20px;
}
.hero.hero-home h1 { font-size: 58px; }
.hero .rule { width: 70px; height: 3px; background: var(--gold); margin: 24px auto; }
.hero p.lede {
    max-width: 780px; margin: 0 auto;
    font-size: 19px; color: #e4e9ef;
    font-style: italic;
}
.hero .cta {
    margin-top: 36px;
    display: inline-flex; gap: 14px;
    flex-wrap: wrap; justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid var(--gold);
    color: #fff; background: transparent;
    transition: all 0.2s; cursor: pointer;
}
.btn.primary { background: var(--gold); color: var(--navy-dark); font-weight: 700; }
.btn.primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn.secondary:hover { background: var(--gold); color: var(--navy-dark); }
.btn.dark { color: var(--navy); border-color: var(--navy); }
.btn.dark:hover { background: var(--navy); color: #fff; }

/* Breadcrumb */
.crumb {
    background: var(--cream);
    padding: 14px 24px;
    font-size: 13px; color: var(--muted);
    letter-spacing: 0.8px;
    border-bottom: 1px solid var(--rule);
}
.crumb .wrap { max-width: 1160px; margin: 0 auto; }
.crumb a { color: var(--navy); text-decoration: none; }
.crumb a:hover { color: var(--gold); }

/* Page layout */
.page-layout {
    max-width: 1160px; margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
}
.page-layout.full { grid-template-columns: 1fr; }

article.practice-article h2,
article.page-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px; color: var(--navy);
    margin: 40px 0 8px; font-weight: 700;
}
article.practice-article h2:first-child,
article.page-content h2:first-child { margin-top: 0; }
article.practice-article h2 + .subrule,
article.page-content h2 + .subrule {
    width: 50px; height: 2px;
    background: var(--gold);
    margin-bottom: 22px;
}
article h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px; color: var(--navy);
    margin: 28px 0 10px; font-weight: 700;
}
article p { margin-bottom: 18px; }
article ul.styled-list {
    margin: 0 0 22px 0;
    padding-left: 0; list-style: none;
}
article ul.styled-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    border-bottom: 1px dotted var(--rule);
}
article ul.styled-list li:last-child { border-bottom: none; }
article ul.styled-list li::before {
    content: "§";
    position: absolute; left: 0; top: 8px;
    color: var(--gold); font-weight: 700;
    font-family: Georgia, serif; font-size: 18px;
}

.pullquote {
    border-left: 4px solid var(--gold);
    background: var(--cream);
    padding: 24px 28px;
    margin: 32px 0;
    font-style: italic; font-size: 18px;
    color: var(--navy-dark);
}

/* Practice grid */
.practice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 24px 0 12px;
}
.practice-card {
    border: 1px solid var(--rule);
    padding: 22px 24px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.practice-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.practice-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy); font-size: 18px;
    margin-bottom: 8px;
}
.practice-card p {
    font-size: 15px; color: var(--muted);
    margin-bottom: 0; line-height: 1.55;
}

/* Homepage sections */
.home-section { padding: 80px 24px; }
.home-section.alt { background: var(--cream); }
.home-section .inner { max-width: 1160px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px; color: var(--navy);
    margin-bottom: 12px;
}
.section-head .rule {
    width: 60px; height: 3px;
    background: var(--gold);
    margin: 14px auto 20px;
}
.section-head p {
    max-width: 720px; margin: 0 auto;
    color: var(--muted); font-size: 17px;
    font-style: italic;
}

.practice-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.practice-home-card {
    background: #fff;
    border: 1px solid var(--rule);
    padding: 32px 28px;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.25s;
    display: block;
}
.practice-home-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.practice-home-card .icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px; font-weight: 700;
}
.practice-home-card h3 {
    font-size: 20px; margin-bottom: 10px;
    color: var(--navy);
}
.practice-home-card p {
    color: var(--muted); font-size: 15px;
    margin-bottom: 16px; line-height: 1.55;
}
.practice-home-card .learn {
    color: var(--gold); font-size: 12px;
    letter-spacing: 1.5px; text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about-split .text h2 { text-align: left; }
.about-split .text .rule { margin: 14px 0 20px; }
.about-split .text p { color: var(--muted); font-size: 16px; }
.about-split .panel {
    background: var(--navy);
    color: #fff;
    padding: 48px 40px;
    border-top: 4px solid var(--gold);
}
.about-split .panel h3 { color: #fff; font-size: 24px; margin-bottom: 16px; }
.about-split .panel p { color: #cfd8e3; font-size: 16px; }
.about-split .panel .attys {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid #1e3a5c;
}
.about-split .panel .attys strong {
    color: var(--gold-light); display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 8px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info .info-block { margin-bottom: 24px; }
.contact-info .info-block strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 6px;
}
.contact-info .info-block p { margin: 0; font-size: 16px; }
.contact-form {
    background: #fff;
    border-top: 3px solid var(--gold);
    padding: 32px;
    box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; margin-bottom: 16px; }
.contact-form label {
    display: block; font-size: 13px;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--navy); margin-bottom: 6px;
    font-family: Arial, Helvetica, sans-serif;
}
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--rule);
    font-family: Georgia, serif;
    font-size: 15px; margin-bottom: 16px;
    background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--gold);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .note {
    font-size: 13px; color: var(--muted);
    font-style: italic; margin-top: 8px;
}

/* Sidebar */
.widget-area .widget,
aside .box {
    background: var(--cream);
    border-top: 3px solid var(--gold);
    padding: 28px 24px;
    margin-bottom: 28px;
}
.widget-area .widget h4,
.widget-area .widget .widget-title,
aside .box h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy); font-size: 20px;
    margin-bottom: 12px; margin-top: 0;
}
.widget-area .widget p,
aside .box p { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
aside .box .contact-line {
    display: flex; align-items: flex-start;
    gap: 10px; margin-bottom: 10px;
    font-size: 15px;
}
aside .box .contact-line strong {
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px; letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block; margin-bottom: 2px;
}
aside .box a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); }
aside .box a:hover { color: var(--gold); }

aside ul.sidelist {
    list-style: none; padding: 0; margin: 0;
}
aside ul.sidelist li {
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 15px;
}
aside ul.sidelist li:last-child { border-bottom: none; }
aside ul.sidelist a { border-bottom: none; }
aside ul.sidelist a:hover { color: var(--gold); }

.widget-area .widget ul { list-style: none; padding: 0; margin: 0; }
.widget-area .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 15px;
}
.widget-area .widget ul li:last-child { border-bottom: none; }
.widget-area .widget ul li a { text-decoration: none; color: var(--navy); }
.widget-area .widget ul li a:hover { color: var(--gold); }

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: #c3ccd8;
    padding: 50px 24px 30px;
    margin-top: 40px;
}
.site-footer .wrap {
    max-width: 1160px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.site-footer h5 {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px; margin-bottom: 14px;
}
.site-footer p, .site-footer li { font-size: 14px; line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #c3ccd8; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }

.disclaimer {
    max-width: 1160px; margin: 30px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid #1e3a5c;
    font-size: 12px; color: #8c9aac;
    line-height: 1.6; font-style: italic;
}
.disclaimer strong { color: #c3ccd8; font-style: normal; }

.copyright {
    max-width: 1160px; margin: 20px auto 0;
    padding: 0 24px;
    font-size: 12px; color: #6c7a8e;
    text-align: center;
}

/* Comments */
.comments-area {
    margin-top: 40px; padding-top: 30px;
    border-top: 1px solid var(--rule);
}
.comments-area h2, .comments-area h3 { font-size: 22px; margin-bottom: 18px; }
.comment-list { list-style: none; padding: 0; }
.comment-list li { padding: 16px 0; border-bottom: 1px solid var(--rule); }
.comment-form label {
    display: block; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--navy); margin-bottom: 6px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%; padding: 10px 12px;
    border: 1px solid var(--rule);
    font-family: Georgia, serif;
    margin-bottom: 14px;
}

.pagination { margin: 40px 0; text-align: center; }
.pagination .page-numbers {
    display: inline-block; padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid var(--rule);
    text-decoration: none; color: var(--navy);
}
.pagination .current {
    background: var(--navy); color: #fff;
    border-color: var(--navy);
}
.pagination a:hover {
    background: var(--gold); color: #fff;
    border-color: var(--gold);
}

/* Responsive */
/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
    color: #fff;
}
.hero-slider-track {
    position: relative;
    width: 100%;
    min-height: 560px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 24px 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease-in-out, visibility 0s linear 0.9s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slide::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(rgba(10, 27, 46, 0.72), rgba(10, 27, 46, 0.88));
    z-index: 1;
}
.hero-slide.no-image::before {
    background:
        linear-gradient(rgba(10, 27, 46, 0.82), rgba(10, 27, 46, 0.92)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600'><rect width='100%25' height='100%25' fill='%23102a43'/><g stroke='%231a3a5c' stroke-width='1' fill='none'><path d='M0 100 L800 100 M0 200 L800 200 M0 300 L800 300 M0 400 L800 400 M0 500 L800 500'/><path d='M100 0 L100 600 M200 0 L200 600 M300 0 L300 600 M400 0 L400 600 M500 0 L500 600 M600 0 L600 600 M700 0 L700 600'/></g></svg>");
    background-size: cover;
    background-position: center;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.9s ease-in-out, visibility 0s linear 0s;
    z-index: 2;
}
.hero-slide-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
}
.hero-slide h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 58px;
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
}
.hero-slide .rule {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 24px auto;
}
.hero-slide p.lede {
    font-size: 19px;
    color: #e4e9ef;
    font-style: italic;
    margin: 0 auto;
    max-width: 780px;
}
.hero-slide .cta {
    margin-top: 36px;
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Arrow controls */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(10, 27, 46, 0.55);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}
.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}
.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }

/* Dot pagination */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0; right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.hero-slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}
.hero-slider-dot:hover { border-color: var(--gold-light); }
.hero-slider-dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
}

/* Reduced-motion accommodation */
@media (prefers-reduced-motion: reduce) {
    .hero-slide { transition: none; }
}

@media (max-width: 900px) {
    .page-layout { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
    .hero h1 { font-size: 34px; }
    .hero.hero-home h1 { font-size: 38px; }
    .hero p.lede { font-size: 17px; }
    .practice-grid { grid-template-columns: 1fr; }
    .practice-home-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 32px; }
    .contact-split { grid-template-columns: 1fr; gap: 32px; }
    .site-footer .wrap { grid-template-columns: 1fr; gap: 28px; }
    .brand .name { font-size: 22px; }

    .menu-toggle { display: block; }
    .main-navigation { display: none; width: 100%; margin-top: 16px; }
    .main-navigation.toggled { display: block; }
    .main-navigation ul { flex-direction: column; gap: 0; }
    .main-navigation li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .main-navigation a { padding: 12px 0; width: 100%; border-bottom: none; }
    .main-navigation .sub-menu {
        position: static; box-shadow: none;
        padding-left: 20px;
    }

    /* Hero slider mobile */
    .hero-slider-track { min-height: 440px; }
    .hero-slide h1 { font-size: 32px; }
    .hero-slide p.lede { font-size: 16px; }
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px; height: 40px;
        font-size: 18px;
    }
    .hero-slider-prev { left: 10px; }
    .hero-slider-next { right: 10px; }
}

@media (max-width: 600px) {
    .home-section { padding: 60px 20px; }
    .section-head h2 { font-size: 28px; }
    .hero { padding: 60px 20px; }
    .hero.hero-home { padding: 80px 20px; }
    .hero h1 { font-size: 28px; }
    .hero.hero-home h1 { font-size: 32px; }

    .hero-slider-track { min-height: 380px; }
    .hero-slide { padding: 60px 20px 80px; }
    .hero-slide h1 { font-size: 26px; }
    .hero-slide .cta { margin-top: 24px; }
    .hero-slider-dots { bottom: 16px; }
}
