/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1a1a1a;
    line-height: 1.7;
    background-color: #fafafa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-cookie-accept:hover {
    background-color: #c29d2e;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c29d2e;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
}

/* Containers */
.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hook Section */
.hook-section {
    padding: 8rem 0;
    background-color: #fff;
}

.hook-text {
    font-size: 2rem;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    color: #2a2a2a;
}

/* Story Visual */
.story-visual {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.story-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-image-wrapper {
    flex: 1;
}

.story-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.link-inline {
    color: #d4af37;
    font-weight: 500;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 2px;
}

.link-inline:hover {
    color: #c29d2e;
    border-bottom-color: #c29d2e;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background-color: #fff;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #999;
}

/* Insight Section */
.insight-section {
    padding: 6rem 0;
    background-color: #2a2a2a;
    color: #f5f5f5;
}

.insight-split {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 5rem;
}

.insight-content {
    flex: 1;
    padding: 0 3rem;
}

.insight-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
}

.insight-content h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.insight-visual {
    flex: 1;
}

.insight-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background-color: #fff;
}

.trust-badge-row {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    font-size: 1rem;
    color: #666;
}

/* Testimonial Visual */
.testimonial-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.testimonial-content {
    max-width: 800px;
    padding: 3rem;
    color: #fff;
    text-align: center;
}

.testimonial-content blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Story Deeper */
.story-deeper {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

/* Benefits Visual */
.benefits-visual {
    padding: 6rem 0;
    background-color: #fff;
}

.benefits-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

.benefit-large {
    flex: 2;
    position: relative;
    overflow: hidden;
}

.benefit-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.benefit-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
}

.benefit-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-small {
    background-color: #f5f5f5;
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-small h3 {
    margin-bottom: 1rem;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 5rem 0;
    background-color: #d4af37;
}

.testimonial-card-modern {
    padding: 3rem;
    text-align: center;
}

.testimonial-card-modern p {
    font-size: 1.4rem;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.testimonial-card-modern cite {
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 1px;
}

/* Reveal Section / Services */
.reveal-section {
    padding: 7rem 0;
    background-color: #fff;
}

.reveal-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #fafafa;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 300;
    color: #d4af37;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background-color: #2a2a2a;
    color: #fff;
}

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

.urgency-box h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

.form-group label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: Georgia, serif;
    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: #d4af37;
}

.btn-submit {
    padding: 1.2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c29d2e;
}

/* Final CTA Visual */
.final-cta-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 3rem;
}

.final-cta-overlay h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #d4af37;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background-color: #c29d2e;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #d4af37;
}

/* About Pages */
.about-intro,
.collections-intro {
    padding: 5rem 0;
    background-color: #fff;
}

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.8;
}

.about-visual-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
    background-color: #f5f5f5;
    max-width: 1300px;
    margin: 0 auto;
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

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

/* Values Section */
.values-section {
    padding: 6rem 0;
    background-color: #fff;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fafafa;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #d4af37;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.team-highlight {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-image-wrapper {
    flex: 1;
}

.team-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Sustainability Section */
.sustainability-section {
    padding: 6rem 0;
    background-color: #fff;
}

.sustainability-list {
    margin-top: 2rem;
    padding-left: 1.5rem;
}

.sustainability-list li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section,
.services-cta {
    padding: 5rem 0;
    background-color: #2a2a2a;
}

.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    color: #fff;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #d4af37;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #c29d2e;
    transform: translateY(-2px);
}

/* Collection Detail */
.collection-detail {
    padding: 5rem 0;
    background-color: #fff;
}

.collection-detail:nth-child(even) {
    background-color: #f9f9f9;
}

.collection-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.collection-layout.reverse {
    flex-direction: row-reverse;
}

.collection-visual {
    flex: 1;
}

.collection-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.collection-info {
    flex: 1;
}

.collection-tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.collection-features {
    list-style: none;
    margin: 2rem 0;
}

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

.collection-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.collection-price {
    margin: 2rem 0;
    font-size: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 2.2rem;
    color: #d4af37;
    font-weight: 300;
}

.btn-collection {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-collection:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: #fff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-block a {
    color: #d4af37;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e5e5e5;
}

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

.contact-cta {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

/* Thanks Page */
.thanks-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #d4af37 0%, #c29d2e 100%);
    margin-top: 80px;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    margin: 2rem 0;
    color: #1a1a1a;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 2rem;
}

.step-number {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 300;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #2a2a2a;
    font-size: 0.95rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2a2a2a;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.thanks-additional {
    padding: 5rem 0;
    background-color: #fff;
}

.info-box {
    background-color: #f9f9f9;
    padding: 3rem;
    text-align: center;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 5rem;
    background-color: #fff;
    margin-top: 80px;
}

.legal-intro {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-floating {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-grid,
    .insight-split,
    .about-visual-split,
    .collection-layout,
    .team-highlight,
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.3rem;
    }

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

    .hook-text {
        font-size: 1.5rem;
    }

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