/* ===================================
   REDESIGNED SUSTAINABLE ARCHITECTURE LANDING PAGE
   Aesthetic: Clean, editorial, full-bleed storytelling
   Typography: Roboto font family with strategic weight distribution
   Inspiration: Light, airy, warm coral accents on cream
   Updated: Modern sans-serif with extensive weight range
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    /* Regular weight for body text */
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #faf8f5;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

strong {
    font-weight: 700;
    /* Bold for strong emphasis */
}

/* Remove all max-width containers for full-bleed design */
.container {
    width: 100%;
    padding: 0;
}

/* ===================================
   Header - Minimal, Transparent
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 15px 40px;
/*    transition: all 0.3s ease;  */
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.15);
/*    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.logo {
    display: block;
    position: relative;
/*    transition: opacity 0.3s ease;  */
}

.logo img {
    height: 160px;
    width: auto;
    display: block;
/*    transition: opacity 0.3s ease; */
/*   filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)); */
}

.logo-white {
    opacity: 0;
}

.logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.header.scrolled .logo-white {
    opacity: 0;
}

.header.scrolled .logo-dark {
    opacity: 1;
}

.logo:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    /* Medium weight for navigation clarity */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.nav a {
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav a:hover {
    color: #FF6B4A;
}

/* ===================================
   Buttons - Minimal, Elegant
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    /* Medium weight for button text */
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #2c2c2c;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-primary {
    background-color: #FF6B4A;
    color: #fff;
    border-color: #FF6B4A;
}

/* Only apply hover effects on devices with hover capability (not touch screens) */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background-color: #2c2c2c;
        border-color: #2c2c2c;
        transform: translateY(-2px);
    }

    .btn:hover .arrow-icon {
        transform: translateX(4px);
    }
}

.arrow-icon {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.btn-large {
    padding: 20px 50px;
    font-size: 12px;
}

/* ===================================
   Hero Section - Full Bleed Editorial
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 8% 12%;
    color: #fff;
    text-align: left;
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 84px;
    font-weight: 300;
    /* Light weight for refined, airy look */
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    max-width: 100%;
    white-space: nowrap;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    /* Light weight for better visibility */
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 600px;
    white-space: nowrap;
}

.hero-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    /* Light weight for better visibility */
    line-height: 1.6;
    font-style: italic;
    max-width: 500px;
    opacity: 1;
    white-space: nowrap;
}

/* ===================================
   Interior Section - Asymmetric Grid
   =================================== */

.interior-section {
    background-color: #faf8f5;
    padding: 0;
}

/*.interior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    min-height: auto;
}*/

.statement-text,
.interior-text,
.exterior-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.interior-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45vh;
}

.interior-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

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

.interior-text,
.statement-text {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 300;
    /* Light weight for large, airy editorial text */
    line-height: 1.3;
    padding: 10%;
    text-align: left;
    color: #2c2c2c;
}

.statement-text {
    background-color: #fff;
    font-size: 48px;
    font-weight: 300;
    /* Extra Light for the large statement */
    letter-spacing: -1px;
}

.interior-text {
    background-color: #faf8f5;
    color: #2c2c2c;
}

.interior-text strong,
.statement-text strong {
    font-weight: 300;
    /* Light for emphasis within large text */
    display: block;
}

/* ===================================
   Materials Section - Centered Editorial
   =================================== */

.materials-section {
    padding: 120px 8%;
    background-color: #fff;
    text-align: center;
}

/*.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}*/

.material-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.materials-text {
    font-family: 'Roboto', sans-serif;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #2c2c2c;
    text-align: center;
}

.materials-intro {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 24px;
}

.materials-intro strong {
    font-weight: 700;
    color: #FF6B4A;
}

.materials-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 22px;
    font-weight: 400;
    color: #2c2c2c;
}

.materials-list span {
    white-space: nowrap;
}

.material-separator {
    color: #FF6B4A;
    font-size: 16px;
}

/* ===================================
   Luxury Section - Split Screen
   =================================== */

.luxury-section {
    padding: 0;
    background-color: #faf8f5;
}

.luxury-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    min-height: 80vh;
    align-items: center;
}

