.page-hero {
    margin-top: 80px;
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.page-hero p {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --white: #ffffff;
    --border-color: #e0ddd8;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 80px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 0.95;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

.hero-line:nth-child(1) { 
    animation-delay: 0.2s;
    color: var(--primary-color);
}

.hero-line:nth-child(2) { 
    animation-delay: 0.4s; 
    color: var(--secondary-color);
}

.hero-line:nth-child(3) { 
    animation-delay: 0.6s; 
    font-style: italic;
    color: var(--primary-color);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-text {
    background: none;
    color: var(--secondary-color);
    padding: 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-text:hover {
    color: var(--accent-color);
}

.hero-image {
    position: relative;
    animation: fadeIn 1s ease-in-out 0.8s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

.about-preview {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 4px;
}

.about-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.lead {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.collections {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collection-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.collection-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.collection-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.collection-info {
    padding: 30px;
}

.collection-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.collection-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.collection-price {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.personalisation {
    padding: 120px 0;
    background: var(--bg-light);
}

.personalisation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.personalisation-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.personalisation-options {
    margin: 40px 0;
}

.option {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.option i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.option h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.option p {
    color: var(--text-light);
    font-size: 14px;
}

.personalisation-showcase img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.interior-service {
    padding: 120px 0;
    background: var(--white);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 4px;
}

.service-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin: 30px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-list i {
    color: var(--accent-color);
    font-size: 18px;
}

.testimonials {
    padding: 120px 0;
    background: var(--bg-light);
    text-align: center;
}

.testimonials h2 {
    font-size: 56px;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.loyalty-program {
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.loyalty-content h2 {
    font-size: 56px;
    margin-bottom: 25px;
}

.loyalty-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.benefit i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit p {
    font-size: 14px;
    opacity: 0.9;
}

.loyalty-note {
    font-style: italic;
    opacity: 0.8;
    margin-top: 40px;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 56px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
}

.company-info h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.company-info p {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .personalisation-content,
    .service-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collections-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .loyalty-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .features-grid,
    .collections-grid,
    .testimonials-grid,
    .loyalty-benefits,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .testimonials h2,
    .loyalty-content h2,
    .cta-content h2 {
        font-size: 40px;
    }
}

/* About Page Styles */
.about-intro {
    padding: 100px 0;
    background: var(--white);
}

.about-intro .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text .lead {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.value-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-section h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.team-member {
    text-align: center;
}

.member-image {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 4px;
}

.member-image img {
    width: 100%;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-intro .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 48px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .values-grid,
    .team-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .about-text h2,
    .values-section h2,
    .team-section h2,
    .process-section h2 {
        font-size: 40px;
    }
}
