:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #faf8f5;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --accent-red: #c84444;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

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

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

.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.brand .tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Georgia', serif;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.3rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hero-editorial {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-wrap {
    flex: 1;
    max-width: 600px;
}

.hero-kicker {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-stack {
    flex: 1;
}

.hero-image-stack img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 3px;
}

.intro-columns {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
}

.column-left {
    flex: 2;
}

.column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: var(--background-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.stat-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.magazine-feature {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.feature-image {
    flex: 1;
    max-width: 500px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.feature-content {
    flex: 1.5;
    padding-top: 2rem;
}

.feature-tag {
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.link-arrow {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 1rem;
}

.services-preview {
    background: var(--background-light);
    padding: 5rem 0;
    margin: 6rem 0;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.featured {
    flex: 1 1 100%;
}

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

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

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-primary,
.btn-primary,
.btn-select-service,
.btn-submit {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover,
.btn-primary:hover,
.btn-select-service:hover,
.btn-submit:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-spread {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.testimonial-content {
    flex: 1.5;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
}

.testimonial-content footer {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 3px;
}

.philosophy-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
    margin: 6rem 0;
}

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.philosophy-item {
    flex: 1 1 calc(25% - 2.25rem);
    min-width: 250px;
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-item h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.philosophy-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.booking-form-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.booking-form {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 3px;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background: var(--white);
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: normal;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.instagram-feed {
    padding: 5rem 0;
    background: var(--background-light);
}

.instagram-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
}

.insta-item {
    flex: 1;
}

.insta-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.3s;
}

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

.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

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

.sticky-cta-button {
    display: block;
    background: var(--accent-red);
    color: var(--white);
    padding: 1rem 2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.sticky-cta-button:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 200;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie.accept:hover {
    background: var(--secondary-color);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: var(--background-light);
    padding: 5rem 0;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 3px;
}

.service-detail-content {
    flex: 1.5;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 3px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-badge span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: 0.2rem;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-features h3,
.service-variants h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

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

.variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.variant-tag {
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.service-info-box {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 3px;
    margin: 2rem 0;
}

.service-info-box p {
    font-size: 0.95rem;
    margin: 0;
}

.cta-section {
    background: var(--background-light);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-story {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.5;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 3px;
}

.mission-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.mission-values {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 250px;
}

.team-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.team-member {
    flex: 1 1 calc(25% - 2.25rem);
    min-width: 250px;
}

.team-photo {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 3px;
}

.team-photo img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

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

.team-role {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.9rem;
}

.timeline-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

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

.philosophy-deep {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.philosophy-text blockquote {
    font-size: 1.4rem;
    font-style: italic;
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

.philosophy-text blockquote footer {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    margin-top: 1rem;
}

.partners-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.partners-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 3px;
    text-align: center;
}

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

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

.contact-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    margin-top: 3rem;
    height: 300px;
    background: var(--background-light);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 2rem;
}

.faq-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 0.95rem;
}

.visit-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    background: var(--background-light);
    border-radius: 3px;
}

.visit-content h2 {
    margin-bottom: 1.5rem;
}

.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-container {
    text-align: center;
    background: var(--background-light);
    padding: 5rem 3rem;
    border-radius: 3px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

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

.thanks-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 3px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info {
    margin: 3rem 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.thanks-contact {
    margin: 2rem 0;
}

.contact-email {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-proof {
    background: var(--background-light);
    padding: 5rem 0;
}

.social-proof-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 3px;
    font-style: italic;
}

.testimonial p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.testimonial footer {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-light);
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container {
    line-height: 1.8;
}

.legal-container h1 {
    margin-bottom: 1rem;
}

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

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-editorial,
    .intro-columns,
    .magazine-feature,
    .testimonial-spread,
    .story-content {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .services-magazine-grid {
        flex-direction: column;
    }

    .service-card,
    .service-card.featured {
        min-width: 100%;
    }

    .philosophy-grid,
    .team-grid {
        gap: 2rem;
    }

    .philosophy-item,
    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-column {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .hero-headline {
        font-size: 2.5rem;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-bottom: 2px solid var(--border-color);
        display: none;
    }

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

    .main-nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .menu-toggle {
        display: flex;
    }

    .form-row {
        flex-direction: column;
    }

    .instagram-grid {
        flex-wrap: wrap;
    }

    .insta-item {
        flex: 1 1 calc(50% - 0.5rem);
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .philosophy-item,
    .team-member,
    .value-item,
    .partner-item {
        flex: 1 1 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .thanks-container {
        padding: 3rem 1.5rem;
    }
}