/* =========================================================
   One Call Renovation — Stylesheet
   Aesthetic: Established, craftsman, trustworthy
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter+Tight:wght@400;500;600;700&display=swap');

/* ----- Design Tokens ----- */
:root {
    /* Color palette */
    --navy-900: #11253A;
    --navy-800: #173049;
    --navy-700: #1B3B58;
    --navy-100: #DCE6F1;
    --cream: #F5EDE0;
    --cream-soft: #FAF5EC;
    --paper: #FFFCF7;
    --copper: #B5532A;
    --copper-dark: #8E3F1F;
    --copper-soft: #E8C7AE;
    --charcoal: #2A2A2A;
    --slate: #5A5A5A;
    --line: #D9CFBE;
    --line-soft: #EAE2D2;

    /* Type */
    --serif: 'Fraunces', 'Georgia', serif;
    --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1200px;
    --container-narrow: 880px;
    --radius: 4px;
    --shadow-sm: 0 1px 2px rgba(17, 37, 58, 0.06);
    --shadow-md: 0 4px 14px rgba(17, 37, 58, 0.08);
    --shadow-lg: 0 14px 40px rgba(17, 37, 58, 0.12);

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
    width: 100%;
}

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

a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

a:hover {
    color: var(--copper-dark);
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--navy-900);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--copper);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.4rem;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.8rem;
    height: 1px;
    background: var(--copper);
}

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

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

section {
    padding: 5rem 0;
}

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

.section-header p.lead {
    max-width: 640px;
    margin: 0.75rem auto 0;
    color: var(--slate);
    font-size: 1.05rem;
}

/* ----- Top Announcement Bar ----- */
.announce {
    background: var(--navy-900);
    color: var(--cream);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.announce a {
    color: var(--copper-soft);
    font-weight: 600;
}

.announce a:hover {
    color: white;
}

/* ----- Navigation ----- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow 0.3s var(--ease);
}

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

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 1;
    min-width: 0;
    text-decoration: none;
}

.nav-brand img {
    height: 52px;
    width: auto;
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.nav-brand-text .name {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--navy-900);
    font-size: 1.15rem;
}

.nav-brand-text .tag {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--navy-800);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--navy-900);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--navy-900);
    color: var(--cream) !important;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s var(--ease);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--copper);
    color: white !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--navy-900);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--copper);
    color: white;
}

.btn-primary:hover {
    background: var(--copper-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--navy-900);
    color: var(--cream);
}

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

.btn-outline {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900);
}

.btn-outline:hover {
    background: var(--navy-900);
    color: var(--cream);
}

.btn-arrow::after {
    content: "→";
    transition: transform 0.25s var(--ease);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ----- Hero ----- */
.hero {
    position: relative;
    background: var(--navy-900);
    color: var(--cream);
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(17, 37, 58, 0.92) 0%, rgba(17, 37, 58, 0.65) 60%, rgba(17, 37, 58, 0.45) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.hero .eyebrow {
    color: var(--copper-soft);
}

.hero .eyebrow::before {
    background: var(--copper-soft);
}

.hero h1 {
    color: var(--cream);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    margin-bottom: 1.25rem;
    line-height: 1.05;
}

.hero h1 em {
    font-style: italic;
    color: var(--copper-soft);
    font-weight: 400;
}

.hero p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: rgba(245, 237, 224, 0.85);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 237, 224, 0.18);
}

.hero-trust .stat {
    display: flex;
    flex-direction: column;
}

.hero-trust .stat-num {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--copper-soft);
    line-height: 1;
}

.hero-trust .stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 237, 224, 0.7);
    margin-top: 0.4rem;
}

/* ----- About ----- */
.about {
    background: var(--cream);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid var(--copper);
    border-radius: var(--radius);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    background: var(--navy-100);
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper-soft);
    font-family: var(--serif);
    font-size: 1.5rem;
    text-align: center;
    padding: 2rem;
}

