/* ============================================
   DB AUTODETAILING — STYLESHEET
   ============================================ */


/* ============================================
   1. IMPORT FONTS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');


/* ============================================
   2. CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */

:root {
    /* Colours */
    --bg: #0A0A0A;
    --bg-elevated: #131313;
    --border: #262626;
    --border-bright: #3A3A3A;
    --muted: #7A7A7A;
    --muted-bright: #A8A8A8;
    --text: #D8D4CB;
    --text-bright: #F5F2EB;
    --silver: #C0BBB1;

    /* Fonts */
    --font-display: 'Bodoni Moda', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
}


/* ============================================
   3. RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   4. UTILITY BAR
   ============================================ */

.utility-bar {
    background: #000;
    border-bottom: 1px solid var(--border);
    padding: 10px 20px;
    font-size: 0.78rem;
}

.utility-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
}

.utility-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-bright);
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

a.utility-item:hover {
    color: var(--text-bright);
}

.utility-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============================================
   5. NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav {
    padding: 16px 20px;
}

.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Brand (logo + name) */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-bright);
    line-height: 1.1;
}

.nav-brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--text-bright);
}

/* The "Get a Quote" button */
.nav-cta {
    border: 1px solid var(--text-bright);
    padding: 10px 20px;
    color: var(--text-bright);
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
    background: var(--text-bright);
    color: var(--bg);
}

/* ============================================
   6. REUSABLE BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--text-bright);
    background: var(--text-bright);
    color: var(--bg);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
    background: transparent;
    color: var(--text-bright);
}

.btn-ghost {
    background: transparent;
    color: var(--text-bright);
    border-color: var(--border-bright);
}

.btn-ghost:hover {
    background: transparent;
    color: var(--text-bright);
    border-color: var(--text-bright);
}


/* ============================================
   7. SHARED TYPOGRAPHY
   ============================================ */

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--silver);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--silver);
}

.italic {
    font-style: italic;
    color: var(--silver);
}


/* ============================================
   8. HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-g63.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.95) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.1) 60%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text-bright);
    margin: 28px 0 32px;
}

.hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--muted-bright);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 44px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted-bright);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-scroll::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--silver), transparent);
}

/* ============================================
   9. BENTO GRID
   ============================================ */

.bento {
    padding: 24px 20px;
    background: var(--bg);
}

.bento-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
}

/* Each cell's position in the grid */
.bento-cell-1 { grid-column: span 3; grid-row: span 2; }
.bento-cell-2 { grid-column: span 2; grid-row: span 1; }
.bento-cell-3 { grid-column: span 1; grid-row: span 1; }
.bento-cell-4 { grid-column: span 3; grid-row: span 1; }
.bento-cell-5 { grid-column: span 2; grid-row: span 1; }
.bento-cell-6 { grid-column: span 2; grid-row: span 1; }
.bento-cell-7 { grid-column: span 2; grid-row: span 1; }

/* Shared cell styles */
.bento-cell {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, transform 0.4s ease;
}

.bento-cell:hover {
    border-color: var(--border-bright);
    transform: translateY(-2px);
}

.bento-placeholder {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================
   10. INTRO STATEMENT
   ============================================ */

.intro {
    padding: clamp(80px, 12vw, 160px) 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.intro-inner {
    max-width: 920px;
    margin: 0 auto;
}

.intro .eyebrow {
    margin-bottom: 36px;
}

.intro-quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--text-bright);
    margin-bottom: 40px;
}

.intro-body {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-bright);
}

/* ============================================
   11. SHARED SECTION HEAD PATTERN
   ============================================ */

.section-head {
    margin-bottom: clamp(48px, 7vw, 96px);
}

.section-head .eyebrow {
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text-bright);
}


/* ============================================
   SERVICES SECTION
   Replaces the old Packages + Pricing sections.
   Append this above the responsive media queries
   in styles.css.
   ============================================ */

.services {
    padding: clamp(80px, 12vw, 160px) 20px;
}

.services-inner {
    max-width: 1320px;
    margin: 0 auto;
}

/* 2x2 grid + full-width 5th card */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Individual card */
.service-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

/* Memberships card spans both columns */
.service-card-wide {
    grid-column: span 2;
    aspect-ratio: 21 / 7;
}

/* Background image layer */
.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.72);
    transition: transform 0.9s ease, filter 0.5s ease;
    will-change: transform;
}

