/* ============================================================
   GWPL Marine — Main Stylesheet
   Palette: Gold #C9A020 | Black #000000 | White #FFFFFF
   Type: Palatino Linotype / Palatino / Book Antiqua (serif stack)
   ============================================================ */

:root {
    --gold:        #C9A020;
    --gold-dark:   #a07d10;
    --gold-light:  #e8c040;
    --black:       #000000;
    --near-black:  #0d0d0d;
    --charcoal:    #1a1a1a;
    --mid-grey:    #4a4a4a;
    --light-grey:  #f2f0eb;
    --border:      rgba(201,160,32,0.25);
    --white:       #ffffff;

    --font-serif:  'Palatino Linotype', 'Palatino', 'Book Antiqua', 'Georgia', serif;
    --font-ui:     system-ui, -apple-system, sans-serif; /* for small UI labels only */

    --container:   1200px;
    --radius:      2px;
    --transition:  0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.75;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: normal;
    line-height: 1.25;
    color: var(--near-black);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-style: italic; }
p  { margin-bottom: 1rem; text-align: justify;
    text-justify: inter-word; }
p:last-child { margin-bottom: 0; }

.gold-rule {
    width: 56px;
    height: 2px;
    background: var(--gold);
    margin: 1.25rem 0 1.75rem;
}

.eyebrow {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}
.section { padding: 5rem 0; }
.section--dark {
    background: var(--near-black);
    color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section--gold-tint { background: #faf7ef; }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--near-black);
    border-bottom: 2px solid var(--gold);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.site-logo img { display: block; }

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.main-nav > a,
.nav-dropdown-toggle {
    font-family: var(--font-serif);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.82);
    padding: 0.5rem 0.9rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: color var(--transition);
    position: relative;
}
.main-nav > a:hover,
.nav-dropdown-toggle:hover,
.main-nav > a.active,
.nav-dropdown-toggle.active { color: var(--gold); }

.nav-btn {
    background: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 600;
    padding: 0.45rem 1.1rem !important;
    border-radius: var(--radius);
    margin-left: 0.5rem;
    font-style: normal;
}
.nav-btn:hover { background: var(--gold-light) !important; color: var(--white) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--near-black);
    border: 1px solid var(--border);
    min-width: 240px;
    padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    font-family: var(--font-serif);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--gold); background: rgba(201,160,32,0.08); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

/* ── Hero ── */
.hero {
    background: url('../img/hero-1.jpg') center center / cover no-repeat;
    color: var(--white);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6,3,21,0.85) 0%,
        rgba(6,3,21,0.65) 50%,
        rgba(6,3,21,0.35) 100%
    );
    pointer-events: none;
}
.hero-content { max-width: 780px; position: relative; }
.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    text-align: center;
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-outline-dark {
    background: transparent;
    color: var(--near-black);
    border-color: var(--near-black);
}
.btn-outline-dark:hover {
    background: var(--near-black);
    color: var(--white);
}

/* ── Intro block ── */
.intro-block { background: var(--white); }
.intro-block .inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.intro-block p {
    font-size: 1.08rem;
    color: var(--mid-grey);
    line-height: 1.85;
}

/* ── Services grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.service-card {
    border: 1px solid var(--border);
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.35s ease;
    z-index: 2;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--near-black); }
.service-card p  { font-size: 0.95rem; color: var(--mid-grey); margin: 0 0 1.25rem; flex: 1; }
.service-card .card-link {
    font-size: 0.85rem;
    font-family: var(--font-ui);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
}
.service-card .card-link:hover { color: var(--gold); }

/* ── Why strip ── */
.why-strip { background: var(--near-black); }
.why-strip h2 { color: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.why-item {
    padding: 2rem 1.5rem;
    border: 1px solid var(--gold);
    transition: border-color var(--transition);
}
.why-item .why-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.why-item p { font-size: 0.93rem; color: var(--white); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
    background: var(--gold);
    padding: 4rem 0;
    text-align: center;
}
.cta-banner h2 { color: var(--black); font-size: 1.8rem; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(0,0,0,0.7); max-width: 620px; margin: 0 auto 2rem; font-size: 1rem; }
.cta-banner .btn-primary {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.cta-banner .btn-primary:hover { background: var(--charcoal); }
.cta-banner .btn-outline {
    color: var(--black);
    border-color: var(--black);
}
.cta-banner .btn-outline:hover { background: var(--black); color: var(--white); }
.cta-banner .hero-ctas { justify-content: center; }

/* ── Page header (inner pages) ── */
.page-header {
    background: url('../img/hero-2.jpg') center center / cover no-repeat;
    padding: 6.5rem 0 6.5rem;
    border-bottom: 2px solid var(--border);
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6,3,21,0.78);
}
.page-header .container { position: relative; }
.page-header .eyebrow { color: var(--gold); }
.page-header h1 { color: var(--white); }

/* ── About / body content ── */
.body-section { padding: 5rem 0; }
.body-section .prose { max-width: 780px; }
.body-section .prose p { font-size: 1.03rem; color: var(--mid-grey); line-height: 1.85; margin-bottom: 1.25rem; }

/* ── Image split sections ── */
.img-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.img-split-img {
    background-size: cover;
    background-position: center;
    min-height: 360px;
}
.img-split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.img-split-content.dark {
    background: var(--near-black);
    color: var(--white);
}
.img-split-content.dark h2 { color: var(--white); }
.img-split-content.dark p  { color: var(--white); }

.contact-img-banner {
    background: url('../img/contact.jpg') center center / cover no-repeat;
    position: relative;
    padding: 5rem 0;
}
.contact-img-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6,3,21,0.72);
}
.contact-img-banner .container { position: relative; }