.luxury-text {
    padding: 10%;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.luxury-harmony {
    display: block;
    margin-top: 0;
    color: inherit;
    font-family: 'Roboto', sans-serif;
}

.luxury-characteristics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.luxury-characteristics p {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

.luxury-image {
    height: 100%;
    min-height: 80vh;
}

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

/* ===================================
   Tech Section - Reversed Split
   =================================== */

.tech-section {
    padding: 0;
    background-color: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    min-height: 80vh;
    align-items: center;
}

.tech-image {
    height: 100%;
    min-height: 80vh;
}

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

@media screen and (max-width: 768px) {
    .tech-image img {
        object-fit: contain;
        object-position: center;
    }
}

.tech-text {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 300;
    /* Extra Light for the large statement */
    line-height: 1.3;
    padding: 10%;
    color: #2c2c2c;
    letter-spacing: -1px;
}

.tech-text strong {
    font-weight: 300;
    /* Keep same weight as parent */
    color: #2c2c2c;
}

/* ===================================
   Services Section - Clean Layout
   =================================== */

.services-section {
    padding: 140px 8%;
    background-color: #faf8f5;
}

.services-statement {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 300;
    /* Light weight to match other section titles */
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #2c2c2c;
}

.services-highlight {
    color: #FF6B4A;
}

.services-statement strong {
    font-weight: 300;
    /* Keep same light weight for consistency */
    color: #2c2c2c;
}

.services-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    /* Light for large section heading */
    line-height: 1.5;
    text-align: center;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #2c2c2c;
}

.services-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-image {
    flex: 0 0 50%;
    overflow: hidden;
    border-radius: 4px;
}

.services-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.services-list-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.services-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
    padding-left: 30px;
    position: relative;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #FF6B4A;
    font-size: 28px;
    line-height: 1;
}


/*.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}*/

.service-image,
.service-exterior {
    width: 100%;
    overflow: hidden;
}

.service-image img,
.service-exterior img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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


/* ===================================
   Testimonials Section
   Visual hierarchy: Subtle title → Prominent quotes → Subtle attribution
   =================================== */

.testimonials-section {
    padding: 140px 8%;
    background-color: #fff;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: none;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2c2c;
}

.testimonial {
    max-width: 800px;
    /* Slightly narrower for better readability */
    margin: 0 auto 100px;
    /* Increased bottom margin for clear separation */
    text-align: center;
    font-family: 'Roboto', sans-serif;
    position: relative;
    /* For decorative quotation marks */
}

/* Last testimonial has less bottom margin */
.testimonial:last-of-type {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 24px;
    /* Reduced size to be subordinate to title */
    font-style: italic;
    font-weight: 400;
    /* Regular italic maintains readability */
    line-height: 1.6;
    margin-bottom: 24px;
    color: #666;
    /* Darker grey for better readability */
    position: relative;
}

/* Decorative opening quotation mark - removed */

.testimonial cite {
    display: block;
    /* Ensures proper spacing */
    font-size: 13px;
    /* Slightly smaller for clear subordination */
    font-weight: 400;
    /* Regular weight instead of light for better readability */
    font-style: normal;
    color: #666;
    /* Darker than before but still clearly secondary */
    letter-spacing: 1.5px;
    /* Increased letter-spacing for refined appearance */
    text-transform: uppercase;
    /* Matches section title treatment */
    margin-top: 8px;
    /* Additional separation from quote */
}

/* ===================================
   Detail Section - Text + Carousel Layout
   =================================== */

.detail-section {
    padding: 140px 8%;
    background-color: #faf8f5;
}

.detail-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 0;
}

.detail-accordion-wrapper .team-accordion {
    margin: 0;
    max-width: 100%;
}

/* Carousel Styles */
.detail-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 600px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2c2c2c;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 107, 74, 0.9);
    color: #fff;
}

.carousel-arrow-prev {
    left: 20px;
}

.carousel-arrow-next {
    right: 20px;
}



/* ===================================
   Team Section - Accordion Style
   =================================== */

.team-section {
    padding: 140px 8%;
    background-color: #fff;
}

.team-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2c2c;
}

.team-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 0;
}

.team-content-wrapper {
    width: 100%;
}

.team-accordion {
    max-width: 100%;
    margin: 0;
}

.team-item {
    border-bottom: 1px solid #e0e0e0;
}

.team-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    text-align: left;
    transition: color 0.5s ease;
}

.team-question:hover {
    color: #FF6B4A;
}

.team-icon {
    font-size: 32px;
    font-weight: 300;
    color: #FF6B4A;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-question[aria-expanded="true"] .team-icon {
    transform: rotate(45deg);
}

