:root {
    --color-bg-primary: #fdfaf0;
    --color-text-primary: #2D440F;
    --color-text-light: #ffffff;
    --color-accent-primary: #be5a28;
    --color-accent-secondary: #466d2e;
    --color-border-thin: rgba(181, 81, 25, 0.15);
    --color-border-medium: rgba(181, 81, 25, 0.3);
    --color-overlay-dark: rgba(0, 0, 0, 0.45);
    --font-serif: 'GFS Didot', serif;
    --font-accent: 'Allison', cursive;
    --font-sans: 'Montserrat', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-serif);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section {
    padding: 10rem 0; /* Default padding for all sections */
    position: relative;
    width: 100%;
}

section.has-divider {
    padding-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 4rem;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

.about-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-sans);
    font-size: 3.2rem;
    letter-spacing: 0.15em;
    color: var(--color-accent-primary);
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--color-accent-secondary);
    line-height: 0.2;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
    margin-left: 24rem; /* Starts where US ends */
}

.about-section {
    background-image: url('./assets/abtus bg image.jpg');
    background-size: cover;
    background-position: top left;
    background-attachment: scroll;
    position: relative;
    background-color: transparent; /* Remove bg color */
    padding: 10rem 0 0 0; /* Removed side padding, bottom padding handled by line-height 0 */
}

.about-footer-image {
    width: 100%;
    margin-top: 4rem;
    line-height: 0; /* Remove potential bottom gap */
}

.full-width-illustration {
    width: 100%;
    height: auto;
    display: block;
}

.about-section::before {
    display: none; /* Remove overlay */
}

.about-section .container {
    position: relative;
    z-index: 2;
}

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

.text-accent-alt {
    color: var(--color-accent-secondary);
}

.about-body p {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 2.5rem 4rem;
}