.service-card:hover .service-card-bg {
    transform: scale(1.04);
    filter: brightness(0.55);
}

/* Gradient overlay — heavier at bottom for legibility */
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.88) 0%,
        rgba(10, 10, 10, 0.25) 55%,
        transparent 100%
    );
    z-index: 1;
    transition: background 0.5s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.94) 0%,
        rgba(10, 10, 10, 0.45) 60%,
        rgba(10, 10, 10, 0.1) 100%
    );
}

/* Text content — pinned to bottom-left */
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(24px, 3.5vw, 48px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-card-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--silver);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.service-card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    color: var(--text-bright);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

/* Description: hidden by default, revealed on hover */
.service-card-desc {
    font-size: 0.88rem;
    color: var(--muted-bright);
    line-height: 1.65;
    max-width: 560px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    margin-top: 2px;
}

.service-card:hover .service-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* CTA label */
.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 6px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-card-cta::after {
    content: "→";
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-cta {
    color: var(--text-bright);
    gap: 14px;
}

.service-card:hover .service-card-cta::after {
    transform: translateX(4px);
}

/* ============================================
   SERVICES — RESPONSIVE
   ============================================ */

   /* ============================================
   SERVICE PAGES — SHARED STYLES
   Append to styles.css above the @media queries.
   Used by: exterior, interior, paint-correction,
   ceramic-coatings, memberships pages.
   ============================================ */


/* --- Page Hero (smaller than homepage hero) --- */

.page-hero {
    position: relative;
    height: 52vh;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding: 0 20px 64px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.5) 0%, transparent 70%);
    z-index: 2;
}

.page-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-bright);
    transition: color 0.25s ease;
    margin-bottom: 4px;
}

.page-back:hover {
    color: var(--text-bright);
}

.page-hero-inner .eyebrow {
    margin-bottom: 0;
}

.page-hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text-bright);
}


/* --- Page Intro --- */

.page-intro {
    padding: clamp(48px, 7vw, 80px) 20px;
    border-bottom: 1px solid var(--border);
}

.page-intro-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-intro-text {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.85;
    color: var(--muted-bright);
}


/* --- Service List wrapper --- */

.service-list {
    padding: 0 20px;
}

.service-list-inner {
    max-width: 1320px;
    margin: 0 auto;
}


/* --- Individual Service Detail --- */

.service-detail {
    border-top: 1px solid var(--border);
    padding: clamp(48px, 7vw, 96px) 0;
}

.service-detail:last-child {
    border-bottom: 1px solid var(--border);
}


/* Header: number + title + meta row */

.service-detail-header {
    margin-bottom: 32px;
}

.service-detail-num {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--silver);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.service-detail-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--text-bright);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.service-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.service-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 28px 16px 0;
}

.service-meta-item:first-child {
    padding-left: 0;
}

.service-meta-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
}

.service-meta-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-bright);
    line-height: 1;
}

.service-meta-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    margin: 0 28px 0 0;
    flex-shrink: 0;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--silver);
    border: 1px solid var(--border-bright);
    padding: 6px 12px;
    margin-left: 4px;
    align-self: center;
}


/* Description */

.service-detail-desc {
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--muted-bright);
    max-width: 780px;
    margin-bottom: 40px;
}


/* Two-column: Includes + Best For */

.service-detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    margin-bottom: 40px;
}

.service-col-title {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 20px;
}

.service-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-col-list li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.service-col-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 1px;
    background: var(--silver);
}


/* Important note box */

.service-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: 2px solid var(--silver);
    padding: 18px 20px;
    margin-bottom: 40px;
    max-width: 640px;
}

.service-note svg {
    color: var(--silver);
}

.service-note p {
    font-size: 0.88rem;
    color: var(--muted-bright);
    line-height: 1.6;
}


/* CTA row at bottom of each service */

.service-detail-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* --- Pricing / footnotes --- */

.page-footnotes {
    padding: clamp(32px, 4vw, 56px) 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.page-footnotes-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 48px;
}