@media (max-width: 768px) {
    .img-split { grid-template-columns: 1fr; }
    .img-split-content { padding: 2.5rem 1.5rem; }
}

/* ── Process / How We Work ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: process;
}
.process-step {
    position: relative;
    padding: 2rem;
    border-top: 2px solid var(--border);
    counter-increment: process;
}
.process-step::before {
    content: '0' counter(process);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.35;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.process-step p  { font-size: 0.93rem; color: var(--mid-grey); }

/* ── Service detail page ── */
.detail-block { margin-bottom: 3rem; }
.detail-block h3 {
    font-size: 1.3rem;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 0.75rem;
}
.detail-block p { color: var(--mid-grey); font-size: 1rem; }

.bullet-list { margin: 1.5rem 0 2rem; }
.bullet-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.97rem;
    color: var(--mid-grey);
}
.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ── Honest note ── */
.honest-note {
    background: #faf7ef;
    border-left: 4px solid var(--gold);
    padding: 1.75rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--mid-grey);
    font-size: 1rem;
}

/* ── Contact page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-detail { margin-bottom: 1.25rem; }
.contact-detail .label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}
.contact-detail p,
.contact-detail a {
    font-size: 1rem;
    color: var(--charcoal);
}
.contact-detail a:hover { color: var(--gold); }

/* ── Forms ── */
.form-section { padding: 4rem 0; }
.form-intro { max-width: 680px; margin-bottom: 2.5rem; font-size: 1rem; color: var(--mid-grey); }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid-grey);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-serif);
    font-size: 0.97rem;
    border: 1px solid #d0ccc0;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--near-black);
    transition: border-color var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,160,32,0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.required-star { color: var(--gold); }

.consent-block {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--light-grey);
    border-radius: var(--radius);
}
.consent-block input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
}
.consent-block label { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.6; }

.form-submit { margin-top: 1rem; }

.alert-success {
    background: #f0f9e8;
    border: 1px solid #8bc34a;
    color: #376321;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--near-black);
    border-top: 2px solid var(--border);
    padding: 4rem 0 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: var(--white); }
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a,
.footer-contact a { color: var(--white); }
.footer-links ul li a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-contact p { 
    margin-bottom: 0.5rem; 
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--white); 
}
.footer-contact p i {
    color: var(--gold);
    margin-top: 0.3rem;
    width: 14px;
    flex-shrink: 0;
}
.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--white)
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 4rem 0 3.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: 1; }
    .footer-grid { grid-template-columns: 1fr; }

    .nav-toggle { display: flex; }
    .main-nav {
        display: none !important;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--near-black);
        border-top: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
    }
    .main-nav.open { display: flex !important; }
    .main-nav > a,
    .nav-dropdown-toggle {
        padding: 0.75rem 1.5rem;
        display: block;
        font-size: 1rem;
        border-radius: 0;
        text-align: left;
    }
    .nav-dropdown-menu {
        position: static;
        display: block;
        border: none;
        padding-left: 1.5rem;
        background: rgba(75, 74, 74, 0.53);
    }
    .nav-btn { margin: 0.5rem 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
}

/* ── Hero Slider (replaces static .hero on home page) ── */
.hero-slider { 
    position: relative;
    overflow: hidden;
    height: 580px;
}
.hero-slide {
    display: flex;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7rem 0 6rem;
    align-items: center;
    transform: translateX(100%);
    visibility: hidden;
}
.hero-slide.active { 
    transform: translateX(0);
    visibility: visible;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6,3,21,0.88) 0%,
        rgba(6,3,21,0.65) 55%,
        rgba(6,3,21,0.3) 100%
    );
    pointer-events: none;
}
.hero-slide .container { position: relative; z-index: 1; }
.hero-slide .hero-content { max-width: 720px; }
.hero-slide h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.hero-slide h1 em { font-style: italic; color: var(--gold); }
.hero-slide p.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Slider dots */
.slider-controls {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.slider-dot.active { background: var(--gold); transform: scale(1.25); }

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(201,160,32,0.3);
    color: var(--white);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* Eyebrow inside slider */
.hero-slide .eyebrow { color: var(--gold); margin-bottom: 0.75rem; }

/* Font Awesome icon tweaks */
.why-item .why-icon-fa {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.85rem;
    display: block;
}
.service-card .card-fa-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
}

/* Google Map */
.map-wrap { border: 2px solid var(--border); overflow: hidden; margin-top: 2.5rem; }
.map-wrap iframe { display: block; width: 100%; }
.map-caption {
    background: var(--near-black);
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
}
.map-caption i { color: var(--gold); }

@media (max-width: 768px) {
    .hero-slide { padding: 3rem 0 5rem; min-height: 600px; }
    .slider-arrow { display: none; }
    .hero-slider { min-height: 600px; }
    .hero-slide h1 { font-size: 1.9rem; margin-bottom: 1rem; }
    .hero-slide p.hero-sub { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; text-align: center; }
}

/* ── Rig Types Grid ── */
.rig-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.rig-type-card {
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.rig-type-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.rig-type-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.rig-type-card:hover .rig-type-img { transform: scale(1.04); }
.rig-type-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.rig-type-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
}
.rig-type-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--near-black);
}
.rig-type-body p {
    font-size: 0.92rem;
    color: var(--mid-grey);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .rig-types-grid { grid-template-columns: 1fr; }
}
