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

:root {
    --green-900: #0f2418;
    --green-800: #1a3a2a;
    --green-700: #234d37;
    --green-600: #2d6146;
    --green-500: #3a7d5c;
    --green-400: #5a9e7a;
    --green-300: #8fbfa0;
    --green-200: #c4dcc9;
    --green-100: #e8f2ec;
    --cream: #f5f2eb;
    --cream-light: #faf8f4;
    --cream-dark: #ece8df;
    --white: #fefdfb;
    --text-primary: #1a1a18;
    --text-secondary: #4a4a44;
    --text-muted: #7a7a72;
    --text-light: #a0a098;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream-light);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    transition: transform 0.4s var(--ease-out), background 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.95);
}

.nav.hidden {
    transform: translateY(-100%);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--green-800);
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.nav-logo-icon {
    color: var(--green-700);
}

.nav-logo-text {
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-700);
    transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover {
    color: var(--green-800);
}

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

.nav-cta {
    color: var(--green-800) !important;
    border: 1px solid var(--green-700);
    padding: 8px 20px;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease !important;
}

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

.nav-cta:hover {
    background: var(--green-800);
    color: var(--cream) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-line {
    width: 22px;
    height: 1px;
    background: var(--green-800);
    transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

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

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── HERO ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 72px);
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 32px;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--green-600);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--green-700);
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
}

.btn-primary {
    background: var(--green-800);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--green-800);
    border: 1px solid var(--green-700);
}

.btn-ghost:hover {
    background: var(--green-100);
}

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

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 600/780;
    object-fit: cover;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 36, 24, 0.06), transparent 40%);
    pointer-events: none;
}

.hero-accent {
    position: absolute;
    bottom: -24px;
    left: -32px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 20px 28px;
    background: var(--green-800);
    color: var(--cream);
}

.accent-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--green-200);
}

.accent-label {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-300);
}

.hero-divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-divider::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--green-200), transparent);
}

.hero-stats {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--green-800);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-stat-divider {
    width: 1px;
    background: var(--green-200);
    align-self: stretch;
}

/* ─── SECTION LABELS ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green-600);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 520px;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    line-height: 1.55;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-right p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 16px;
}

/* ─── RENTALS ─── */
.rentals {
    padding: 120px 0;
    background: var(--cream-light);
}

.rentals-header {
    margin-bottom: 64px;
}

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

.rental-card {
    background: var(--white);
    border: 1px solid rgba(26, 58, 42, 0.08);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    overflow: hidden;
}

.rental-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(15, 36, 24, 0.08);
}

.rental-card-img {
    overflow: hidden;
    aspect-ratio: 500/380;
}

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

.rental-card:hover .rental-card-img img {
    transform: scale(1.03);
}

.rental-card-body {
    padding: 28px;
}

.rental-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-100);
    padding: 4px 10px;
    margin-bottom: 14px;
}

.rental-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.rental-card-body p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
}

.rental-link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
    text-decoration: none;
    transition: gap 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rental-link:hover {
    gap: 10px;
}

/* ─── SERVICES ─── */
.services {
    padding: 120px 0;
    background: var(--green-800);
    color: var(--cream);
}

.services-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.services .section-label {
    color: var(--green-300);
}

.services .section-label::before {
    background: var(--green-500);
}

.services .section-title {
    color: var(--cream);
}

.services .section-subtitle {
    color: var(--green-300);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item {
    padding-top: 32px;
    border-top: 1px solid rgba(196, 220, 201, 0.15);
}

.service-num {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--green-500);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.service-item h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-item p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--green-300);
    font-weight: 300;
}

/* ─── GALLERY ─── */
.gallery {
    padding: 120px 0;
    background: var(--cream-light);
}

.gallery-header {
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item--wide {
    grid-column: span 7;
    aspect-ratio: 9/5;
}

.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
    aspect-ratio: 5/4;
}

.gallery-item--tall {
    grid-column: span 5;
    aspect-ratio: 5/6;
}

/* ─── PROCESS ─── */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-subtitle {
    margin: 0 auto;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 32px;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--green-200);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
}

.process-step-connector {
    width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 24px;
}

.process-step-connector::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green-300);
    position: relative;
}

.process-step-connector::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid var(--green-300);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

/* ─── FAQ ─── */
.faq {
    padding: 120px 0;
    background: var(--cream-light);
}

.faq-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

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

.faq-item {
    border-bottom: 1px solid rgba(26, 58, 42, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--green-700);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--green-700);
    transition: transform 0.3s var(--ease-out);
}

.faq-icon::before {
    width: 20px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 1px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(26, 58, 42, 0.1);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 24px;
}

.contact-detail-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 400;
}

.contact-detail-link {
    font-size: 0.9375rem;
    color: var(--green-700);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.contact-detail-link:hover {
    color: var(--green-500);
    text-decoration: underline;
}

.contact-right {
    background: var(--cream-light);
    padding: 48px;
    border: 1px solid rgba(26, 58, 42, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid rgba(26, 58, 42, 0.15);
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 0.875rem;
    font-weight: 400;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--green-900);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(196, 220, 201, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--green-400);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--green-400);
    font-weight: 300;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--green-300);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--green-300);
    font-weight: 300;
}

.footer-contact a {
    color: var(--green-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.75rem;
    color: var(--green-500);
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ─── MOBILE MENU ─── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 36, 24, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream-light);
    z-index: 1000;
    padding: 96px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--green-700);
    padding-left: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 480px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gallery-item--wide {
        grid-column: span 12;
    }

    .gallery-item--tall {
        grid-column: span 6;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        padding-top: 100px;
    }

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

    .hero-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 60px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

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

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

    .gallery-item--wide,
    .gallery-item--tall,
    .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .process-steps {
        flex-direction: column;
        gap: 0;
    }

    .process-step-connector {
        display: none;
    }

    .process-step {
        padding: 0 0 48px;
    }

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

    .contact-right {
        padding: 32px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

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