/* ============================================================
   AGAWAM OPTICIANS — MAIN STYLESHEET
   style.css
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================ */
:root {
    --black:        #000000;
    --orange:       #E3754F;
    --orange-dark:  #c85e38;
    --orange-light: #f0956f;
    --text:         #2d2d2d;
    --text-mid:     #555555;
    --text-light:   #888888;
    --bg-light:     #f9f8f6;
    --bg-warm:      #fdf9f6;
    --white:        #ffffff;
    --border:       #e8e4df;
    --footer-bg:    #111111;
    --topbar-bg:    #1a1a1a;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-ui:      'Montserrat', Arial, sans-serif;
    --font-body:    'Open Sans', Arial, sans-serif;

    --header-top-h:  40px;
    --header-main-h: 158px;
    --logo-h:        110px;
    --radius:        6px;
    --transition:    0.3s ease;
}

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
    display: block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.4;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.eyebrow.light {
    color: var(--orange-light);
}

.eyebrow.centered,
h2.centered,
p.section-sub.centered {
    text-align: center;
}

h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--black);
}

h2 em {
    font-style: italic;
    color: var(--orange);
}

h3 {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 28px;
}

p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

p.lead {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.65;
    color: var(--text-mid);
    margin-bottom: 22px;
}

p.section-sub {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.7;
    color: var(--text-mid);
    margin-top: 10px;
    margin-bottom: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: var(--radius);
    padding: 15px 34px;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 117, 79, 0.35);
}

.btn-ghost {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.top-bar {
    background-color: var(--topbar-bg);
    height: var(--header-top-h);
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 200;
}

.top-bar-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
    color: #b0b0b0;
    transition: color var(--transition);
    white-space: nowrap;
}

.top-bar-item:hover {
    color: var(--orange-light);
}

.top-bar-item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.7;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ============================================================
   HEADER SECTION
   ============================================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    height: var(--header-main-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: var(--logo-h);
    width: auto;
    display: block;
}

/* Desktop Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav ul li a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 1;
    color: var(--text);
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: var(--radius);
    position: relative;
    transition: color var(--transition), background-color var(--transition);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
    border-radius: 2px;
}

.main-nav ul li a:hover,
.main-nav ul li a.nav-active {
    color: var(--orange);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.nav-active::after {
    transform: scaleX(1);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hdr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-mid);
    transition: color var(--transition), background-color var(--transition);
}

.hdr-icon svg {
    width: 18px;
    height: 18px;
}

.hdr-icon:hover {
    color: var(--orange);
    background-color: rgba(227, 117, 79, 0.08);
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius);
    transition: background-color var(--transition);
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav {
    display: none;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-nav.open {
    max-height: 300px;
}

.mobile-nav ul {
    padding: 12px 0 20px;
}

.mobile-nav ul li a {
    display: block;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text);
    text-transform: uppercase;
    padding: 14px 24px;
    transition: color var(--transition), background-color var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav ul li a:hover {
    color: var(--orange);
    background-color: rgba(227, 117, 79, 0.06);
    border-left-color: var(--orange);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
    background-color: var(--black);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.72) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    padding-bottom: 60px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--orange);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(227, 117, 79, 0.5);
}

.badge-star {
    font-size: 10px;
    opacity: 0.85;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color var(--transition), transform var(--transition);
}

.dot.active {
    background-color: var(--orange);
    transform: scale(1.35);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   BLACK SEPARATOR BAR
   ============================================================ */
.black-bar {
    background-color: var(--black);
    padding: 38px 24px;
    overflow: hidden;
}

.black-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    line-height: 1;
    color: #cccccc;
    text-transform: uppercase;
}

.bar-diamond {
    color: var(--orange);
    font-size: 8px;
    flex-shrink: 0;
}

/* ============================================================
   SECTION 1: ABOUT / INTRO
   ============================================================ */
.section-about {
    background-color: var(--bg-warm);
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 18px;
}

.about-list {
    margin: 0 0 22px 0;
    padding: 0;
}

.about-list li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 1.5;
    color: var(--text);
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.about-list li:first-child {
    border-top: 1px solid var(--border);
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--orange);
}