.page-footnote {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.page-footnote::before {
    content: "*";
    position: absolute;
    left: 0;
    color: var(--silver);
}


/* ============================================
   MEMBERSHIP PAGE — SPECIFIC STYLES
   ============================================ */

.membership-category {
    padding: clamp(48px, 7vw, 80px) 20px;
    border-bottom: 1px solid var(--border);
}

.membership-category-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.membership-category-intro {
    max-width: 680px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.membership-category-intro p {
    font-size: 0.96rem;
    color: var(--muted-bright);
    line-height: 1.8;
    margin-top: 16px;
}

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

.membership-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: clamp(28px, 3.5vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.3s ease;
}

.membership-card:hover {
    border-color: var(--border-bright);
}

.membership-card-tier {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 12px;
}

.membership-card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--text-bright);
    line-height: 1.1;
    margin-bottom: 20px;
}

.membership-card-price {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--text-bright);
    line-height: 1;
    margin-bottom: 4px;
}

.membership-card-price-note {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.membership-card-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.membership-card-includes-title {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 14px;
}

.membership-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.membership-card-list li {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.membership-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--silver);
}

.membership-card-bestfor-title {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.membership-card-bestfor {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
}

/* How it works section */
.membership-how {
    padding: clamp(48px, 6vw, 80px) 20px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.membership-how-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.membership-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 56px);
    margin-top: clamp(32px, 4vw, 48px);
}

.membership-how-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.membership-how-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--silver);
}

.membership-how-item h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-bright);
}

.membership-how-item p {
    font-size: 0.88rem;
    color: var(--muted-bright);
    line-height: 1.7;
}


/* ============================================
   CERAMIC COATINGS — SPECIFIC STYLES
   ============================================ */

.ceramic-booking-rule {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: 2px solid var(--silver);
    padding: clamp(28px, 4vw, 48px);
    margin-bottom: clamp(48px, 6vw, 80px);
}

.ceramic-booking-rule h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.ceramic-booking-rule p {
    font-size: 0.92rem;
    color: var(--muted-bright);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 12px;
}

.ceramic-booking-rule p:last-child {
    margin-bottom: 0;
}

.ceramic-add-ons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ceramic-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.3s ease;
}

.ceramic-card:hover {
    border-color: var(--border-bright);
}

.ceramic-card-price {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    color: var(--text-bright);
    line-height: 1;
    margin-bottom: 4px;
}

.ceramic-card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--text-bright);
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 8px;
}

.ceramic-card-desc {
    font-size: 0.88rem;
    color: var(--muted-bright);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.ceramic-card-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 16px;
}

.ceramic-card-bestfor-title {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 10px;
}

.ceramic-card-bestfor {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ceramic-card-bestfor li {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.ceramic-card-bestfor li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--border-bright);
}


/* ============================================
   SERVICE PAGES — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .service-detail-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .membership-how-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ceramic-add-ons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .page-hero {
        height: 44vh;
        min-height: 300px;
        padding-bottom: 44px;
    }

    .service-detail-meta {
        gap: 0;
        flex-wrap: wrap;
    }

    .service-meta-item {
        padding: 12px 20px 12px 0;
    }

    .service-meta-divider {
        margin: 0 20px 0 0;
    }

    .service-detail-cta {
        flex-direction: column;
    }

    .service-detail-cta .btn {
        justify-content: center;
    }

    .ceramic-add-ons-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CERAMIC COATINGS — ADDITIONAL CSS
   Append to service-pages.css (or styles.css),
   above the @media responsive queries.
   ============================================ */

/* Section wrapper for the booking rule */
.ceramic-rule-section {
    padding: 0 20px;
    margin-top: clamp(40px, 5vw, 64px);
}

.ceramic-rule-inner {
    max-width: 1320px;
    margin: 0 auto;
}

