/* ============================================
   Mackay Painting & Finishing — Custom Styles
   Classic & Elegant · Deep Navy + Warm Gold
   ============================================ */

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

:root {
    --navy: #1B2A4A;
    --navy-deep: #131F36;
    --navy-light: #2A3D64;
    --gold: #C8A45C;
    --gold-light: #D4B76E;
    --gold-pale: #F5EDDA;
    --cream: #FAF8F4;
    --cream-dark: #F2EDE4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-body: #3D3D3D;
    --text-muted: #6B6B6B;
    --text-light: #9A9A9A;
    --border: #E5E0D6;
    --border-light: #F0EBE3;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.08);
    --shadow-lg: 0 8px 32px rgba(27, 42, 74, 0.12);
    --shadow-xl: 0 16px 48px rgba(27, 42, 74, 0.16);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy-deep);
    border: 2px solid var(--gold);
}

.btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn--ghost:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn--large {
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--navy-deep);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(200, 164, 92, 0.2);
}

.top-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.top-bar__link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.top-bar__link:hover {
    color: var(--gold-light);
}

/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}

.nav__logo-icon {
    color: var(--gold);
}

.nav__logo-text {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav__logo-accent {
    color: var(--gold);
    font-style: italic;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--navy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--navy-light);
    color: var(--white);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav__toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: all var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl);
}

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

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__link--cta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--space-sm);
    padding: 0.8rem 2rem;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
}

.mobile-menu__contact {
    margin-top: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-menu__contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mobile-menu__contact a {
    font-size: 0.9rem;
    color: var(--navy);
    transition: color var(--transition);
}

.mobile-menu__contact a:hover {
    color: var(--gold);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: calc(100vh - 104px);
    background: var(--navy);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 164, 92, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(200, 164, 92, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__left {
    padding-right: var(--space-lg);
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    display: block;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero__headline em {
    font-style: italic;
    color: var(--gold);
}

.hero__subheadline {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero__credentials {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__credential {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__credential-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero__credential-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.hero__credential-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

/* Hero Image Stack */
.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 560px;
}

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.hero__image--main {
    width: 75%;
    height: 460px;
    top: 0;
    right: 0;
}

.hero__image--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--accent {
    width: 55%;
    height: 200px;
    bottom: 40px;
    left: 0;
    z-index: 2;
}

.hero__image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.3) 0%, transparent 60%);
    border-radius: var(--radius-md);
}

.hero__image-card {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 3;
    background: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
}

.hero__image-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__image-card-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}

.hero__image-card-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    z-index: 2;
}

.hero__scroll-indicator svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* --- Services Section --- */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.services__header .section-subtitle {
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    color: var(--gold);
    transition: background var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--gold);
    color: var(--navy);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- About Section --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about__image-col {
    position: relative;
    height: 600px;
}

.about__image-main {
    width: 75%;
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content-col {
    padding-left: var(--space-lg);
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about__value-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    color: var(--gold);
    margin-top: 2px;
}

.about__value-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

/* --- Craft / Process Section --- */
.craft {
    padding: var(--space-3xl) 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.craft::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(200, 164, 92, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.craft .container {
    position: relative;
    z-index: 1;
}

.craft__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.craft__header .section-eyebrow {
    color: var(--gold);
}

.craft__header .section-title {
    color: var(--white);
}

.craft__header .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 auto;
}

.craft__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    position: relative;
}

.craft__timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(200, 164, 92, 0.3);
}

.craft__step {
    text-align: center;
    padding: var(--space-md);
}

.craft__step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    display: block;
}

.craft__step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.craft__step-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.craft__step-connector {
    display: none;
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery__header .section-subtitle {
    margin: 0 auto;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.04);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 42, 74, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
}

.gallery__item--large {
    grid-column: span 7;
    height: 380px;
}

.gallery__item:not(.gallery__item--large) {
    height: 260px;
}

/* --- Testimonial Section --- */
.testimonial {
    padding: var(--space-3xl) 0;
    background: var(--navy-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 164, 92, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.testimonial__quote-mark {
    color: var(--gold);
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.testimonial__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.testimonial__attribution {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial__attribution-name {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.testimonial__attribution-location {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* --- CTA Section --- */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
}

.cta__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__title {
    margin-bottom: var(--space-sm);
}

.cta__body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact__info-col {
    padding-right: var(--space-lg);
}

.contact__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: var(--radius-sm);
    color: var(--gold);
}

.contact__detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.contact__detail-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
}

.contact__detail-value a {
    transition: color var(--transition);
}

.contact__detail-value a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact__form-col {
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact__field {
    margin-bottom: var(--space-md);
}

.contact__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact__input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.contact__input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.15);
}

.contact__input::placeholder {
    color: var(--text-light);
}

.contact__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form-success {
    text-align: center;
    padding: var(--space-xl);
    color: var(--navy);
}

.contact__form-success svg {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.contact__form-success p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* --- Footer --- */
.footer {
    background: var(--navy-deep);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer__logo-icon {
    color: var(--gold);
}

.footer__logo-accent {
    color: var(--gold);
    font-style: italic;
}

.footer__tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--gold);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer__phone, .footer__email {
    font-size: 0.88rem;
    color: var(--gold);
    transition: color var(--transition);
}

.footer__phone:hover, .footer__email:hover {
    color: var(--gold-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
}

.footer__copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer__location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero__left {
        padding-right: 0;
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__credentials {
        justify-content: center;
    }

    .hero__right {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__image-stack {
        height: 420px;
    }

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

    .about__layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about__image-col {
        height: 400px;
        order: -1;
    }

    .about__content-col {
        padding-left: 0;
    }

    .craft__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .craft__timeline::before {
        display: none;
    }

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

    .gallery__item--large {
        grid-column: span 2;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact__info-col {
        padding-right: 0;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .top-bar__inner {
        justify-content: center;
    }

    .top-bar__text {
        display: none;
    }

    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-bottom: var(--space-xl);
    }

    .hero__inner {
        padding: var(--space-xl) var(--space-md);
    }

    .hero__headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero__image-stack {
        height: 360px;
    }

    .hero__image--main {
        height: 300px;
    }

    .hero__image--accent {
        height: 160px;
    }

    .hero__image-card {
        display: none;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__image-col {
        height: 300px;
    }

    .about__image-main {
        height: 300px;
        width: 100%;
    }

    .about__image-float {
        width: 60%;
        height: 200px;
    }

    .about__values {
        grid-template-columns: 1fr;
    }

    .craft__timeline {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--large {
        grid-column: span 1;
        height: 280px;
    }

    .gallery__item:not(.gallery__item--large) {
        height: 240px;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .contact__form-col {
        padding: var(--space-md);
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero__credentials {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero__credential-sep {
        display: none;
    }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}