.team-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

.team-answer p {
    margin-bottom: 16px;
}

.team-answer strong {
    color: #2c2c2c;
    font-weight: 500;
}

.team-question[aria-expanded="true"]+.team-answer {
    max-height: 500px;
    padding-bottom: 32px;
    opacity: 1;
}

.team-image-container {
    width: 100%;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: auto;
    display: block;
    color: #2c2c2c;
    text-transform: uppercase;
}

/* ===================================
   FAQ Section - Two Column
   =================================== */

.faq-section {
    padding: 140px 8%;
    background-color: #faf8f5;
}

.faq-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 300;
    /* Light weight to match team title */
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: none;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2c2c;
}

/*.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}*/

.faq-item {
    border: none;
    padding: 0;
    transition: all 0.5s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    /* Regular for question text */
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0 0 16px 0;
    color: #2c2c2c;
    background: none;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    text-align: left;
    transition: all 0.5s ease;
}

.faq-question:hover {
    color: #FF6B4A;
    border-bottom-color: #FF6B4A;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: #FF6B4A;
}

.faq-question[aria-expanded="true"] {
    color: #2c2c2c;
    border-bottom: none;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

.faq-answer-content {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    /* Light for answer text */
    line-height: 1.8;
    color: #666;
    padding-top: 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* ===================================
   CTA Section - Prominent Call to Action
   =================================== */

.cta-section {
    padding: 120px 8%;
    background-color: #FF6B4A;
    text-align: center;
}

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

.cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 24px;
    white-space: nowrap;
}

.cta-text {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #FF6B4A;
    border-color: #fff;
    font-size: 13px;
    padding: 20px 50px;
}

.cta-section .btn-primary:hover {
    background-color: #2c2c2c;
    color: #fff;
    border-color: #2c2c2c;
}

.cta-section .btn-primary:active,
.cta-section .btn-primary:focus,
.cta-section .btn-primary:visited {
    background-color: #fff;
    color: #FF6B4A;
    border-color: #fff;
}

.cta-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
    margin-bottom: 0;
}

/* ===================================
   Thank You Page
   =================================== */

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 8%;
    background-color: #faf8f5;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: #FF6B4A;
    color: #fff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 40px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.thank-you-message {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin-bottom: 48px;
}

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    font-family: 'Roboto', sans-serif;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background-color: #FF6B4A;
    color: #fff;
    border-color: #FF6B4A;
}

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

.cookie-decline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.cookie-decline:hover {
    background-color: #fff;
    color: #2c2c2c;
    border-color: #fff;
}

/* ===================================
   Enquiry Form Section
   =================================== */

.enquiry-section {
    padding: 140px 8%;
    padding-top: 220px;
    background-color: #fff;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 80px;
}

.enquiry-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 200;
    /* Extra Light for elegant heading */
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.enquiry-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    /* Light for subtitle */
    font-style: italic;
    color: #666;
}

.enquiry-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #FF6B4A;
    margin-top: 16px;
    margin-bottom: 0;
}

.enquiry-form {
    max-width: 900px;
    margin: 0 auto;
}

/*.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}*/

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

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    /* Medium for labels */
    margin-bottom: 12px;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.field-description {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    /* Light for descriptions */
    color: #666;
    margin-top: -8px;
    margin-bottom: 16px;
    font-style: italic;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    /* Light for input text */
    color: #2c2c2c;
    background-color: #faf8f5;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B4A;
    background-color: #fff;
}

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

.conditional-input {
    margin-top: 12px;
    display: none;
}

.conditional-input.active {
    display: block;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FF6B4A;
}

.radio-option label,
.checkbox-option label {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    /* Light for option labels */
    color: #2c2c2c;
    cursor: pointer;
    margin-bottom: 0;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF6B4A;
}

.form-checkbox label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    /* Light */
    color: #666;
    cursor: pointer;
    margin-bottom: 0;
}

.form-actions {
    margin-top: 60px;
    text-align: center;
}

.form-actions .btn {
    min-width: 250px;
}

/* ===================================
   Footer - Minimal
   =================================== */

.footer {
    padding: 60px 8%;
    text-align: center;
    background-color: #faf8f5;
    border-top: 1px solid #e0e0e0;
}

.footer-text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 300;
    /* Light */
    color: #999;
    letter-spacing: 1px;
}

