@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
    --charcoal-dark: #1a1a1a;
    --charcoal-medium: #2d2d2d;
    --charcoal-light: #3d3d3d;
    --amber-warm: #f59e0b;
    --amber-deep: #d97706;
    --orange-sunset: #ea580c;
    --blue-electric: #0ea5e9;
    --blue-deep: #0284c7;
    --white-cream: #fafaf9;
    --gray-text: #a3a3a3;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--charcoal-dark);
    color: var(--white-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, b, p {
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.text-amber {
    color: var(--amber-warm);
}

.text-orange {
    color: var(--orange-sunset);
}

.text-blue {
    color: var(--blue-electric);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--amber-warm), var(--amber-deep));
    color: var(--charcoal-dark);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--white-cream);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 2px solid var(--white-cream);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--white-cream);
    color: var(--charcoal-dark);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--charcoal-dark);
}

.section-medium {
    background-color: var(--charcoal-medium);
}

.stripe-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(245, 158, 11, 0.03) 20px,
        rgba(245, 158, 11, 0.03) 40px
    );
    pointer-events: none;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--amber-warm);
    transform: translateY(-4px);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--gray-text);
    margin-bottom: 48px;
    max-width: 600px;
}

.geometric-accent {
    position: relative;
    display: inline-block;
}

.geometric-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-warm), var(--orange-sunset));
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--amber-warm);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.logo span {
    color: var(--white-cream);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white-cream);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-warm);
    transition: width 0.3s ease;
}

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

nav a:hover,
nav a.active {
    color: var(--amber-warm);
}

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

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white-cream);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.active {
    display: block;
    z-index: 10000;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--white-cream);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    padding: 8px 0;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(234, 88, 12, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 24px;
    line-height: 1;
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--amber-warm);
    line-height: 1;
}

.stat-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 40px 32px;
    text-align: center;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--amber-warm), var(--orange-sunset));
    border-radius: 8px;
    font-size: 2rem;
}

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white-cream);
}

.feature-card p {
    font-weight: 300;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--amber-warm), var(--orange-sunset));
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white-cream);
}

.service-card p {
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--amber-warm);
    margin-bottom: 20px;
}

.service-price span {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--gray-text);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-warm);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--amber-warm);
    border-radius: 8px;
    z-index: -1;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.about-content p {
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    margin: 32px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 300;
    color: var(--white-cream);
}

.about-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--amber-warm);
    color: var(--charcoal-dark);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    padding: 32px;
}

.review-stars {
    color: var(--amber-warm);
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.review-text {
    font-weight: 300;
    font-style: italic;
    color: var(--white-cream);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white-cream);
}

.review-location {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--white-cream);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--white-cream);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--amber-warm);
    background: rgba(255, 255, 255, 0.08);
}

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

.contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--white-cream);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-warm);
    color: var(--charcoal-dark);
    border-radius: 4px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-text);
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    font-size: 1.1rem;
    color: var(--white-cream);
    text-decoration: none;
    font-weight: 400;
}

.contact-details a:hover {
    color: var(--amber-warm);
}

footer {
    background: var(--charcoal-medium);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-weight: 300;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.footer-column h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--white-cream);
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--amber-warm);
}

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

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: var(--charcoal-dark);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cookie-banner h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white-cream);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    font-weight: 300;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--amber-warm);
    color: var(--charcoal-dark);
    border: none;
}

.cookie-accept:hover {
    background: var(--amber-deep);
}

.cookie-decline {
    background: transparent;
    color: var(--gray-text);
    border: 1px solid var(--gray-text);
}

.cookie-decline:hover {
    border-color: var(--white-cream);
    color: var(--white-cream);
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--amber-warm), var(--amber-deep));
    border-radius: 50%;
    font-size: 3rem;
    color: var(--charcoal-dark);
}

.thank-you-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
}

.team-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 3px solid var(--amber-warm);
}

.team-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--white-cream);
}

.team-card p {
    color: var(--amber-warm);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white-cream);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--white-cream);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--amber-warm);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-weight: 300;
    color: var(--gray-text);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 32px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--amber-warm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--white-cream);
}

.blog-card p {
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
}

.process-step {
    position: relative;
    padding: 40px 32px;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--amber-warm), var(--orange-sunset));
    color: var(--charcoal-dark);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    border-radius: 50%;
}

.process-step h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--white-cream);
}

.process-step p {
    font-weight: 300;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.process-line {
    display: none;
}

.service-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    position: relative;
}

.service-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 16px;
}

.service-hero-content p {
    font-size: 1.25rem;
    color: var(--gray-text);
    max-width: 600px;
    font-weight: 300;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.service-main h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-main p {
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-cta {
    padding: 32px;
    margin-bottom: 24px;
}

.service-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--white-cream);
}

.service-cta .btn-primary {
    width: 100%;
    margin-bottom: 12px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--white-cream);
}

.legal-content p {
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 8px;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .about-section,
    .contact-section,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .gallery-grid,
    .blog-grid,
    .process-steps,
    .team-grid {
        grid-template-columns: 1fr;
    }
}