.main-header.scrolled {
    padding: 1.2rem 4rem;
    background-color: rgba(253, 250, 240, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 15px rgba(45, 68, 15, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-item {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.main-header.scrolled .nav-item {
    color: var(--color-text-primary);
}

.nav-item:hover {
    color: var(--color-accent-primary) !important;
}

.logo-container {
    flex: 0 0 auto;
    text-align: center;
    transition: var(--transition-smooth);
    margin: 0 3.5rem;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 50px; /* Reduced size */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 40px; /* Smaller when scrolled */
}

.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.main-header.scrolled .hamburger-bar {
    background-color: var(--color-text-primary);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2000;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mobile-drawer.open {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 2.5rem;
    right: 4rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-drawer svg {
    width: 28px;
    height: 28px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.drawer-item {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: var(--transition-smooth);
    font-weight: 500;
}

.drawer-item:hover {
    color: var(--color-accent-primary);
}

.drawer-footer {
    text-align: center;
}

.drawer-copyright {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(45, 68, 15, 0.5);
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-text-light);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-script-logo {
    height: 700px; /* Further increased size as requested */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.45em;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-decoration: none;
    padding: 1.2rem 3rem;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary-light {
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-primary-light:hover {
    color: var(--color-text-primary);
    background-color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.btn-primary-dark {
    color: var(--color-text-light);
    background-color: var(--color-accent-primary);
    border-color: var(--color-accent-primary);
}

.btn-primary-dark:hover {
    background-color: transparent;
    color: var(--color-accent-primary);
    border-color: var(--color-accent-primary);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-smooth);
}

.scroll-down-indicator:hover {
    color: var(--color-text-light);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: var(--color-text-light);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(-100%);
    }
    80% {
        transform: translateY(240%);
    }
    100% {
        transform: translateY(240%);
    }
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    font-weight: 400;
}

.about-section {
    background-color: var(--color-bg-primary);
}

.about-body {
    width: 100%;
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
    padding: 0 2rem;
}

.about-body p {
    margin-bottom: 2rem;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-decoration {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.arch-motif {
    width: 160px;
    height: auto;
    opacity: 0.85;
}

.philosophy-section {
    padding: 10rem 0;
    background-image: url('./assets/bg image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.philosophy-header {
    margin-bottom: 6rem;
}

.philosophy-main {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    padding: 0 4rem; /* Content still has side padding, but section is full width */
}

.philosophy-images {
    flex: 0 0 22%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phi-img {
    width: 100%;
    flex: 1; /* Each image takes equal space to fill the height */
    object-fit: cover;
    border-radius: 0;
}

.philosophy-content {
    flex: 1;
    padding-left: 2rem;
}

.philosophy-header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.philosophy-header .section-title {
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
}

.philosophy-header .section-subtitle {
    margin-left: 14rem;
    font-size: 3rem;
    line-height: 0.6;
}

.philosophy-text {
    margin-bottom: 4rem;
    text-align: center; /* Matching the alignment in the provided text */
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
}

.philosophy-pointers {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border-thin);
}

.phi-pointer {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.phi-circle {
    width: 18px;
    height: 18px;
    background-color: #466d2e;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.phi-pointer-content h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #be5a28;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.phi-pointer-content p {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.4;
    font-weight: 300;
}

.section-divider {
    width: 100%;
    line-height: 0; /* Remove vertical gaps */
    padding: 0;
}

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

.services-section {
    background-image: url('./assets/bg image.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--color-border-thin);
    border-bottom: 1px solid var(--color-border-thin);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services-row {
    display: grid;
    gap: 3rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.services-row-5 {
    grid-template-columns: repeat(5, 1fr);
}

.services-row-4 {
    grid-template-columns: repeat(4, 1fr);
    /* Removed max-width to let 4 images fill same width as 5, making them larger */
}

.service-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-top: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.service-card {
    transition: var(--transition-smooth);
    background-color: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square for icons */
    overflow: hidden;
    background-color: transparent;
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: none;
}

.service-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(181, 81, 25, 0.02);
}

.service-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--color-accent-primary);
    margin-bottom: 1.5rem;
}

.service-description {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 300;
}

.portfolio-section {
    background-image: url('./assets/bg image.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 10rem 0; /* Reduced top padding from 10rem */
    overflow: hidden;
}

.portfolio-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 8rem 0; /* Increased padding for zoomed images */
    position: relative;
}

.portfolio-slider {
    display: flex;
    gap: 1rem;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: max-content;
    padding: 0;
    align-items: center;
    will-change: transform;
}

.portfolio-slide {
    width: 240px; 
    aspect-ratio: 10/14;
    overflow: hidden;
    cursor: pointer;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease;
    opacity: 0.6; /* Increased opacity for visibility */
    position: relative;
    border-radius: 20px;
    flex-shrink: 0;
    transform: scale(0.8); /* Increased size for side images */
}

.portfolio-slide.active {
    opacity: 1;
    z-index: 100;
    box-shadow: 0 40px 80px rgba(45, 68, 15, 0.25);
    transform: scale(1.3); /* Slightly reduced active scale to balance */
}

.portfolio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.portfolio-slide:hover {
    opacity: 1;
}

.portfolio-slide:hover img {
    transform: scale(1.05);
}

.spotlight-section {
    background-image: url('./assets/bg image.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 10rem 0; /* Reduced top padding */
    position: relative;
    overflow: hidden;
}

.spotlight-container {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}

.spotlight-vertical-text {
    flex: 0 0 20%; /* 20% width as requested */
    display: flex;
    justify-content: center;
}

.spotlight-title {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent-primary);
    margin: 0;
    line-height: 1;
}

.spotlight-content {
    flex: 1;
    display: flex;
    width: 100%;
}

.spotlight-video-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 0; /* Edge to edge, no corners */
    box-shadow: none;
}

.spotlight-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .spotlight-container {
        flex-direction: column;
        gap: 3rem;
    }

    .spotlight-title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 3.5rem;
        text-align: center;
    }

    .spotlight-video-wrapper {
        width: 100%;
    }
}

.testimonials-section {
    background-image: url('./assets/bg image.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    overflow: hidden;
}

.testimonials-slider-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    padding: 0;
    align-items: center;
    will-change: transform;
}

.testimonial-slide {
    width: 100%;
    flex: 0 0 100%;
    height: 600px;
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease;
    opacity: 0;
    position: relative;
    border-radius: 0;
    transform: scale(0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 100;
    box-shadow: none;
    transform: scale(1);
}

.testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 250, 240, 0.8);
    border: 1px solid var(--color-border-medium);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    color: var(--color-text-primary);
    transition: var(--transition-smooth);
}

.testimonials-arrow:hover {
    background: var(--color-accent-primary);
    color: var(--color-text-light);
    border-color: var(--color-accent-primary);
}

.testimonials-arrow.prev {
    left: 0;
}

.testimonials-arrow.next {
    right: 0;
}

.testimonials-arrow svg {
    width: 24px;
    height: 24px;
}

.testimonial-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.testimonial-slide:hover {
    opacity: 1;
}

.journals-section {
    background-color: var(--color-bg-primary);
    border-top: 1px solid var(--color-border-thin);
    border-bottom: 1px solid var(--color-border-thin);
}

.journals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.journal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.journal-img-link {
    display: block;
    margin-bottom: 2rem;
    overflow: hidden;
}

.journal-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 68%;
    overflow: hidden;
}

.journal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.journal-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.journal-date {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(45, 68, 15, 0.5);
}

.journal-category {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--color-accent-secondary);
    font-weight: 500;
}

.journal-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.journal-card-title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.journal-card-title a:hover {
    color: var(--color-accent-primary);
}

.journal-excerpt {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(45, 68, 15, 0.75);
    font-weight: 300;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.journal-read-more {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-block;
    align-self: flex-start;
    position: relative;
    padding-bottom: 0.2rem;
}

.journal-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-accent-primary);
    transition: var(--transition-smooth);
}

.journal-card:hover .journal-read-more::after {
    width: 100%;
}

.contact-section {
    background-image: url('./assets/bg image.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 0 0; /* Reduced top padding from 10rem */
    position: relative;
}

.contact-main {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.contact-image-col {
    flex: 0 0 40%;
}

.contact-featured-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(45, 68, 15, 0.15);
}

.contact-form-col {
    flex: 0 0 60%;
    padding-right: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.bespoke-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border-medium);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    padding: 0.8rem 0;
    color: var(--color-text-primary);
    outline: none;
    transition: var(--transition-smooth);
}

.bespoke-input:focus {
    border-bottom-color: var(--color-accent-primary);
}

.bespoke-label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(45, 68, 15, 0.4);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group.full-width {
    grid-column: span 2;
}

.bespoke-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232D440F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.2rem;
}

.bespoke-select option {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    padding: 1rem;
}

.bespoke-input:focus ~ .bespoke-label,
.bespoke-input:not(:placeholder-shown) ~ .bespoke-label,
.bespoke-select:focus ~ .bespoke-label,
.bespoke-select:valid ~ .bespoke-label {
    top: -1.2rem;
    font-size: 0.6rem;
    color: var(--color-accent-primary);
    letter-spacing: 0.25em;
}

.form-group {
    position: relative;
}

@media (max-width: 900px) {
    .contact-main {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-image-col, .contact-form-col {
        flex: 0 0 100%;
        padding-right: 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.editorial-footer {
    background-image: url('./assets/bg image.jpg');
    background-size: cover;
    background-position: center;
    padding: 7rem 4rem 3rem;
    border-top: 1px solid var(--color-border-thin);
    position: relative;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--color-accent-primary);
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 400;
}

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

.footer-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 400;
}

.footer-email {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-email:hover {
    color: var(--color-accent-primary);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-socials a {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border-thin);
    padding-top: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(45, 68, 15, 0.6);
    font-weight: 400;
}

.section-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #fff;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .logo-container {
        margin: 0;
    }

    .header-container {
        justify-content: space-between;
    }

    /* Align logo left on mobile */
    .logo-container {
        position: static;
        transform: none;
        margin-right: auto;
    }

    .mobile-nav-toggle {
        margin-left: auto;
    }

    section {
        padding: 2rem 1.5rem; /* Halved from 4rem */
    }

    .hero-section {
        height: 56.25vw;
        min-height: 300px;
    }

    .main-header {
        padding: 1.2rem 1.5rem;
    }

    .logo-img {
        height: 35px;
    }

    .hero-script-logo {
        height: 300px;
    }

    .about-section {
        padding-top: 2.5rem; /* Halved from 5rem */
        padding-bottom: 1rem; /* Halved from 2rem */
    }

    .about-body {
        margin-bottom: 1.5rem; /* Halved from 3rem */
    }

    .about-footer-image {
        margin-top: 1.5rem; /* Halved from 3rem */
    }

    .container-fluid {
        padding: 0 1.5rem;
    }

    .section-subtitle {
        font-size: 2.2rem !important;
        margin-top: 0.5rem; /* Halved from 1rem */
        margin-bottom: 1.25rem; /* Halved from 2.5rem (original was 3.5rem) */
        margin-left: 0 !important;
        text-align: center;
        line-height: 1.2;
    }

    .about-header {
        margin-bottom: 1rem; /* Halved from 2rem */
    }
    
    .mobile-drawer {
        width: 85%;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .drawer-item {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    .philosophy-main {
        padding: 0 1rem; /* Added padding to prevent edge-to-edge on mobile */
        flex-direction: column;
        gap: 2rem;
    }

    .philosophy-images {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.8rem;
    }

    .phi-img {
        width: 260px;
        flex: 0 0 260px;
        aspect-ratio: 4/5;
    }

    .philosophy-content {
        padding-left: 0;
        width: 100%;
    }

    .philosophy-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .philosophy-header .section-title {
        font-size: 2.2rem;
    }

    .philosophy-header .section-subtitle {
        margin-left: 0;
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 0.5rem;
    }

    .philosophy-text {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .philosophy-text p {
        font-size: 1.1rem;
    }

    .philosophy-pointers {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .phi-pointer {
        text-align: left;
    }

    .spotlight-section {
        padding: 1rem 0 2rem 0; /* Reduced padding for spotlight on mobile */
    }

    .spotlight-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem; /* Reduced from 2rem */
    }

    .spotlight-vertical-text {
        width: 100%;
        padding: 0;
        margin-bottom: 0.5rem; /* Reduced from 1rem */
        text-align: center;
    }

    .spotlight-title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.8rem;
        text-align: center;
    }

    .spotlight-video-wrapper {
        aspect-ratio: auto;
        min-height: auto;
    }

    .spotlight-video {
        height: auto;
        max-height: 70vh;
        object-fit: contain;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem; /* Halved from 3rem */
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Halved from 3rem */
    }

    .services-row-4 {
        max-width: 100%;
    }

    .portfolio-section,
    .contact-section {
        padding-top: 1rem !important;
    }

    .portfolio-slider-container {
        padding: 2rem 0;
    }

    .portfolio-slide {
        width: 220px;
        transform: scale(0.8);
    }

    .portfolio-slide.active {
        transform: scale(1.1);
    }

    /* Testimonials Mobile Adjustments */
    .testimonials-section {
        padding: 1.5rem 0; /* Halved from 3rem */
    }

    .testimonials-slider-container {
        padding: 0 40px;
    }

    .testimonial-slide {
        height: 500px;
    }

    .testimonials-arrow {
        width: 35px;
        height: 35px;
    }

    .testimonials-arrow svg {
        width: 18px;
        height: 18px;
    }

    /* Footer Mobile Adjustments */
    .editorial-footer {
        padding: 2rem 1.5rem 1rem; /* Halved from 4rem, 2rem */
    }

    .footer-top {
        margin-bottom: 1.5rem; /* Halved from 3rem */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Halved from 3rem */
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-socials {
        align-items: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 1.5rem 1rem; /* Halved from 3rem */
    }

    .main-header {
        padding: 0.4rem 1.2rem; /* Halved from 0.8rem */
    }

    .hero-script-logo {
        height: 220px;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .about-header {
        margin-bottom: 0.5rem;
    }

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

    .portfolio-slide {
        width: 180px;
    }

    /* Testimonials Mobile Small Adjustments */
    .testimonials-section {
        padding: 1rem 0; /* Halved from 2rem */
    }

    .testimonials-slider-container {
        padding: 0 20px;
    }

    .testimonial-slide {
        height: 400px;
    }
}