.about-text .btn {
    margin-top: 28px;
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Right-column image slider (single-image crossfade) */
.about-img-slider {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    height: 380px;
    position: relative;
}

.about-img-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-img-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1200ms ease-in-out;
}

.about-img-slide.active {
    opacity: 1;
}

.about-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Insurance card */
.insurance-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.insurance-card h4 {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.insurance-card p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.65;
    color: var(--text-mid);
    margin-bottom: 18px;
}

.insurance-logos {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.insurance-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* ============================================================
   SECTION 2: BRANDS TICKER
   ============================================================ */
.section-brands {
    background-color: var(--white);
    padding: 80px 0 60px;
    overflow: hidden;
}

.section-brands h2 {
    margin-bottom: 8px;
}

.section-brands .container {
    margin-bottom: 50px;
}

.brands-ticker-wrap {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: 0 10%;
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
}

/* Fade edges */
.brands-ticker-wrap::before,
.brands-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.brands-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.brands-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
    gap: 0;
}

.brands-ticker-wrap:hover .brands-track {
    animation-play-state: paused;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
}

.brand-item img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter var(--transition), opacity var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   SECTION 3: TESTIMONIALS
   ============================================================ */
.section-testimonials {
    position: relative;
}

.testimonials-bg {
    position: relative;
    /* CSS dot-grid parallax — crisp at any resolution */
    background-color: #0d0d0d;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    background-attachment: fixed;
    padding: 90px 0;
}

.testimonials-overlay {
    display: none; /* not needed — background is pure CSS */
}

.testimonials-inner {
    position: relative;
    z-index: 2;
}

/* testimonial.png displayed as section icon */
.t-section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.t-section-icon img {
    height: 72px;
    width: auto;
    opacity: 0.85;
    filter: drop-shadow(0 4px 16px rgba(227, 117, 79, 0.4));
}

.testimonials-heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 52px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid var(--orange);
    border-radius: 10px;
    padding: 32px 26px;
    backdrop-filter: blur(8px);
    transition: transform var(--transition), background-color var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.t-quote-mark {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.7;
    color: var(--orange);
    margin-bottom: 16px;
    display: block;
}

.t-text {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 22px;
}

.t-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.t-stars {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--orange);
}

.t-name {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* ============================================================
   FAT FOOTER SECTION
   ============================================================ */
.fat-footer {
    background-color: var(--footer-bg);
    padding: 72px 0 60px;
    border-top: 3px solid var(--orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 48px;
}

.footer-heading {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fat-footer address p,
.footer-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.75;
    color: #999999;
    margin-bottom: 8px;
}

.fat-footer address a,
.footer-col a {
    color: #aaaaaa;
    transition: color var(--transition);
}

.fat-footer address a:hover,
.footer-col a:hover {
    color: var(--orange-light);
}

.footer-fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    background-color: #1877F2;
    border-radius: var(--radius);
    padding: 11px 18px;
    margin-top: 18px;
    transition: background-color var(--transition), transform var(--transition);
}

.footer-fb-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-fb-btn:hover {
    background-color: #1565d8;
    color: var(--white);
    transform: translateY(-2px);
}

/* Hours */
.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-day {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.3;
    color: #cccccc;
}

.hours-time {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    color: #888888;
    white-space: nowrap;
}

.hours-row.closed .hours-day,
.hours-row.closed .hours-time {
    color: #555555;
}

.hours-note {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Insurance column */
.insurance-list {
    margin-bottom: 20px;
}

.insurance-list li {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    color: #999999;
    padding: 5px 0 5px 16px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.insurance-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--orange);
    font-size: 14px;
    line-height: 1.5;
}

.footer-insurance-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-insurance-logos img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(0.8);
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-insurance-logos img:hover {
    opacity: 1;
}

/* ============================================================
   COPYRIGHT FOOTER BAR
   ============================================================ */
.copyright-bar {
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
}

.copyright-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-bar p {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.4;
    color: #555555;
    text-align: center;
    margin-bottom: 0;
}

.copyright-bar p a {
    color: #777777;
    border-bottom: 1px solid #444444;
    transition: color var(--transition), border-color var(--transition);
}

.copyright-bar p a:hover {
    color: var(--orange-light);
    border-color: var(--orange-light);
}

/* ============================================================
   PAGE TITLE BAR (sub-pages)
   ============================================================ */
.page-title-bar {
    background: linear-gradient(135deg, var(--orange) 0%, #7a2e12 100%);
    padding: 52px 0 46px;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 10px;
}

.page-subtitle {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

/* ============================================================
   ABOUT PAGE — MAIN CONTENT
   ============================================================ */
.section-about-page {
    background-color: var(--bg-warm);
    padding: 90px 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: start;
}

.about-page-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    position: sticky;
    top: calc(var(--header-main-h) + 24px);
}

.about-page-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page-content h2 {
    margin-bottom: 24px;
}

.about-page-content p {
    margin-bottom: 18px;
}

/* Highlights strip */
.about-highlights {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin: 32px 0;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.highlight-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--orange);
    margin-bottom: 6px;
    display: block;
}

.highlight-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
    color: var(--text-mid);
    text-transform: uppercase;
    display: block;
}