/* Links inside the booking rule box */
.ceramic-booking-rule a {
    color: var(--silver);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.ceramic-booking-rule a:hover {
    color: var(--text-bright);
}

/* Ceramic group sections */
.ceramic-group {
    padding: clamp(64px, 8vw, 120px) 20px;
}

.ceramic-group-alt {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ceramic-group-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.ceramic-group-header {
    margin-bottom: clamp(40px, 5vw, 64px);
}

.ceramic-group-header .eyebrow {
    margin-bottom: 16px;
}

.ceramic-group-header .section-title {
    margin-bottom: 16px;
}

.ceramic-group-intro {
    font-size: 0.96rem;
    color: var(--muted-bright);
    line-height: 1.75;
    max-width: 560px;
}

/* Tier label at top of each card */
.ceramic-card-tier {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

/* Featured / recommended card highlight */
.ceramic-card-featured {
    border-color: var(--border-bright);
}

.ceramic-card-featured .ceramic-card-tier {
    color: var(--silver);
}

/* ============================================
   MEMBERSHIPS — ADDITIONAL CSS
   Append to styles.css above @media queries.
   ============================================ */

/* Alternating background for non-ceramic section */
.membership-category-alt {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Featured / middle tier card highlight */
.membership-card-featured {
    border-color: var(--border-bright);
}

.membership-card-featured .membership-card-tier {
    color: var(--silver);
}

/* Tablet */
@media (max-width: 900px) {
    .service-card-wide {
        aspect-ratio: 16 / 6;
    }
}

/* Mobile — stack all cards */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-card-wide {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }

    .service-card-desc {
        opacity: 1;
        transform: none;
    }
}
/* ============================================
   14. GALLERY
   ============================================ */

.gallery {
    padding: clamp(80px, 12vw, 160px) 20px;
}

.gallery-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.gallery-grid {
    columns: 3;
    column-gap: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-elevated);
    display: block;
    break-inside: avoid;
    margin-bottom: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.92);
    transition: transform 1.2s ease, filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 900px) {
    .gallery-grid { columns: 2; }
}

@media (max-width: 500px) {
    .gallery-grid { columns: 1; }
}

/* ============================================
   15. FOUNDER
   ============================================ */

.founder {
    padding: clamp(80px, 12vw, 160px) 20px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.founder-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: center;
}

/* Image side */
.founder-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.founder-image::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(245, 242, 235, 0.15);
    pointer-events: none;
    z-index: 2;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

/* Text side */
.founder-text .eyebrow {
    margin-bottom: 24px;
}

.founder-text .section-title {
    margin-bottom: 32px;
}

.founder-body {
    color: var(--muted-bright);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.founder-body:last-of-type {
    margin-bottom: 36px;
}

.founder-signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--silver);
}

.founder-signature small {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

.founder-credentials {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.founder-credentials-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.founder-credential-badge {
    width: 200px;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* ============================================
   16. FINAL CTA
   ============================================ */

.final-cta {
    padding: clamp(100px, 16vw, 200px) 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.final-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-bright);
    margin-bottom: 48px;
}

/* ============================================
   17. CONTACT
   ============================================ */

.contact {
    padding: clamp(80px, 12vw, 160px) 20px;
}

.contact-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

/* ------ LEFT COLUMN ------ */

.contact-info .eyebrow {
    margin-bottom: 20px;
}

.contact-info .section-title {
    margin-bottom: 28px;
}

.contact-intro {
    color: var(--muted-bright);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 460px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.contact-list li {
    border-bottom: 1px solid var(--border);
}

.contact-list li a,
.contact-list li .contact-static {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    transition: padding-left 0.3s ease;
}

.contact-list li a:hover {
    padding-left: 8px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-bright);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
}

.contact-list li a:hover .contact-icon {
    background: var(--text-bright);
    color: var(--bg);
    border-color: var(--text-bright);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-bright);
}

/* Map placeholder */
.contact-map-placeholder {
    margin-top: 40px;
    aspect-ratio: 16 / 10;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}


/* ------ RIGHT COLUMN: FORM ------ */

.quote-form {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: clamp(28px, 4vw, 44px);
}

.form-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--text-bright);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-bright);
    margin-bottom: 32px;
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-bright);
    color: var(--text-bright);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-bottom-color: var(--text-bright);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--muted);
}

.form-row textarea {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-body);
}

.form-row select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23A8A8A8' stroke-width='1' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 24px;
    cursor: pointer;
}

.form-row select option {
    background: var(--bg-elevated);
    color: var(--text);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-submit {
    width: 100%;
    margin-top: 14px;
    justify-content: center;
    padding: 18px;
}

.form-note {
    margin-top: 18px;
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   18. FOOTER
   ============================================ */

.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 20px 32px;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

/* Brand column */
.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.footer-brand-tag {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
}

.footer-brand-blurb {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted-bright);
    max-width: 320px;
}

/* Link columns */
.footer-col-title {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text);
    transition: color 0.25s ease;
}

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

/* Bottom bar */
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--silver);
}

/* ============================================
   19. FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* ============================================
   20. RESPONSIVE (max-width queries)
   ============================================ */

   /* ----- Tablet (≤ 900px) ----- */
