/* ============================================
   COLLINS READY MIX — BRUTALIST CONCRETE STYLE
   Pixel-matched to Option 5 mockup
   ============================================ */

/* --- CSS Variables --- */
:root {
    --red: #FF0606;
    --black: #000000;
    --white: #FFFFFF;
    --concrete-bg: #d4d0c8;
    --concrete-light: #e8e4dc;
    --dark-bg: #1a1a1a;
    --dark-card: rgba(30, 30, 30, 0.92);
    --text-dark: #111111;
    --text-body: #444444;
    --text-muted: #777777;
    --font-display: 'Oswald', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Libre Baskerville', 'Georgia', serif;
    --font-ui: 'Inter', sans-serif;
    --max-width: 1400px;
    --gutter: 40px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--concrete-bg);
    background-image: url('../images/concrete-texture.jpg');
    background-size: 100% auto;
    background-repeat: repeat-y;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }

/* ============================================
   HEADER / NAVIGATION — CENTERED LOGO SPLIT NAV
   ============================================ */
.site-header {
    position: relative;
    z-index: 1000;
    background: transparent;
    padding: 15px 0;
}

/* Desktop nav: left links — center logo — right links */
.header-nav {
    display: none; /* shown at 768px+ */
    align-items: center;
    justify-content: center;
    padding: 10px var(--gutter);
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-left a, .nav-right a:not(.btn-nav-cta) {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.nav-left a:hover, .nav-right a:not(.btn-nav-cta):hover,
.nav-left a.active, .nav-right a.active {
    color: var(--red);
}

.nav-logo {
    margin: 0 50px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 140px;
    width: auto;
}

.btn-nav-cta {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--red);
    color: var(--white) !important;
    padding: 12px 22px;
    text-transform: uppercase;
    border-radius: 3px;
}

.btn-nav-cta:hover {
    background: #cc0000;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px 15px;
    position: relative;
}

.mobile-header .hamburger {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-header-spacer {
    position: absolute;
    right: 20px;
    width: 38px;
}

.mobile-logo img {
    height: 140px;
    width: auto;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px;
    background: var(--white);
    border-top: 1px solid #ddd;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mobile-menu .btn-nav-cta {
    margin-top: 15px;
    text-align: center;
    border-bottom: none;
    padding: 14px;
}

/* ============================================
   HERO SECTION — LEFT HEADLINE, RIGHT CTA
   ============================================ */
.hero {
    padding: 40px var(--gutter) 100px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.red-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--red);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 700;
    font-style: italic;
    line-height: 0.92;
    letter-spacing: -2px;
    color: var(--black);
    text-transform: uppercase;
}

.red-dot-inline {
    color: var(--red);
}

.hero-right {
    padding-top: 100px;
}

.hero-right p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 30px;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: var(--red);
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.2s;
    min-width: 260px;
}

.btn-red:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* Hide the hero CTA button on desktop (the nav "Request a Quote" covers it there); keep it on mobile */
@media (min-width: 768px) {
    .hero-right .btn-red { display: none; }
}

/* Hero paragraph: longer version on desktop, short version on mobile */
.hero-text-mobile { display: none; }
@media (max-width: 767px) {
    .hero-text-desktop { display: none; }
    .hero-text-mobile { display: block; }
}

/* ============================================
   FEATURED PROJECT — FULL-BLEED B&W PHOTO
   ============================================ */
.featured-project {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 0;
}

.featured-project__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.featured-project__card {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: var(--dark-card);
    padding: 35px 40px;
    max-width: 360px;
}

.featured-project__label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
}

.featured-project__divider {
    width: 30px;
    height: 3px;
    background: var(--red);
    margin: 14px 0;
}