/* ===================================
   Responsive Design
   =================================== */

@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .statement-text {
        font-size: 42px;
    }

    .interior-text {
        font-size: 36px;
    }

    .luxury-text,
    .tech-text {
        font-size: 42px;
        padding: 60px 6%;
    }

    .tech-image {
        min-height: 50vh;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 8px 15px;
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 5px;
    }

    .logo img {
        height: 80px;
        width: auto;
        object-fit: contain;
    }

    .header.scrolled .logo img {
        height: 60px;
    }

    .nav {
        gap: 20px;
        font-size: 9px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 9px;
        gap: 8px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 0 6% 12%;
    }

    .hero-title {
        font-size: 48px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 22px;
        white-space: normal;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 16px;
    }

/*    .interior-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }*/

    .statement-text,
    .interior-text,
    .exterior-image {
        min-height: 50vh;
    }

    .interior-image {
        min-height: 30vh;
    }

    .statement-text,
    .interior-text {
        font-size: 32px;
        padding: 50px 6%;
        min-height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .materials-section {
        padding: 80px 6%;
    }

/*    .materials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }*/

    .materials-text {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .materials-intro {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .materials-list {
        font-size: 18px;
    }

/*    .luxury-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }*/
    
    /* Tech Section Mobile - Text first, then image */
    .tech-grid {
        display: flex;
        flex-direction: column;
    }

    .tech-text {
        order: 1;
    }

    .tech-image {
        order: 2;
    }

    /* Luxury Section Mobile - Text first, then image */
    .luxury-grid {
        display: flex;
        flex-direction: column;
    }

    .luxury-text {
        order: 1;
    }

    .luxury-image {
        order: 2;
    }

    /* Interior Section Mobile - Text before images */
    .interior-grid {
        display: flex;
        flex-direction: column;
    }

    .statement-text {
        order: 1;
    }

    .interior-image {
        order: 2;
    }

    .interior-text {
        order: 3;
    }

    .exterior-image {
        order: 4;
    }

    .team-section {
        padding: 100px 6%;
    }

    .team-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .team-question {
        font-size: 18px;
        padding: 24px 0;
    }

    .luxury-text,
    .tech-text {
        font-size: 32px;
        padding: 6% 6%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40vh;
    }

    .tech-text p,
    .luxury-text p {
        margin: 0;
    }

    .luxury-image,
    .team-image {
        min-height: 50vh;
    }

    .tech-image {
        min-height: 60vh;
    }

    .services-section {
        padding: 100px 6%;
    }

    .services-statement {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .services-content {
        flex-direction: column;
        gap: 50px;
    }

    .services-image {
        flex: 0 0 100%;
    }

    .services-list li {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .services-title {
        font-size: 28px;
        margin-bottom: 60px;
    }

/*    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }*/

    .detail-section {
        padding: 100px 6%;
    }

    .detail-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

/*   .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }*/

    .detail-text {
        font-size: 16px;
    }

    .carousel-slide {
        height: 400px;
    }

    .testimonials-section {
        padding: 100px 6%;
    }

    .section-title,
    .faq-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .testimonial {
        margin-bottom: 80px;
    }

    .testimonial p {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Adjust decorative quotation mark for smaller screens */
    .testimonial p::before {
        font-size: 60px;
        top: -16px;
        left: -30px;
    }

    .testimonial cite {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .faq-section {
        padding: 100px 6%;
    }

/*    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }*/

    .enquiry-section {
        padding: 100px 6%;
    }

    .enquiry-title {
        font-size: 32px;
    }

    .enquiry-subtitle {
        font-size: 16px;
    }

    .enquiry-subtext {
        font-size: 13px;
        margin-top: 14px;
    }

/*    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }*/

    .footer {
        padding: 80px 6%;
    }

    /* Team Section Mobile - Stack image and content */
/*    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }*/

    .team-image-container {
        order: 1;
    }

    .team-content-wrapper {
        order: 2;
    }

    /* Detail Section Mobile - Stack accordion and carousel */
/*    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }*/

    .detail-accordion-wrapper {
        order: 1;
    }

    .detail-carousel {
        order: 2;
    }

    /* Luxury Section Mobile - Ensure proper text sizing */
    .luxury-intro {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .luxury-characteristics p {
        font-size: 18px;
    }


    /* CTA Section Mobile */
    .cta-section {
        padding: 80px 6%;
        background-color: #FF6B4A !important;
    }

    .cta-section .btn-primary {
        background-color: #fff !important;
        color: #FF6B4A !important;
        border-color: #fff !important;
        -webkit-tap-highlight-color: transparent;
    }

    .cta-section .btn-primary:active,
    .cta-section .btn-primary:focus {
        outline: none;
        background-color: #fff !important;
        color: #FF6B4A !important;
        border-color: #fff !important;
    }

    .cta-title {
        font-size: 36px;
        white-space: normal;
        line-height: 1.3;
    }

    .cta-text {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .cta-subtext {
        font-size: 13px;
        margin-top: 18px;
    }

    /* Thank You Page Mobile */
    .thank-you-section {
        padding: 100px 6%;
        min-height: 70vh;
    }

    .thank-you-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
        line-height: 60px;
        margin-bottom: 30px;
    }

    .thank-you-title {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .thank-you-message {
        font-size: 18px;
        margin-bottom: 40px;
    }

}

@media screen and (max-width: 480px) {
    .enquiry-section {
        padding: 80px 6%;
    }

    .enquiry-header {
        margin-bottom: 60px;
    }

    .enquiry-title {
        font-size: 28px;
    }

    .enquiry-subtitle {
        font-size: 15px;
    }

    .enquiry-subtext {
        font-size: 12px;
        margin-top: 12px;
    }

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

    .form-group label {
        font-size: 14px;
    }

    .form-actions .btn {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 6px 10px;
    }

    .header .container {
        padding: 0;
    }

    .logo img {
        height: 60px;
    }

    .header.scrolled .logo img {
        height: 50px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 8px;
        gap: 6px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 5% 15%;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
        white-space: normal;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 14px;
    }

    .interior-image {
        min-height: 40vh;
    }

    .tech-image {
        min-height: 45vh;
    }

    .team-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    /* Small Mobile - Additional optimizations */
    .luxury-intro {
        font-size: 28px;
    }

    .luxury-characteristics p {
        font-size: 16px;
    }

    .services-list li {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 28px;
        white-space: normal;
        line-height: 1.3;
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cta-subtext {
        font-size: 12px;
        margin-top: 16px;
    }

    /* Thank You Page Small Mobile */
    .thank-you-section {
        padding: 80px 5%;
        min-height: 65vh;
    }

    .thank-you-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
        line-height: 50px;
        margin-bottom: 24px;
    }

    .thank-you-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .thank-you-message {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .cta-section {
        padding: 60px 5%;
        background-color: #FF6B4A !important;
    }

    .cta-section .btn-primary {
        background-color: #fff !important;
        color: #FF6B4A !important;
        border-color: #fff !important;
        -webkit-tap-highlight-color: transparent;
    }

    .cta-section .btn-primary:active,
    .cta-section .btn-primary:focus {
        outline: none;
        background-color: #fff !important;
        color: #FF6B4A !important;
        border-color: #fff !important;
    }

    .statement-text,
    .interior-text {
        font-size: 24px;
        padding: 30px 5%;
        min-height: 25vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .materials-text {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .luxury-text,
    .tech-text {
        font-size: 24px;
        padding: 20px 5%;
        min-height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tech-text p,
    .luxury-text p {
        margin: 0;
    }


    .team-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .statement-text,
    .interior-text {
        font-size: 26px;
        padding: 6%;
    }

    .materials-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .materials-intro {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .materials-list {
        font-size: 16px;
    }

    .luxury-text,
    .tech-text {
        font-size: 26px;
        padding: 6%;
    }

    .services-statement {
        font-size: 28px;
    }


    .services-title {
        font-size: 24px;
    }

    .services-list {
        padding: 20px;
        font-size: 14px;
    }

    .section-title,
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .testimonial {
        margin-bottom: 60px;
    }

    .testimonial p {
        font-size: 18px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    /* Simplify decorative element on very small screens */
    .testimonial p::before {
        font-size: 48px;
        top: -12px;
        left: -20px;
        opacity: 0.1;
        /* Even more subtle on mobile */
    }

    .testimonial cite {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .faq-question {
        font-size: 16px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 11px;
    }

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-text {
        font-size: 13px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 11px;
    }
}

/* ===================================
   Animations
   =================================== */

section:not(.hero) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: opacity, transform;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.reveal-text.in-view {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}