.about p {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about p:last-of-type {
    margin-bottom: 2rem;
}

/* ----- Services Preview ----- */
.services {
    background: var(--paper);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.service-card {
    flex: 1 1 260px;
    background: var(--cream-soft);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--copper);
    transition: height 0.4s var(--ease);
}

.service-card:hover {
    border-color: var(--copper-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--copper-soft);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.55;
}

.services-cta {
    text-align: center;
}

/* ----- Why Choose Us ----- */
.why {
    background: var(--navy-900);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(232, 199, 174, 0.15);
    border-radius: 50%;
}

.why::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(232, 199, 174, 0.08);
    border-radius: 50%;
}

.why h2 {
    color: var(--cream);
    text-align: center;
}

.why .section-header p.lead {
    color: rgba(245, 237, 224, 0.75);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.why-item {
    text-align: center;
    padding: 1rem;
}

.why-item .num {
    font-family: var(--serif);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--copper-soft);
    line-height: 1;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 2px solid var(--copper);
    padding-bottom: 0.4rem;
}

.why-item h3 {
    color: var(--cream);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.why-item p {
    color: rgba(245, 237, 224, 0.75);
    font-size: 0.95rem;
}

/* ----- Testimonials ----- */
.testimonials {
    background: var(--cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
}

.testimonial .stars {
    color: var(--copper);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial blockquote {
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--navy-900);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial blockquote::before {
    content: "“";
    font-size: 3rem;
    color: var(--copper);
    line-height: 0.6;
    margin-right: 0.25rem;
    vertical-align: -0.4em;
    font-family: var(--serif);
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.testimonial cite span {
    display: block;
    font-weight: 400;
    color: var(--slate);
    font-size: 0.8rem;
    margin-top: 0.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ----- Projects Preview ----- */
.projects-preview {
    background: var(--paper);
    border-top: 1px solid var(--line-soft);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.preview-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy-100);
    position: relative;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.preview-item:hover img {
    transform: scale(1.05);
}

.preview-cta {
    text-align: center;
}

/* ----- Contact ----- */
.contact {
    background: var(--cream);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--slate);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-soft);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail .icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--navy-900);
    color: var(--copper-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-detail .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--slate);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-detail a,
.contact-detail .value {
    color: var(--navy-900);
    font-weight: 500;
    font-size: 1.05rem;
}

.contact-detail a:hover {
    color: var(--copper);
}

/* Contact form */
.contact-form {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(181, 83, 42, 0.12);
}

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

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--slate);
    text-align: center;
    margin-top: 1rem;
}

/* Form state transitions */
.form-state[hidden] {
    display: none;
}

.form-success,
.form-error {
    text-align: center;
    padding: 1rem 0;
    animation: fadeIn 0.4s var(--ease);
}

.form-success h3,
.form-error h3 {
    margin-bottom: 0.75rem;
}

.form-success p,
.form-error p {
    color: var(--slate);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.form-error a {
    color: var(--copper);
    font-weight: 600;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0.5rem auto 1.25rem;
    background: var(--copper);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 0.5s var(--ease);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ----- Page Header (for sub-pages) ----- */
.page-header {
    background: var(--navy-900);
    color: var(--cream);
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(232, 199, 174, 0.15);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--cream);
    margin-bottom: 0.75rem;
    position: relative;
}

.page-header p {
    color: rgba(245, 237, 224, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    font-size: 1.1rem;
}

/* ----- Gallery (projects page) ----- */
.gallery {
    background: var(--cream);
    padding: 4rem 0 5rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--navy-900);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.filter-btn:hover {
    border-color: var(--copper);
    color: var(--copper);
}

.filter-btn.active {
    background: var(--navy-900);
    color: var(--cream);
    border-color: var(--navy-900);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy-100);
    position: relative;
    cursor: pointer;
}

.gallery-item.portrait {
    grid-column: span 4;
    aspect-ratio: 3 / 4;
}

.gallery-item.landscape {
    grid-column: span 8;
    aspect-ratio: 16 / 10;
}

.gallery-item.square {
    grid-column: span 6;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 37, 58, 0.85) 0%, rgba(17, 37, 58, 0.1) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: opacity 0.3s var(--ease);
}

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

.gallery-item .overlay h3 {
    color: var(--cream);
    font-size: 1.1rem;
    margin: 0;
}

.gallery-item .overlay span {
    color: var(--copper-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 0.25rem;
}

/* ----- Services page ----- */
.services-detail {
    background: var(--cream);
    padding: 4rem 0 5rem;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.service-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-left: 4px solid var(--copper);
    padding: 2rem 2.25rem;
    border-radius: var(--radius);
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.service-block .num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--copper);
    line-height: 1;
}

.service-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.service-block p {
    color: var(--slate);
    margin-bottom: 0.75rem;
}

.service-block ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-top: 0.75rem;
}

