:root {
    --clay: #C4A77D;
    --clay-light: #E8DCC8;
    --slate: #2D3436;
    --slate-soft: #4A5568;
    --cream: #FAF8F5;
    --terracotta: #C67B5C;
    --terracotta-dark: #A85D40;
    --forest: #2D4739;
    --stone: #8B9A8E;
    --charcoal: #1A1A1A;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--slate);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--slate-soft);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    box-sizing: border-box;
}

.section-spacing {
    padding: 8rem 0;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.header.scrolled .logo {
    opacity: 0.9;
}

.header.scrolled .nav-link {
    opacity: 0.85;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

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

.nav-item {
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate);
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--terracotta);
}

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

.nav-link.cta {
    background: var(--charcoal);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
}

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

.nav-link.cta:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    transition: 0.3s;
    border-radius: 2px;
}

.hero-section {
    min-height: 65vh;
    max-height: 550px;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--cream);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    height: 100%;
    min-height: calc(65vh - 80px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--terracotta);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title span {
    color: var(--terracotta);
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--slate-soft);
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.1), transparent);
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(196, 167, 125, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 167, 125, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 3;
}

.hero-badge {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest), var(--stone));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: var(--charcoal);
}

.badge-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--slate-soft);
    font-weight: 400;
}

.tile-spotlight {
    padding: 0;
    margin: -80px 0 6rem;
    padding-top: 100px;
}

.spotlight-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
}

.spotlight-card:hover .spotlight-image img {
    transform: scale(1.05);
}

.spotlight-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spotlight-tag {
    position: absolute;
    top: 2rem;
    left: 0;
    background: var(--terracotta);
    color: white;
    padding: 0.8rem 2rem 0.8rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.spotlight-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-month {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--stone);
    margin-bottom: 1rem;
}

.spotlight-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.spotlight-description {
    color: var(--slate-soft);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.spotlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: var(--clay-light);
    color: var(--slate);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

.spotlight-price {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--clay-light);
    border-bottom: 1px solid var(--clay-light);
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.2rem;
    color: var(--stone);
    text-decoration: line-through;
}

.price-new {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--terracotta);
    font-weight: 600;
}

.price-unit {
    font-size: 1rem;
    color: var(--slate-soft);
    font-weight: 400;
}

.price-save {
    background: linear-gradient(135deg, var(--forest), var(--stone));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.about-section {
    padding: 120px 0 80px;
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

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

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: rotate(0deg);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-decor {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--clay-light), var(--cream));
    border-radius: 20px;
    z-index: -1;
}

.about-content {
    padding: 2rem 0;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clay-light);
    max-width: 100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: var(--slate-soft);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--clay-light);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--charcoal);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--stone);
    margin-top: 0.5rem;
}

.services-teaser {
    padding: 8rem 0;
    background: var(--charcoal);
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: end;
}

.services-teaser .section-label {
    color: var(--clay);
}

.services-teaser .section-label::after {
    background: var(--clay);
}

.services-teaser .section-title {
    color: white;
}

.services-intro-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.service-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    opacity: 0.3;
}

.service-content {
    padding: 2rem;
    color: white;
}

.service-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.service-cat {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.btn-primary,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--charcoal);
    color: white;
    padding: 1.2rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--terracotta);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before,
.cta-button:hover::before {
    left: 0;
}

.btn-primary:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(198, 123, 92, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--slate);
    padding: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--terracotta);
    gap: 1rem;
}

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--clay-light), var(--cream));
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--slate-soft);
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.page-header {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--clay-light), var(--cream));
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-description {
    font-size: 1.2rem;
    color: var(--slate-soft);
    line-height: 1.8;
}

.services-detail {
    padding: 6rem 0;
}

.services-grid-large {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    display: block;
}

.service-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--terracotta);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.service-lead {
    font-size: 1.1rem;
    color: var(--slate-soft);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--slate);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
}

.process-section {
    padding: 8rem 0;
    background: var(--cream);
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--clay);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--slate-soft);
    line-height: 1.6;
}

.gallery-section {
    padding: 6rem 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--clay-light);
    color: var(--slate);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
}

.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--clay-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--slate);
    background: white;
    transition: all 0.3s ease;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--terracotta);
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--slate-soft);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--terracotta);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-icon svg {
    color: white;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--terracotta);
    font-weight: 500;
}

.info-subtext {
    display: block;
    font-size: 0.85rem;
    color: var(--stone);
    margin-top: 0.3rem;
}

.footer {
    background: var(--charcoal);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    line-height: 1.8;
}

.footer h4 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-content {
        padding: 4rem 0 2rem;
        text-align: center;
    }
    
    .hero-label {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        height: 50vh;
        min-height: 300px;
        border-radius: 20px 20px 0 0;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-grid-overlay {
        display: none;
    }
    
    .tile-spotlight {
        margin: -40px 1rem 4rem;
        padding-top: 60px;
    }
    
    .spotlight-card {
        grid-template-columns: 1fr;
    }
    
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-section {
        padding: 80px 0 60px;
    }
    
    .services-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-spacing {
        padding: 4rem 0;
    }
    
    .page-header {
        padding: 10rem 0 4rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .spotlight-content {
        padding: 2rem;
    }
    
    .cta-section .section-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        min-height: 250px;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--clay);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--terracotta);
}