/* Sign-off */
.about-signoff {
    margin-top: 36px;
    padding: 28px 32px;
    background-color: var(--white);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-signoff p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 4px;
}

.signoff-tilde {
    font-family: var(--font-display);
    font-size: 28px !important;
    font-weight: 400;
    font-style: italic;
    color: var(--orange) !important;
    margin-bottom: 16px !important;
}

.signoff-name {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.6;
    color: var(--text);
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 12px;
}

.signoff-name span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--text-light);
}

/* ============================================================
   ABOUT PAGE — DR. BORASKI CALLOUT
   ============================================================ */
.section-doctor {
    background-color: var(--white);
    padding: 0 0 90px;
}

.doctor-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 14px;
    padding: 48px 52px;
    border-left: 5px solid var(--orange);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.doctor-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(227, 117, 79, 0.15);
    border: 2px solid rgba(227, 117, 79, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--orange);
}

.doctor-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--white);
    text-transform: none;
    margin-top: 0;
    margin-bottom: 14px;
}

.doctor-content p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.75;
    color: #aaaaaa;
    margin-bottom: 24px;
}

.doctor-content p strong {
    color: var(--white);
}

/* ============================================================
   BRANDS PAGE — INTRO
   ============================================================ */
.section-brands-intro {
    background-color: var(--bg-warm);
    padding: 90px 0 80px;
}

.brands-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.brands-intro-text h2 {
    margin-bottom: 22px;
}

.brands-intro-text p {
    margin-bottom: 18px;
}

.brands-intro-text .btn {
    margin-top: 10px;
}

.brands-intro-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

.brands-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.brands-intro-img:hover img {
    transform: scale(1.03);
}

/* ============================================================
   BRANDS PAGE — BRAND LIST CARDS
   ============================================================ */
.section-brand-lists {
    background-color: var(--white);
    padding: 80px 0;
}

.brand-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.brand-list-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.brand-list-header {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--orange) 0%, #7a2e12 100%);
    padding: 22px 28px;
}

.brand-list-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-list-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
}

.brand-list-header h3 {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

.brand-list {
    padding: 10px 0 20px;
    margin: 0;
}

.brand-list li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.4;
    color: var(--text);
    padding: 12px 28px 12px 52px;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background-color var(--transition), color var(--transition);
}

.brand-list li:last-child {
    border-bottom: none;
}

.brand-list li::before {
    content: '✦';
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: var(--orange);
}

.brand-list li:hover {
    background-color: rgba(227, 117, 79, 0.05);
    color: var(--orange);
}

.brand-list-more {
    font-style: italic;
    color: var(--text-light) !important;
    font-size: 14px !important;
}

.brand-list-more::before {
    content: '›' !important;
    font-size: 16px !important;
    top: 50% !important;
}

/* Brands page ticker modifier — tighter top spacing */
.section-brands-page {
    padding-top: 0;
    padding-bottom: 80px;
    background-color: var(--white);
}

.section-brands-page .container {
    padding-top: 60px;
    margin-bottom: 40px;
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-page-grid {
        gap: 48px;
    }

    .about-page-img {
        position: static;
    }
}