.service-block ul li {
    background: var(--cream-soft);
    border: 1px solid var(--line-soft);
    color: var(--navy-800);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* ----- CTA Band ----- */
.cta-band {
    background: var(--copper);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(135deg, transparent 0, transparent 20px, rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px);
    pointer-events: none;
}

.cta-band h2 {
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
    margin: 0 auto 1.75rem;
    font-size: 1.1rem;
    position: relative;
}

.cta-band .btn {
    position: relative;
    background: white;
    color: var(--copper-dark);
    border-color: white;
}

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

/* ----- Footer ----- */
footer {
    background: var(--navy-900);
    color: rgba(245, 237, 224, 0.75);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.55rem;
}

.footer-col a {
    color: rgba(245, 237, 224, 0.7);
    font-size: 0.95rem;
    transition: color 0.2s var(--ease);
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 237, 224, 0.12);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(245, 237, 224, 0.55);
}

.footer-bottom a {
    color: rgba(245, 237, 224, 0.7);
}

.footer-bottom a:hover {
    color: var(--copper-soft);
}

/* ----- Mobile Drawer ----- */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--paper);
    z-index: 200;
    padding: 1.5rem;
    box-shadow: -10px 0 40px rgba(17, 37, 58, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease), visibility 0s linear 0.3s;
    overflow-y: auto;
    visibility: hidden;
}

.mobile-drawer.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s var(--ease), visibility 0s linear 0s;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line-soft);
}

.mobile-drawer-close {
    background: none;
    border: 1px solid var(--line);
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer nav {
    display: flex;
    flex-direction: column;
}

.mobile-drawer nav a {
    padding: 1rem 0;
    color: var(--navy-900);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--line-soft);
}

.mobile-drawer nav a:last-of-type {
    border-bottom: none;
}

.mobile-drawer .btn {
    margin-top: 1.5rem;
    width: 100%;
}

.mobile-drawer-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-soft);
    font-size: 0.9rem;
    color: var(--slate);
}

.mobile-drawer-contact a {
    color: var(--navy-900);
    font-weight: 600;
    display: block;
    margin-top: 0.4rem;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 37, 58, 0.5);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.drawer-overlay.open {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .nav-cta.desktop-only {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-drawer {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap {
        max-width: 420px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    section {
        padding: 3.5rem 0;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-trust {
        gap: 1.25rem 2rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-trust .stat-num {
        font-size: 1.4rem;
    }

    .hero-trust .stat-label {
        font-size: 0.75rem;
    }

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

    .preview-grid .preview-item:nth-child(3) {
        grid-column: span 2;
        aspect-ratio: 16 / 10;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .gallery-container {
        gap: 0.75rem;
    }

    .gallery-item.portrait,
    .gallery-item.landscape,
    .gallery-item.square {
        grid-column: span 12;
    }

    .gallery-item.portrait {
        aspect-ratio: 4 / 5;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1.5rem;
    }

    .service-block .num {
        font-size: 1.5rem;
    }

    .nav-brand-text .tag {
        display: none;
    }

    .nav-brand-text .name {
        font-size: 1rem;
    }

    .nav-brand img {
        height: 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cta-band {
        padding: 3rem 1.25rem;
    }

    .announce {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 7vw, 2.5rem);
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .gallery-filters {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .nav-brand-text {
        display: none;
    }

    .nav-inner {
        padding: 0.75rem 1rem;
    }
}

/* ----- Tap target sizing ----- */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-cta,
    .filter-btn {
        min-height: 44px;
    }

    .nav-links a,
    .mobile-drawer nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
