:root {
    --color-primary: #1a1a1a;
    --color-secondary: #8b7355;
    --color-accent: #c9a96e;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-bg-dark: #1a1a1a;
    --font-heading: 'Georgia', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --narrow-width: 680px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
}

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

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

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

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

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

.hero-editorial {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content-narrow {
    position: relative;
    z-index: 1;
    max-width: var(--narrow-width);
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content-narrow h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #fff;
    color: var(--color-primary);
}

.cta-secondary {
    display: inline-block;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--color-secondary);
    color: #fff;
}

.cta-text {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: var(--color-accent);
}

.cta-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.cta-full {
    width: 100%;
    text-align: center;
}

.editorial-section {
    padding: 5rem 1.5rem;
}

.narrow-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.editorial-image-break {
    padding: 0 1.5rem;
    margin: 3rem 0;
}

.editorial-image-break img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.inline-cta {
    max-width: var(--narrow-width);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-inline {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
}

.testimonial-inline blockquote {
    max-width: var(--narrow-width);
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.split-visual {
    padding: 3rem 1.5rem;
}

.split-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.split-visual.reverse .split-content {
    flex-direction: row-reverse;
}

.features-cards {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
}

.cards-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testimonial-featured {
    padding: 5rem 1.5rem;
    background: var(--color-bg-dark);
}

.testimonial-inner {
    max-width: var(--narrow-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid var(--color-accent);
}

.testimonial-featured blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: #fff;
    margin-bottom: 1.5rem;
}

.testimonial-featured cite {
    font-style: normal;
    color: var(--color-accent);
    font-size: 0.9rem;
}

.benefits-reveal {
    background: var(--color-bg-alt);
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.benefits-list span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.pricing-reveal {
    padding: 5rem 1.5rem;
}

.pricing-intro {
    max-width: var(--narrow-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-cards {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--color-bg-alt);
    padding: 2.5rem 2rem;
    position: relative;
}

.price-card.featured {
    background: var(--color-primary);
    color: #fff;
}

.price-card.featured h4,
.price-card.featured .price-amount {
    color: #fff;
}

.price-card.featured .price-features li::before {
    color: var(--color-accent);
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.price-card.featured .price-label {
    color: var(--color-accent);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.price-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price-features {
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: bold;
}

.pricing-extras {
    max-width: var(--max-width);
    margin: 4rem auto 0;
    text-align: center;
}

.pricing-extras h3 {
    margin-bottom: 2rem;
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.extra-item {
    background: var(--color-bg-alt);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.extra-name {
    font-size: 0.9rem;
    color: var(--color-text);
}

.extra-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.urgency-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #6b5a46 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

.urgency-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.urgency-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.9);
}

.urgency-note {
    margin: 2rem 0;
    font-size: 1.125rem;
}

.urgency-note strong {
    color: #fff;
}

.form-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.form-wrapper {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro p {
    color: var(--color-text-light);
}

.main-form {
    background: #fff;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.final-testimonial {
    padding: 4rem 1.5rem;
    text-align: center;
}

.final-testimonial blockquote {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.final-testimonial p {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    margin-bottom: 1rem;
}

.final-testimonial cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.site-footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta-sticky {
    display: block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-sticky:hover {
    background: var(--color-primary);
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--color-accent);
    color: var(--color-primary);
}

.cookie-accept:hover {
    background: #fff;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: #fff;
}

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-text h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.values-section {
    padding: 5rem 1.5rem;
}

.values-intro {
    max-width: var(--narrow-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.values-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-bg-alt);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.dark-section {
    background: var(--color-bg-dark);
    color: #fff;
}

.dark-section h2 {
    color: #fff;
}

.dark-section p {
    color: rgba(255, 255, 255, 0.85);
}

.team-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.team-intro {
    max-width: var(--narrow-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.team-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-role {
    display: block;
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.cta-section {
    padding: 5rem 1.5rem;
    text-align: center;
}

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

.cta-section.dark h2 {
    color: #fff;
}

.cta-section.dark p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

.service-detail {
    padding: 5rem 1.5rem;
}

.service-detail.alternate {
    background: var(--color-bg-alt);
}

.service-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 3rem;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.option-card {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 1.5rem;
    position: relative;
}

.service-detail.alternate .option-card {
    background: var(--color-bg);
}

.option-card.highlighted {
    border: 2px solid var(--color-accent);
}

.option-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.2rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.option-card h4 {
    margin-bottom: 0.5rem;
}

.option-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.option-card ul {
    font-size: 0.85rem;
}

.option-card ul li {
    padding: 0.35rem 0;
    color: var(--color-text-light);
}

.service-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spec-item {
    flex: 1;
    min-width: 150px;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
}

.services-intro {
    padding: 5rem 1.5rem 3rem;
    text-align: center;
}

.process-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.process-intro {
    max-width: var(--narrow-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.process-steps {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

.contact-main {
    padding: 5rem 1.5rem;
    margin-top: 60px;
}

.contact-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.info-blocks {
    margin-top: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.info-block p {
    margin: 0;
}

.hours-list {
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
}

.contact-note {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-note h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-note p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.visual-card.secondary img {
    height: 200px;
}

.directions-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

.directions-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.directions-content h2 {
    margin-bottom: 2rem;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.direction-item {
    flex: 1;
    min-width: 250px;
}

.direction-item h4 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.direction-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
}

.thanks-content {
    max-width: var(--narrow-width);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-secondary);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.selected-service {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    display: inline-block;
}

.thanks-next {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 2rem;
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.next-step p {
    margin: 0;
    font-size: 0.95rem;
    padding-top: 0.25rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.thanks-testimonial {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
    text-align: center;
}

.thanks-testimonial blockquote {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.thanks-testimonial p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.thanks-testimonial cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.legal-page {
    padding: 8rem 1.5rem 4rem;
}

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

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    position: relative;
    padding: 0.35rem 0;
    padding-left: 1rem;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 1.5rem;
    }

    .split-content {
        flex-direction: column;
    }

    .split-visual.reverse .split-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .service-content {
        flex-direction: column;
    }

    .service-detail.alternate .service-content {
        flex-direction: column;
    }

    .contact-main {
        margin-top: 0;
    }

    .sticky-cta {
        bottom: 70px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .price-card {
        min-width: 100%;
    }

    .feature-card {
        min-width: 100%;
    }

    .process-step {
        min-width: 100%;
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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