/* ==========================================================================
   Whyte Auction Theme — Design System
   Black (#080808) | Blue (#0D5EBA) | Gold (#c9a84c) | White (#ffffff)
   Fonts: Playfair Display (headings) | Inter (body)
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --navy:       #080808;
    --navy-dark:  #000000;
    --navy-light: #1a1a1a;
    --blue:       #0D5EBA;
    --blue-dark:  #094a94;
    --blue-light: #1a7ae0;
    --gold:       #c9a84c;
    --gold-dark:  #b08f3a;
    --gold-light: #dcc06e;
    --white:      #ffffff;
    --offwhite:   #f7f7f5;
    --light-bg:   #f2f0eb;
    --text:       #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border:     #e0ddd6;
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg:  0 8px 30px rgba(0,0,0,0.2);
    --radius:     6px;
    --radius-lg:  12px;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container:  1200px;
    --container-narrow: 860px;
    --transition: 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn--navy {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn--navy:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.btn--black {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--black:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn--white:hover {
    background: var(--offwhite);
    color: var(--navy);
}

.btn--outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn--outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--blue);
}

.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.site-header__top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.45rem 0;
}

.site-header__top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-header__contact-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-header__contact-info a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.site-header__contact-info a:hover { color: var(--gold); }

.site-header__auction-notice {
    color: var(--gold);
    font-weight: 500;
}

.site-header__nav {
    padding: 0.8rem 0;
}

.site-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Brand / Logo */
.site-header__brand a,
.site-header__logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.site-header__logo-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.site-header__logo-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Main Menu */
.site-header__menu-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-header__menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.site-header__menu li {
    position: relative;
}

.site-header__menu > li > a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.site-header__menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.site-header__menu > li > a:hover::after,
.site-header__menu > li.current-menu-item > a::after,
.site-header__menu > li.current_page_item > a::after {
    transform: scaleX(1);
}

.site-header__menu > li > a:hover {
    color: var(--blue);
}

/* Dropdown */
.site-header__menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    min-width: 200px;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 100;
}

.site-header__menu li:hover > .sub-menu {
    display: block;
}

.site-header__menu .sub-menu a {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text);
}
.site-header__menu .sub-menu a:hover {
    background: var(--offwhite);
    color: var(--blue);
}

/* Hamburger */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.site-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

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

/* =============================================
   HERO
   ============================================= */

.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 7rem 0 6rem;
    text-align: center;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-image: url('../images/hero-painting.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   SECTIONS
   ============================================= */

.section {
    padding: 5rem 0;
}

.section--white { background: var(--white); }
.section--light { background: var(--light-bg); }
.section--navy  { background: var(--navy); color: var(--white); }

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__header--left {
    text-align: left;
}

.section__header--light .section__title {
    color: var(--white);
}

.section__title {
    margin-bottom: 0.75rem;
}

.section__divider {
    width: 60px;
    height: 3px;
    background: var(--blue);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section__header--left .section__divider {
    margin-left: 0;
}

.section__divider--gold { background: var(--gold); }

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* =============================================
   PAGE HERO
   ============================================= */

.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.page-hero__title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero__desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero__breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.65);
}
.page-hero__breadcrumb a:hover {
    color: var(--gold);
}

.page-hero__breadcrumb span {
    margin: 0 0.4rem;
}

.page-hero__auction-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.page-hero__auction-date svg { stroke: var(--gold); }

.page-hero__status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.page-hero__status--upcoming { background: rgba(201,168,76,0.2); color: var(--gold); }
.page-hero__status--live { background: rgba(72,187,120,0.2); color: #48bb78; }
.page-hero__status--ended { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

.page-hero__meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

.page-hero__meta a { color: rgba(255,255,255,0.7); }
.page-hero__meta a:hover { color: var(--gold); }

.page-hero__sep { margin: 0 0.5rem; }

/* =============================================
   ABOUT INTRO
   ============================================= */

.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.about-intro__text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-intro__text .btn { margin-top: 1rem; }

.about-intro__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stat-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.stat-card__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.25rem;
}

.stat-card__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   DEPARTMENTS GRID
   ============================================= */

.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dept-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
}

.dept-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.dept-card__icon {
    margin-bottom: 1.2rem;
    color: var(--blue);
}

.dept-card__icon svg { stroke: var(--blue); }

.dept-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.dept-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Departments Detail Grid */
.departments-detail-grid,
.departments-grid--large {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.dept-detail-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.dept-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.dept-detail-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dept-detail-card__content {
    padding: 2rem;
}

.dept-detail-card__title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.dept-detail-card__desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* =============================================
   AUCTION CARDS
   ============================================= */

.auctions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.auction-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.auction-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.auction-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.auction-card__image--placeholder {
    background: var(--light-bg);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auction-card__placeholder { color: var(--text-muted); }

.auction-card__body {
    padding: 1.5rem;
    position: relative;
}

.auction-card__date-badge {
    position: absolute;
    top: -1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    line-height: 1.1;
    box-shadow: var(--shadow-sm);
}

.auction-card__date-badge--past {
    background: var(--text-muted);
}

.auction-card__day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.auction-card__month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auction-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    padding-right: 3.5rem;
}

.auction-card__title a {
    color: var(--navy);
}
.auction-card__title a:hover {
    color: var(--blue);
}

.auction-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.auction-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.auction-card__ended-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-muted);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   BENEFITS GRID
   ============================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
}

.benefit-card__icon {
    color: var(--blue-light);
    margin-bottom: 1.2rem;
}

.benefit-card__icon svg { stroke: var(--blue-light); }

