/* ============================================
   HESSELTINE & SONS — Editorial Style System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-forest: #1a3c2a;
    --color-forest-light: #2a5c42;
    --color-forest-dark: #0f2419;
    --color-cream: #f5f0e8;
    --color-cream-light: #faf7f2;
    --color-cream-dark: #e8e0d0;
    --color-gold: #c8a84b;
    --color-gold-light: #d4b85c;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #7a7a7a;
    --color-white: #ffffff;
    --color-border: rgba(26, 60, 42, 0.12);
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -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: 16px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

/* --- Typography --- */
.serif { font-family: var(--font-serif); }

.italic.serif {
    font-family: var(--font-serif);
    font-style: italic;
}

.accent {
    color: var(--color-gold);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-forest);
    background: var(--color-forest);
    color: var(--color-cream);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-forest);
    letter-spacing: -0.01em;
}

.logo-text .amp {
    color: var(--color-gold);
    font-style: italic;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-light);
    transition: color var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--color-forest);
}

.nav-link:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-forest);
    transition: color var(--transition);
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-forest);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--color-cream);
    padding: var(--space-xl) var(--space-md);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 400px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-forest);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}

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

.mobile-contact {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-contact a {
    font-size: 15px;
    color: var(--color-text-light);
    transition: color var(--transition);
}

.mobile-contact a:hover {
    color: var(--color-forest);
}

.mobile-contact p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-forest);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--color-cream) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--color-cream) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, var(--color-cream) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) var(--space-md) var(--space-xl);
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-cream);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.hero-headline .accent {
    color: var(--color-gold);
}

.hero-headline .italic {
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.7);
    max-width: 560px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    max-height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(20%);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.4);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-forest-dark);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-cream);
    border: 1.5px solid rgba(245, 240, 232, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-forest);
    border: 1.5px solid var(--color-forest);
}

.btn-outline-light:hover {
    background: var(--color-forest);
    color: var(--color-cream);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 15px;
}

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

/* --- Trust Bar --- */
.trust-bar {
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.trust-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0 var(--space-lg);
}

.trust-divider {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-forest);
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 520px;
    margin: var(--space-md) auto 0;
}

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

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--color-forest);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-forest);
    color: var(--color-cream);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-forest);
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--color-gold);
}

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

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

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

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--color-cream);
    box-shadow: var(--shadow-md);
}

.about-image-accent img {
    width: 200px;
    height: 150px;
    object-fit: cover;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-values {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.value-number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    flex-shrink: 0;
}

.value-text {
    font-size: 15px;
    color: var(--color-text);
    padding-top: 8px;
    line-height: 1.5;
}

/* --- Work Gallery --- */
.work {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-light);
}

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

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

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.work-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.work-item--large img {
    height: 420px;
}

.work-item:first-child + .work-item,
.work-item:nth-child(2),
.work-item:nth-child(3) {
    grid-column: span 6;
}

.work-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.work-item:nth-child(3) {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
}

.work-item:nth-child(4) {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
}

.work-item:nth-child(2) img,
.work-item:nth-child(3) img {
    height: 280px;
}

.work-item--wide img {
    height: 280px;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 60, 42, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.work-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.work-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-cream);
}

/* --- CTA Banner --- */
.cta-banner {
    padding: var(--space-3xl) 0;
    background: var(--color-forest);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 30% 40%, var(--color-cream) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, var(--color-cream) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-cream);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: var(--space-xl);
}

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

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

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

.contact-info {
    padding: var(--space-md) 0;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    color: var(--color-forest);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
}

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

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

/* --- Form --- */
.contact-form-col {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-cream-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.1);
}

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

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

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

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    color: var(--color-forest);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.form-success p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--color-forest-dark);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.logo-light .logo-mark {
    background: var(--color-gold);
    color: var(--color-forest-dark);
}

.logo-light .logo-text {
    color: var(--color-cream);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    max-width: 300px;
    margin-top: var(--space-md);
}

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

.footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col li a,
.footer-col li {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    transition: color var(--transition);
}

.footer-col li a:hover {
    color: var(--color-cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    font-size: 13px;
    color: rgba(245, 240, 232, 0.4);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }
    
    .hero-inner {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-image-col {
        max-width: 500px;
    }
    
    .about-image-accent {
        right: -20px;
        bottom: -20px;
    }
    
    .work-item--large {
        grid-column: 1 / -1;
    }
    
    .work-item:nth-child(2),
    .work-item:nth-child(3),
    .work-item:nth-child(4) {
        grid-column: span 6;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav,
    .header-phone {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-inner {
        padding: var(--space-md) 0;
    }
    
    .hero-headline {
        font-size: clamp(40px, 10vw, 64px);
    }
    
    .hero-scroll {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-item--large,
    .work-item:nth-child(2),
    .work-item:nth-child(3),
    .work-item:nth-child(4) {
        grid-column: 1 / -1;
    }
    
    .work-item--large img,
    .work-item img {
        height: 260px;
    }
    
    .work-overlay {
        opacity: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .about-image-accent {
        display: none;
    }
}