@media (max-width: 900px) {

    /* Nav: stack into a smaller horizontal layout */
    .nav-inner {
        gap: 16px;
    }
    .nav-brand-text {
        font-size: 1rem;
    }
    .nav-brand-text small {
        display: none;
    }
    .nav-links {
        gap: 20px;
    }
    .nav-links a {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    /* Bento: 3 columns instead of 6 */
    .bento-inner {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 140px;
    }
    .bento-cell-1 { grid-column: span 3; grid-row: span 2; }
    .bento-cell-2 { grid-column: span 2; grid-row: span 1; }
    .bento-cell-3 { grid-column: span 1; grid-row: span 1; }
    .bento-cell-4 { grid-column: span 3; grid-row: span 1; }
    .bento-cell-5 { grid-column: span 1; grid-row: span 1; }
    .bento-cell-6 { grid-column: span 2; grid-row: span 1; }
    .bento-cell-7 { grid-column: span 3; grid-row: span 1; }

    /* Packages: stack the 3-column layout vertically */
    .package {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .package-num {
        font-size: 1.2rem;
    }

    /* Gallery: simpler 6-column grid */
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 120px;
    }
    .gallery-item-1 { grid-column: span 6; grid-row: span 3; }
    .gallery-item-2 { grid-column: span 3; grid-row: span 2; }
    .gallery-item-3 { grid-column: span 3; grid-row: span 2; }
    .gallery-item-4 { grid-column: span 3; grid-row: span 2; }
    .gallery-item-5 { grid-column: span 3; grid-row: span 2; }
    .gallery-item-6 { grid-column: span 2; grid-row: span 2; }
    .gallery-item-7 { grid-column: span 2; grid-row: span 2; }
    .gallery-item-8 { grid-column: span 2; grid-row: span 2; }
    .gallery-item-9 { grid-column: span 6; grid-row: span 2; }

    /* Founder: stack vertically */
    .founder-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-image {
        aspect-ratio: 4 / 3;
    }

    /* Contact: stack the two columns */
    .contact-inner {
        grid-template-columns: 1fr;
    }

    /* Footer: 2 columns instead of 4 */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ----- Mobile (≤ 600px) ----- */
@media (max-width: 600px) {

    /* Utility bar: drop email if it crowds things */
    .utility-item {
        font-size: 0.7rem;
    }

    /* Nav: hide the link list, keep only brand + CTA */
    .nav-links li:not(:last-child) {
        display: none;
    }

    /* Hero: tighter padding, smaller scroll indicator */
    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .hero-scroll {
        display: none;
    }

    /* Bento: 2 columns */
    .bento-inner {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
    .bento-cell-1 { grid-column: span 2; grid-row: span 2; }
    .bento-cell-2 { grid-column: span 1; grid-row: span 1; }
    .bento-cell-3 { grid-column: span 1; grid-row: span 1; }
    .bento-cell-4 { grid-column: span 2; grid-row: span 1; }
    .bento-cell-5 { grid-column: span 1; grid-row: span 1; }
    .bento-cell-6 { grid-column: span 1; grid-row: span 1; }
    .bento-cell-7 { grid-column: span 2; grid-row: span 1; }

    /* Pricing table: smaller padding so it fits */
    .pricing-table th,
    .pricing-table td {
        padding: 14px 8px;
        font-size: 0.85rem;
    }
    .pricing-table td:first-child {
        font-size: 0.95rem;
    }
    .pricing-table th {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }
    .row-flag {
        display: none;
    }

    /* Package prices: stack vertically on tiny screens */
    .package-includes {
        grid-template-columns: 1fr;
    }

    /* Form: collapse 2-column form rows to 1 */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Footer: 1 column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* WhatsApp button: shift slightly to avoid covering content */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}


/* ----- Small mobile (≤ 400px) ----- */
@media (max-width: 400px) {

    /* Utility bar: smaller items, allow wrap */
    .utility-bar-inner {
        gap: 8px 16px;
    }
    .utility-item span:not(.utility-icon) {
        font-size: 0.65rem;
    }

    /* Hero: ensure headline doesn't break weirdly */
    .hero-title {
        font-size: 2.4rem;
    }

    /* Bento: 1 column on tiniest screens */
    .bento-inner {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .bento-cell-1,
    .bento-cell-2,
    .bento-cell-3,
    .bento-cell-4,
    .bento-cell-5,
    .bento-cell-6,
    .bento-cell-7 {
        grid-column: span 1;
        grid-row: span 1;
    }
}