@media (max-width: 1024px) {
    .brands-intro-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 34px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .page-title-bar {
        padding: 40px 0 36px;
    }

    .section-about-page {
        padding: 60px 0;
    }

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-page-img {
        position: static;
    }

    .about-highlights {
        flex-direction: column;
    }

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 18px 16px;
    }

    .highlight-item:last-child {
        border-bottom: none;
    }

    .doctor-card {
        flex-direction: column;
        gap: 20px;
        padding: 32px 28px;
    }

    .section-doctor {
        padding-bottom: 60px;
    }

    /* Brands page mobile */
    .section-brands-intro {
        padding: 60px 0;
    }

    .brands-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .brand-lists-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-brand-lists {
        padding: 60px 0;
    }
}

/* ============================================================
   CONTACT PAGE — MAP
   ============================================================ */
.contact-map {
    line-height: 0;
    border-bottom: 3px solid var(--orange);
}

.contact-map iframe {
    width: 100%;
    display: block;
    filter: grayscale(15%) contrast(1.05);
}

/* ============================================================
   CONTACT PAGE — MAIN SECTION
   ============================================================ */
.section-contact {
    background-color: var(--bg-warm);
    padding: 90px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.contact-info-col h2 {
    margin-bottom: 32px;
}

/* Info cards */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow var(--transition), transform var(--transition);
}

.contact-info-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(227, 117, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.contact-info-text h4 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-info-text p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0;
}

.contact-info-text p a {
    color: var(--text);
    transition: color var(--transition);
}

.contact-info-text p a:hover {
    color: var(--orange);
}

.contact-link {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: 8px;
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--orange-dark);
}

/* Hours within contact card */
.contact-hours-card {
    align-items: flex-start;
}

.contact-hours-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--text);
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.contact-hours-row.dimmed {
    color: var(--text-light);
}

/* Right column: showroom photo */
.contact-photo-col {
    position: sticky;
    top: calc(var(--header-main-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-photo-wrap {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

.contact-photo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.contact-photo-wrap:hover img {
    transform: scale(1.02);
}

.contact-photo-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--black);
    border-radius: 0 0 12px 12px;
    padding: 14px 20px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: #888888;
}

.contact-photo-caption svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--orange);
    opacity: 0.8;
}

/* Contact page responsive */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 48px;
    }

    .contact-photo-col {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-map iframe {
        height: 300px;
    }

    .section-contact {
        padding: 60px 0 80px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-photo-col {
        position: static;
    }
}

/* ============================================================
   MOBILE STICKY PHONE BAR
   ============================================================ */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--orange);
    height: 52px;
}

.mobile-call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
}

.mobile-call-bar a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .hero-tagline {
        font-size: 52px;
    }

    .about-grid {
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col-right {
        grid-column: 1 / -1;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Top bar */
    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .top-bar-item {
        font-size: 11px;
    }

    /* Header */
    .main-header {
        height: 74px;
    }

    .main-nav,
    .header-icons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .logo-img {
        height: 50px;
    }

    /* Mobile nav top offset = mobile header height (74px) */
    .mobile-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        z-index: 99;
        border-bottom: 2px solid var(--border);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    /* Hero */
    .hero-section {
        height: 520px;
    }

    .hero-tagline {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 8px 18px;
    }

    .hero-sub {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-btns {
        gap: 12px;
    }

    .btn {
        padding: 13px 26px;
        font-size: 13px;
    }

    /* Black bar */
    .black-bar-inner {
        font-size: 11px;
        letter-spacing: 1.2px;
        gap: 10px;
    }

    /* About */
    .section-about {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    h2 {
        font-size: 30px;
    }

    /* Brands */
    .section-brands {
        padding: 60px 0 40px;
    }

    .brands-ticker-wrap {
        margin: 0 4%;
        border-radius: 6px;
    }

    .brand-item {
        padding: 10px 28px;
    }

    .brand-item img {
        height: 38px;
    }

    /* Testimonials */
    .section-testimonials .testimonials-bg {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .testimonials-heading {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Footer */
    .fat-footer {
        padding: 52px 0 80px; /* extra bottom for mobile call bar */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile call bar */
    .mobile-call-bar {
        display: block;
    }

    /* Prevent content from hiding behind mobile call bar */
    .copyright-bar {
        padding-bottom: 68px;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .top-bar-inner {
        flex-direction: column;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 4px;
    }

    .hero-section {
        height: 460px;
    }

    .hero-tagline {
        font-size: 30px;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