.benefit-card__title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.benefit-card__desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-card__quote {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.testimonial-card__author {
    font-style: normal;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item__question {
    padding: 1.4rem 2.5rem 1.4rem 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    list-style: none;
    position: relative;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--blue);
    transition: transform 0.3s;
}

.faq-item[open] .faq-item__question::after {
    content: '−';
}

.faq-item__answer {
    padding: 0 0 1.4rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-top: 3px solid var(--blue);
}

.cta-banner__title {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.cta-banner__text {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-banner__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   PROCESS STEPS
   ============================================= */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.process-step__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   AUCTION DETAIL
   ============================================= */

.auction-detail {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.auction-detail__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.auction-info-card {
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 120px;
    margin-bottom: 1.5rem;
}

.auction-info-card__title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--blue);
}

.auction-info-card__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.auction-info-card__label {
    font-weight: 600;
    color: var(--navy);
    flex-shrink: 0;
}

.auction-info-card__value {
    color: var(--text-light);
    text-align: right;
}

.auction-info-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.auction-info-card--contact {
    background: var(--white);
}

.auction-info-card--contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* =============================================
   CATALOGUE LIST
   ============================================= */

.catalogue-list {
    display: flex;
    flex-direction: column;
}

.catalogue-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}

.catalogue-row__day {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.catalogue-row__title a {
    font-weight: 600;
    font-size: 1.05rem;
}

.catalogue-row__status {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-left: 0.75rem;
}

.catalogue-row__status--upcoming { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.catalogue-row__status--live { background: rgba(72,187,120,0.15); color: #2f855a; }
.catalogue-row__status--ended { background: var(--light-bg); color: var(--text-muted); }

.catalogue-row__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* =============================================
   VALUATIONS LAYOUT
   ============================================= */

.valuations-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.service-card__icon {
    flex-shrink: 0;
    color: var(--blue);
    margin-top: 0.2rem;
}

.service-card__icon svg { stroke: var(--blue); }

.service-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.valuation-info-box {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--blue);
}

.valuation-info-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.valuation-info-box ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.valuation-info-box li {
    margin-bottom: 0.3rem;
}

/* Valuation Form */
.valuation-form-card {
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: sticky;
    top: 120px;
}

.valuation-form-card__title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.valuation-form-card__desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.form-group .required { color: #c53030; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(13,94,186,0.15);
}

.form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* =============================================
   POST CARDS (Blog)
   ============================================= */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.post-card:hover { box-shadow: var(--shadow-md); }

.post-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card__content {
    padding: 1.5rem;
}

.post-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.post-card__title a { color: var(--navy); }
.post-card__title a:hover { color: var(--blue); }

.post-card__meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.post-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* =============================================
   SINGLE POST
   ============================================= */

.single-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.single-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
}

.single-nav a {
    font-weight: 500;
    font-size: 0.9rem;
}

/* =============================================
   PAGE CONTENT
   ============================================= */

.page-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content ul, .page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.4rem;
}

.page-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.content-area {
    padding: 3rem 0;
}

/* =============================================
   PAGINATION
   ============================================= */

.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.pagination a:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.pagination .current {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* =============================================
   NO RESULTS
   ============================================= */

.no-results, .no-auctions {
    text-align: center;
    padding: 3rem;
    background: var(--offwhite);
    border-radius: var(--radius-lg);
    color: var(--text-light);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer__main {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 3rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.site-footer__logo-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.site-footer__logo-sub {
    font-size: 0.7rem;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.site-footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.site-footer__heading {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.site-footer__links a:hover { color: var(--blue-light); }

.site-footer__address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.site-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__contact-list li {
    margin-bottom: 0.5rem;
}

.site-footer__contact-list a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.site-footer__contact-list a:hover { color: var(--blue-light); }
.site-footer__contact-list svg { stroke: var(--blue-light); flex-shrink: 0; }

.site-footer__bottom {
    background: var(--navy-dark);
    padding: 1.2rem 0;
    font-size: 0.8rem;
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__copyright {
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.site-footer__legal {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.site-footer__legal a:hover { color: var(--blue-light); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .about-intro { grid-template-columns: 1fr; gap: 2rem; }
    .auction-detail { grid-template-columns: 1fr; }
    .auction-info-card { position: static; }
    .valuations-layout { grid-template-columns: 1fr; gap: 2rem; }
    .valuation-form-card { position: static; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .catalogue-row { grid-template-columns: 1fr; gap: 0.5rem; }
}

@media (max-width: 768px) {
    .site-header__top-bar { display: none; }

    .site-header__hamburger { display: flex; }

    .site-header__menu-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        gap: 1rem;
    }

    .site-header__menu-wrap.active { display: flex; }

    .site-header__menu {
        flex-direction: column;
        width: 100%;
    }

    .site-header__menu > li > a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    .site-header__menu > li > a::after { display: none; }

    .site-header__menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }

    .site-header__menu-cta { width: 100%; }
    .site-header__menu-cta .btn { width: 100%; justify-content: center; }

    .departments-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero { padding: 4rem 0 3.5rem; min-height: auto; }
    .section { padding: 3.5rem 0; }

    .dept-detail-card { grid-template-columns: 1fr; }
    .dept-detail-card__image { height: 200px; }
    .dept-detail-card__image img { height: 200px; }
}

@media (max-width: 480px) {
    .departments-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .auctions-grid { grid-template-columns: 1fr; }
    .hero__ctas { flex-direction: column; align-items: center; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */

.elementor-page .site-content { padding: 0; }
.elementor-page .site-content .container { max-width: 100%; padding: 0; }

/* =============================================
   UTILITY
   ============================================= */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