.featured-project__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.featured-project__location {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.featured-project__link {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-project__link:hover {
    color: #ff4444;
}

/* ============================================
   VALUES SECTION — 3 COLUMNS WITH CIRCLE ICONS
   ============================================ */
.values-section {
    padding: 40px var(--gutter);
    padding-top: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--red);
    fill: none;
}

.value-text {}

.value-title {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.value-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   ABOUT SPLIT — FULL-BLEED B&W WITH OVERLAY CARD
   ============================================ */
.about-split {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.about-split__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.about-split__card {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background: var(--dark-card);
    padding: 40px 45px;
    max-width: 380px;
}

.about-split__label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-split__title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-split__text {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 22px;
}

.about-split__link {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-split__link:hover {
    color: #ff4444;
}

/* ============================================
   FOOTER — DARK WITH CTA BANNER
   ============================================ */
.site-footer {
    background: var(--dark-bg);
    color: var(--white);
}

.footer-cta {
    padding: 50px var(--gutter);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-cta__left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-cta__text h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    text-transform: uppercase;
}

.footer-cta__text p {
    font-family: var(--font-body);
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.footer-main {
    padding: 50px var(--gutter);
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-col p, .footer-col a {
    font-family: var(--font-body);
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 6px;
    line-height: 1.5;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.footer-social a:hover {
    border-color: var(--red);
}

.footer-social svg {
    width: 14px;
    height: 14px;
    fill: #888;
}

.footer-bottom {
    padding: 20px var(--gutter);
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   PAGE HEADERS (inner pages)
   ============================================ */
.page-header {
    padding: 80px var(--gutter) 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-header .red-line {
    margin-bottom: 15px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 90px);
    font-weight: 700;
    font-style: italic;
    line-height: 0.92;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header p {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* ============================================
   PRODUCTS / SERVICES CARDS
   ============================================ */
.services-section {
    padding: 0 var(--gutter) 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 30px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--red);
    transition: height 0.3s;
}

.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.product-strength {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid var(--red);
    margin-bottom: 8px;
}

.product-applications {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ============================================
   PROJECTS GALLERY (Before/After)
   ============================================ */
.projects-section {
    padding: 0 var(--gutter) 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.project-card {
    background: var(--white);
    border: 1px solid #ddd;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.project-card:hover .project-image img {
    filter: grayscale(0%);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.project-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

.project-location {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================
   CONTACT / QUOTE FORM
   ============================================ */
.contact-section {
    padding: 0 var(--gutter) 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail__value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.contact-detail__value a { color: var(--black); }
.contact-detail__value a:hover { color: var(--red); }

.form-container {
    background: var(--white);
    padding: 35px;
    border: 1px solid #ddd;
}

.form-steps {
    display: flex;
    gap: 6px;
    margin-bottom: 25px;
}

.form-step-indicator {
    height: 3px;
    flex: 1;
    background: #e0e0e0;
}

.form-step-indicator.active { background: var(--red); }
.form-step-indicator.completed { background: var(--black); }

.form-step-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 14px;
    background: #f9f9f9;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: var(--white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-form {
    width: 100%;
    padding: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-form:hover { background: #cc0000; }

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.about-content-section {
    padding: 60px var(--gutter);
    max-width: 900px;
    margin: 0 auto;
}

.about-content-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content-section p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   CTA BANNER (inner pages)
   ============================================ */
.cta-banner {
    background: var(--dark-bg);
    padding: 60px var(--gutter);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    text-transform: uppercase;
}

.cta-text p {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-section {
    padding: 0 var(--gutter) 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.video-card {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--black);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   API DOCS
   ============================================ */
.api-docs {
    padding: 0 var(--gutter) 80px;
    max-width: 900px;
    margin: 0 auto;
}

.api-endpoint {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.api-method {
    display: inline-block;
    padding: 3px 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.api-method--get { background: #e8f5e9; color: #2e7d32; }
.api-method--post { background: #e3f2fd; color: #1565c0; }

/* Badge styles for the markup used on the API docs page (.method get/post/put/delete) */
.endpoint .method {
    display: inline-block;
    padding: 3px 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: 8px;
    border-radius: 3px;
}
.endpoint .method.get    { background: #e8f5e9; color: #2e7d32; }
.endpoint .method.post   { background: #e3f2fd; color: #1565c0; }
.endpoint .method.put    { background: #fff3e0; color: #e65100; }
.endpoint .method.delete { background: #ffebee; color: #c62828; }

/* ============================================
   UTILITY
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section { padding: 80px 0; }
.hidden { display: none !important; }

/* Legacy classes for compatibility */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 14px 28px; border: 2px solid transparent; cursor: pointer; transition: all 0.2s; text-transform: uppercase; }
.btn--red, .btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover, .btn-primary:hover { background: #cc0000; border-color: #cc0000; }
.btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn-arrow::after { content: ' \2192'; }
.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.red-dot::after { content: '.'; color: var(--red); }

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */
@media (min-width: 768px) {
    .header-nav { display: flex; }
    .mobile-header { display: none; }
    .mobile-menu { display: none !important; }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) and (min-width: 768px) {
    .nav-logo img { height: 110px; }
    .nav-left, .nav-right { gap: 20px; }
    .hero-content { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767px) {
    :root { --gutter: 24px; }

    /* Hero mobile - stacked layout matching mockup */
    .hero { padding: 15px var(--gutter) 0; margin-bottom: 0; }
    .hero-content { grid-template-columns: 1fr; gap: 20px; }
    .hero-right { padding-top: 0; }
    .hero h1 { font-size: clamp(46px, 13vw, 70px); line-height: 0.95; }

    /* Tagline in red on mobile */
    .hero-tagline .tagline-text { color: var(--red); }

    /* CTA button wider on mobile - pill shape matching mockup */
    .hero-right .btn-red {
        padding: 20px 35px;
        font-size: 14px;
        min-width: 280px;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    /* Featured project - full-bleed photo, no gaps */
    .featured-project { height: 280px; margin-top: 0; margin-bottom: 0; padding: 0; }
    .featured-project__card { display: none; }

    /* Values stacked vertically - no gap above */
    .values-section { padding: 25px var(--gutter); padding-top: 25px; margin-top: 0; max-width: 100%; }
    .values-grid { grid-template-columns: 1fr; gap: 30px; }
    .value-item { gap: 18px; }
    .value-icon { width: 60px; height: 60px; }
    .value-icon svg { width: 26px; height: 26px; }
    .value-title { font-size: 14px; }
    .value-desc { font-size: 14px; }

    /* About section */
    .about-split { height: 420px; }
    .about-split__card { left: 20px; padding: 30px; max-width: 280px; }
    .about-split__title { font-size: 28px; }

    /* Footer */
    .footer-cta { flex-direction: column; gap: 20px; text-align: center; padding: 40px var(--gutter); }
    .footer-cta__left { flex-direction: column; gap: 15px; }
    .footer-main { grid-template-columns: 1fr; gap: 25px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* Inner pages */
    .services-grid { grid-template-columns: 1fr; }
    .projects-gallery { grid-template-columns: 1fr; }
    .project-image img { height: 220px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .page-header h1 { font-size: 38px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .videos-grid { grid-template-columns: 1fr; }
}