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

html {
    background-color: #E9DCD7;
    overflow: hidden;
    height: 100%;
}

/* for Laptop screen */

@media (max-width: 1366px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

body {
    font-family: 'EB Garamond', serif;
    overflow: hidden;
    background-color: #E9DCD7;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
    zoom: 0.9;
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 0px 0;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0; */
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 12px;
    padding: 0px 0;
    flex: 1;
}

.nav-links li {
    display: inline-block;
    position: relative;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #8D5848;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5a4a3a;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(233, 220, 215, 0.95);
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: 1px solid #8D5848;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #8D5848;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #E0D0C5;
    color: #5a4a3a;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #8D5848;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Full Screen Overlay Menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 115vh;
    background-color: #F0E4DE;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding-top: 60px;
    padding-bottom: 40px;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}





.nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #4E4B47;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 300;
}

.nav-close:hover {
    color: #3a3834;
}

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

.nav-logo {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 2px;
    color: #4E4B47;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.nav-overlay .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-overlay .nav-links li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
}

.nav-overlay .nav-links a {
    color: #4E4B47;
    text-decoration: none;
    font-size: clamp(0.75rem, 2vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-links a:hover {
    color: #3a3834;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #4E4B47;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* .nav-links a:hover::after {
    width: 100%;
} */

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-left: 2rem;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    margin: 1rem 0;
}

.nav-dropdown-menu li {
    margin: 1rem 0;
}

.nav-dropdown-menu a {
    font-size: clamp(0.7rem, 1.8vw, 1.1rem);
    color: #6B6865;
    transition: all 0.3s ease;
    padding-left: 1rem;
    position: relative;
}

.nav-dropdown-menu a:hover {
    color: #4E4B47;
    transform: translateX(5px);
}

.nav-dropdown-menu a::before {
    content: '→';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-dropdown-menu a:hover::before {
    opacity: 1;
    left: -15px;
}

.nav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #E9DCD7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: transparent;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: normal;
    letter-spacing: 0.05em;
    color: #8d5848;
    position: relative;
    z-index: 3;
    margin-top: 12rem;
}

.hero-video {
    position: absolute;
    top: 40%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="32" font-weight="bold" letter-spacing="0.1em" fill="white">TERRA NOVA</text></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="32" font-weight="bold" letter-spacing="0.1em" fill="white">TERRA NOVA</text></svg>');
    -webkit-mask-size: 80% auto;
    mask-size: 80% auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    /* Mobile video optimization */
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

/* Mobile video fallback */
@media (max-width: 768px) {
    .hero-video {
        top: 35%;
        /* Simplified mask for better mobile performance */
        -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 120"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="14" font-weight="bold" letter-spacing="0.06em" fill="white">TERRA NOVA</text></svg>');
        mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 120"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="14" font-weight="bold" letter-spacing="0.06em" fill="white">TERRA NOVA</text></svg>');
        -webkit-mask-size: 70% auto;
        mask-size: 70% auto;
        /* Force hardware acceleration on mobile */
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        top: 30%;
        -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 90"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="8" font-weight="bold" letter-spacing="0.04em" fill="white">TERRA NOVA</text></svg>');
        mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 90"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="8" font-weight="bold" letter-spacing="0.04em" fill="white">TERRA NOVA</text></svg>');
        -webkit-mask-size: 55% auto;
        mask-size: 55% auto;
    }
}

@media (max-width: 320px) {
    .hero-video {
        top: 25%;
        -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 70"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="6" font-weight="bold" letter-spacing="0.03em" fill="white">TERRA NOVA</text></svg>');
        mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 70"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="6" font-weight="bold" letter-spacing="0.03em" fill="white">TERRA NOVA</text></svg>');
        -webkit-mask-size: 45% auto;
        mask-size: 45% auto;
    }
}

/* About Section */
.about-section {
    background-color: #E9DCD7;
    padding: 40px 40px 80px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: -20px;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-paragraph {
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-paragraph.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.about-paragraph:nth-child(1).slide-up {
    transition-delay: 0.1s;
}

.about-paragraph:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.about-paragraph:nth-child(3).slide-up {
    transition-delay: 0.5s;
}

.about-paragraph p {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    color: #4E4B47;
    text-align: justify;
    letter-spacing: 0.02em;
    font-weight: 400;
    margin: 0;
}

/* Image Section */
.image-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-container.slide-up {
    opacity: 1;
    transform: translateY(0) scale(1.0);
}

.section-image {
    width: 50%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.3);
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.section-image:hover {
    transform: scale(1.02);
}

/* Approach Section */
.approach-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-image {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.approach-image.slide-up {
    opacity: 1;
    transform: translateX(0);
}

.approach-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.3);
    transition: transform 0.3s ease;
}

.approach-img:hover {
    transform: scale(1.02);
}

.approach-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.approach-text.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.approach-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(2.0rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.approach-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.approach-item:nth-child(1).slide-up {
    transition-delay: 0.4s;
}

.approach-item:nth-child(2).slide-up {
    transition-delay: 0.5s;
}

.approach-item:nth-child(3).slide-up {
    transition-delay: 0.6s;
}

.approach-item:nth-child(4).slide-up {
    transition-delay: 0.7s;
}

.approach-item:nth-child(5).slide-up {
    transition-delay: 0.8s;
}

.approach-item:nth-child(6).slide-up {
    transition-delay: 0.9s;
}

.approach-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background-color: #4E4B47;
}

.approach-item strong {
    color: #4E4B47;
    font-weight: 400;
}

/* Clientele Section */
.clientele-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.clientele-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clientele-image {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clientele-image.slide-up {
    opacity: 1;
    transform: translateX(0);
}

.clientele-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.3);
    transition: transform 0.3s ease;
}

.clientele-img:hover {
    transform: scale(1.02);
}

.clientele-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.clientele-text.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.clientele-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.clientele-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clientele-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clientele-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.clientele-item:nth-child(1).slide-up {
    transition-delay: 0.4s;
}

.clientele-item:nth-child(2).slide-up {
    transition-delay: 0.5s;
}

.clientele-item:nth-child(3).slide-up {
    transition-delay: 0.6s;
}

.clientele-item:nth-child(4).slide-up {
    transition-delay: 0.7s;
}

.clientele-item:nth-child(5).slide-up {
    transition-delay: 0.8s;
}

.clientele-item:nth-child(6).slide-up {
    transition-delay: 0.9s;
}

.clientele-item:nth-child(7).slide-up {
    transition-delay: 1.0s;
}

.clientele-item:nth-child(8).slide-up {
    transition-delay: 1.1s;
}

.clientele-item:nth-child(9).slide-up {
    transition-delay: 1.2s;
}

.clientele-item:nth-child(10).slide-up {
    transition-delay: 1.3s;
}

.clientele-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background-color: #4E4B47;
}

/* Our Vision Section */
.our-vision-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.our-vision-page-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

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

.our-vision-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.our-vision-images {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInFromLeft 1.5s ease-out 0.2s forwards;
    width: 50%;
    justify-content: center;
    padding-left: 40px;
}

.our-vision-images.slide-up {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.our-vision-image-top {
    transform: translateY(-30px);
    width: 50%;
}

.our-vision-image-bottom {
    transform: translateY(30px);
    width: 50%;
}

.our-vision-img {
    width: 60%;
    /* Increased by 20% from 50% to 60% */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.3);
    transition: transform 0.3s ease;
}

.our-vision-img:hover {
    transform: scale(1.02);
}

.our-vision-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
    flex: 1;
    width: 50%;
}

.our-vision-text.slide-up {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.our-vision-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.our-vision-title.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.our-vision-subtitle {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    font-weight: normal;
    color: #4E4B47;
    margin-bottom: 2rem;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
}

.our-vision-subtitle.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.our-vision-paragraph {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our-vision-paragraph.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.our-vision-paragraph:nth-child(3).slide-up {
    transition-delay: 0.5s;
}

.our-vision-paragraph:nth-child(4).slide-up {
    transition-delay: 0.6s;
}

.our-vision-paragraph strong {
    color: #4E4B47;
    font-weight: 400;
}

/* Our Story Section */
.our-story-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.our-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.our-story-image {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our-story-image.slide-up {
    opacity: 1;
    transform: translateX(0);
}

.our-story-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.3);
    transition: transform 0.3s ease;
}

.our-story-img:hover {
    transform: scale(1.02);
}

.our-story-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.our-story-text.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.our-story-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.our-story-content-text {
    padding-right: 15px;
}

/* .our-story-content-text::-webkit-scrollbar {
    width: 6px;
}

.our-story-content-text::-webkit-scrollbar-track {
    background: #F2E7E3;
    border-radius: 3px;
}

.our-story-content-text::-webkit-scrollbar-thumb {
    background: #4E4B47;
    border-radius: 3px;
}

.our-story-content-text::-webkit-scrollbar-thumb:hover {
    background: #3a3834;
} */

/* Mobile-specific fixes for our-story text visibility */
.our-story-subtitle {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: normal;
    color: #4E4B47;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .our-story-content-text {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .our-story-paragraph {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .our-story-subtitle {
        font-size: clamp(1.0rem, 2.5vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .founder-section-title {
        font-size: clamp(1.5rem, 3.8vw, 2rem);
        margin: 2.5rem 0 1.5rem 0;
    }

    .founder-role {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
    }
}

@media (max-width: 480px) {
    .our-story-paragraph {
        font-size: clamp(1.3rem, 4vw, 1.5rem);
        line-height: 1.9;
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .our-story-subtitle {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .founder-section-title {
        font-size: clamp(1.6rem, 4.8vw, 2.2rem);
        margin: 3rem 0 2rem 0;
        text-align: left;
    }

    .founder-role {
        font-size: clamp(1.3rem, 4vw, 1.5rem);
    }
}

.our-story-paragraph {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our-story-paragraph.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.founder-section-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    font-weight: normal;
    color: #4E4B47;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.founder-role {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: normal;
    color: #8d5848;
    font-style: italic;
}

/* Process Section */
.process-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.process-text.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.process-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.process-item:nth-child(1).slide-up {
    transition-delay: 0.4s;
}

.process-item:nth-child(2).slide-up {
    transition-delay: 0.5s;
}

.process-item:nth-child(3).slide-up {
    transition-delay: 0.6s;
}

.process-item:nth-child(4).slide-up {
    transition-delay: 0.7s;
}

.process-item:nth-child(5).slide-up {
    transition-delay: 0.8s;
}

.process-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background-color: #4E4B47;
}

.process-image {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-image.slide-up {
    opacity: 1;
    transform: translateX(0);
}

.process-img {
    width: 80%;
    /* Reduced by 20% */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.3);
    transition: transform 0.3s ease;
}

.process-img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact-section {

    display: flex;
    align-items: center;
    justify-content: center;

}

.contact-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-overlay {

    width: 100%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.contact-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    line-height: 1.2;

}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;

}

.form-group {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

.form-group.slide-up {
    opacity: 1;
    transform: translateY(0);

}

.form-group:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.form-group:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.form-group:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.form-group:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.form-group:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.form-label {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: #4E4B47;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 15px 20px;
    border: 2px solid #E5D5CF;
    border-radius: 8px;
    background-color: #FEFCFA;
    color: #4E4B47;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #8d5848;
    box-shadow: 0 0 0 3px rgba(141, 88, 72, 0.1);
}

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

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2rem auto 0;
    max-width: 250px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-button.slide-up {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}


/* Craft Section */
.craft-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.craft-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.craft-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.craft-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.craft-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.craft-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.craft-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.craft-item:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.craft-item:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.craft-item:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.craft-item:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.craft-item:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.craft-item:nth-child(6).slide-up {
    transition-delay: 0.7s;
}

.craft-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

/* Interior Design Section */
.interior-design-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.interior-design-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interior-design-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.interior-design-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.interior-design-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.interior-design-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interior-design-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.interior-design-item:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.interior-design-item:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.interior-design-item:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.interior-design-item:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.interior-design-item:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.interior-design-item:nth-child(6).slide-up {
    transition-delay: 0.7s;
}

.interior-design-item:nth-child(7).slide-up {
    transition-delay: 0.8s;
}

.interior-design-item:nth-child(8).slide-up {
    transition-delay: 0.9s;
}

.interior-design-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

.interior-design-item strong {
    color: #4E4B47;
    font-weight: 400;
}

/* Architectural Design Section */
.architectural-design-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.architectural-design-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.architectural-design-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.architectural-design-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.architectural-design-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.architectural-design-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.architectural-design-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.architectural-design-item:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.architectural-design-item:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.architectural-design-item:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.architectural-design-item:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.architectural-design-item:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.architectural-design-item:nth-child(6).slide-up {
    transition-delay: 0.7s;
}

.architectural-design-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

.architectural-design-item strong {
    color: #4E4B47;
    font-weight: 400;
}

/* Landscape Design Section */
.landscape-design-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.landscape-design-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.landscape-design-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.landscape-design-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.landscape-design-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.landscape-design-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.landscape-design-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.landscape-design-item:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.landscape-design-item:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.landscape-design-item:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.landscape-design-item:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.landscape-design-item:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.landscape-design-item:nth-child(6).slide-up {
    transition-delay: 0.7s;
}

.landscape-design-item:nth-child(7).slide-up {
    transition-delay: 0.8s;
}

.landscape-design-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

.landscape-design-item strong {
    color: #4E4B47;
    font-weight: 400;
}

/* Display Design Section */
.display-design-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.display-design-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.display-design-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.display-design-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.display-design-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.display-design-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.display-design-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.display-design-item:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.display-design-item:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.display-design-item:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.display-design-item:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.display-design-item:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.display-design-item:nth-child(6).slide-up {
    transition-delay: 0.7s;
}

.display-design-item:nth-child(7).slide-up {
    transition-delay: 0.8s;
}

.display-design-item:nth-child(8).slide-up {
    transition-delay: 0.9s;
}

.display-design-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

.display-design-item strong {
    color: #4E4B47;
    font-weight: 400;
}

/* About Us Section */
.about-us-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.about-us-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-us-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.about-us-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.founders-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.founder-profile {
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-profile.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.founder-profile:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.founder-profile:nth-child(2).slide-up {
    transition-delay: 0.4s;
}

.founder-name {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: normal;
    color: #4E4B47;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.founder-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: #4E4B47;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.founder-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.founder-credential {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.6;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-credential.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.founder-credential::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

/* Event Design Section */
.event-design-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.event-design-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-design-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.event-design-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.event-design-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.event-design-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-design-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.event-design-item:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.event-design-item:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.event-design-item:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.event-design-item:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.event-design-item:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.event-design-item:nth-child(6).slide-up {
    transition-delay: 0.7s;
}

.event-design-item:nth-child(7).slide-up {
    transition-delay: 0.8s;
}

.event-design-item:nth-child(8).slide-up {
    transition-delay: 0.9s;
}

.event-design-item:nth-child(9).slide-up {
    transition-delay: 1.0s;
}

.event-design-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

.event-design-item strong {
    color: #4E4B47;
    font-weight: 400;
}

/* Remodeling & Renovation Section */
.remodeling-renovation-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.remodeling-renovation-overlay {
    width: 80%;
    background: linear-gradient(180deg, #F2E7E3 0%, #E9DCD7 100%);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.remodeling-renovation-overlay.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.remodeling-renovation-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #4E4B47;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.remodeling-renovation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.remodeling-renovation-item {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #4E4B47;
    position: relative;
    padding-left: 25px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.remodeling-renovation-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.remodeling-renovation-item:nth-child(1).slide-up {
    transition-delay: 0.2s;
}

.remodeling-renovation-item:nth-child(2).slide-up {
    transition-delay: 0.3s;
}

.remodeling-renovation-item:nth-child(3).slide-up {
    transition-delay: 0.4s;
}

.remodeling-renovation-item:nth-child(4).slide-up {
    transition-delay: 0.5s;
}

.remodeling-renovation-item:nth-child(5).slide-up {
    transition-delay: 0.6s;
}

.remodeling-renovation-item:nth-child(6).slide-up {
    transition-delay: 0.7s;
}

.remodeling-renovation-item:nth-child(7).slide-up {
    transition-delay: 0.8s;
}

.remodeling-renovation-item:nth-child(8).slide-up {
    transition-delay: 0.9s;
}

.remodeling-renovation-item:nth-child(9).slide-up {
    transition-delay: 1.0s;
}

.remodeling-renovation-item:nth-child(10).slide-up {
    transition-delay: 1.1s;
}

.remodeling-renovation-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-color: #4E4B47;
    border-radius: 0;
}

.remodeling-renovation-item strong {
    color: #4E4B47;
    font-weight: 400;
}

/* Gallery Section */
.gallery-section {
    background-color: #E9DCD7;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

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

.gallery-grid {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.gallery-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    max-width: 300px;
}

.gallery-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1).slide-up {
    transition-delay: 0.1s;
}

.gallery-item:nth-child(2).slide-up {
    transition-delay: 0.2s;
}

.gallery-item:nth-child(3).slide-up {
    transition-delay: 0.3s;
}

.gallery-item:nth-child(4).slide-up {
    transition-delay: 0.4s;
}

.gallery-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(139, 88, 72, 0.3);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-item:nth-child(1) {
    transform: translateY(-20px);
}

.gallery-item:nth-child(1) .gallery-image {
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(2) {
    transform: translateY(-20px);
}

.gallery-item:nth-child(2) .gallery-image {
    aspect-ratio: 3/5;
}

.gallery-item:nth-child(3) .gallery-image {
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(4) {
    transform: translateY(20px);
}

.gallery-item:nth-child(4) .gallery-image {
    aspect-ratio: 2/3;
}

.gallery-small {
    flex: 0.8;
}

.gallery-medium {
    flex: 0.9;
    transform: translateY(-20px);
}

.gallery-large {
    flex: 1.2;
}

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

/* Media queries for responsive design */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Tablet-specific styles */
    .our-vision-section {
        padding: 70px 30px;
    }

    .our-vision-content {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .our-vision-images {
        width: 100%;
        flex-direction: row;
        gap: 15px;
        padding-left: 0;
        justify-content: center;
        align-items: center;
    }

    .our-vision-image-top,
    .our-vision-image-bottom {
        width: 45%;
        transform: translateY(0);
        display: flex;
        justify-content: center;
    }

    .our-vision-img {
        width: 90%;
        max-width: 250px;
    }

    .our-vision-text {
        width: 100%;
        text-align: center;
        max-width: 600px;
    }

    .our-vision-paragraph {
        text-align: justify;
    }
}

@media (max-width: 768px) {

    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }

    /* Hide desktop navigation on mobile */
    .navbar .nav-links {
        display: none;
    }

    body {
        padding: 15px;
    }

    .page-frame {
        height: calc(100vh - 30px);
        border-width: 15px;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(4rem, 12vw, 8rem);
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }



    .about-section {
        padding: 30px 20px 60px 20px;
        margin-top: -15px;
    }

    .about-content {
        gap: 30px;
    }

    .image-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .section-image {
        width: 85%;
        border-radius: 6px;
    }

    .approach-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-image {
        transform: translateY(50px);
    }

    .approach-image.slide-up {
        transform: translateY(0);
    }

    .craft-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .craft-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .craft-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }

    .interior-design-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .interior-design-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .architectural-design-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .architectural-design-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .landscape-design-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .landscape-design-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .display-design-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .display-design-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .event-design-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .event-design-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .remodeling-renovation-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .remodeling-renovation-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .clientele-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .clientele-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .clientele-list {
        text-align: left;
        display: inline-block;
    }

    .clientele-image {
        transform: translateY(50px);
        text-align: center;
    }

    .clientele-image.slide-up {
        transform: translateY(0);
    }

    .clientele-img {
        margin: 0 auto;
        display: block;
    }

    .process-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .process-list {
        text-align: left;
        display: inline-block;
    }

    .process-image {
        transform: translateY(50px);
        text-align: center;
    }

    .process-image.slide-up {
        transform: translateY(0);
    }

    .process-img {
        margin: 0 auto;
        display: block;
    }

    .about-us-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .about-us-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .founders-content {
        gap: 2rem;
    }

    .our-story-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .our-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .our-story-image {
        transform: translateY(50px);
    }

    .our-story-image.slide-up {
        transform: translateY(0);
    }

    .our-vision-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .our-vision-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .our-vision-images {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
        justify-content: center;
        align-items: center;
        transform: translateY(50px);
    }

    .our-vision-images.slide-up {
        transform: translateY(0);
    }

    .our-vision-image-top,
    .our-vision-image-bottom {
        width: 85%;
        transform: translateY(0);
        display: flex;
        justify-content: center;
    }

    .our-vision-img {
        width: 100%;
        max-width: 280px;
    }

    .our-vision-text {
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .our-vision-paragraph {
        text-align: left;
        margin-bottom: 1rem;
    }

    .our-story-content-text {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .contact-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .contact-overlay {
        width: 90%;
        padding: 40px 30px;
    }

    .gallery-section {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .gallery-grid {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-width: 150px;
        transform: translateY(0) !important;
    }

    .gallery-item .gallery-image {
        aspect-ratio: 4/5;
    }

}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 0;
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 6rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }

    .hero-video {
        -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 90"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="8" font-weight="bold" letter-spacing="0.04em" fill="white">TERRA NOVA</text></svg>');
        mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 90"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="8" font-weight="bold" letter-spacing="0.04em" fill="white">TERRA NOVA</text></svg>');
        -webkit-mask-size: 55% auto;
        mask-size: 55% auto;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }

    .section-image {
        width: 90%;
    }

    .hamburger {
        width: 25px;
        height: 20px;
    }

    .nav-close {
        top: 20px;
        left: 20px;
        font-size: 2.5rem;
    }

    .landscape-design-overlay {
        width: 95% !important;
        padding: 30px 20px !important;
        margin: 0 auto;
    }

    .display-design-overlay {
        width: 95% !important;
        padding: 30px 20px !important;
        margin: 0 auto;
    }

    .interior-design-overlay {
        width: 95% !important;
        padding: 30px 20px !important;
        margin: 0 auto;
    }

    .architectural-design-overlay {
        width: 95% !important;
        padding: 30px 20px !important;
        margin: 0 auto;
    }

    .remodeling-renovation-overlay {
        width: 95% !important;
        padding: 30px 20px !important;
        margin: 0 auto;
    }

    .event-design-overlay {
        width: 95% !important;
        padding: 30px 20px !important;
        margin: 0 auto;
    }

    .gallery-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .gallery-item {
        flex: none;
        width: 90%;
        max-width: 280px;
        transform: translateY(0) !important;
    }

    .gallery-item .gallery-image {
        aspect-ratio: 4/5;
    }
}

@media (max-width: 320px) {
    body {
        padding: 10px;
    }

    .page-frame {
        height: calc(100vh - 20px);
        border-width: 10px;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 15px;
    }

    .hero-title {
        margin-bottom: 0.5rem;
    }


    .hero-video {
        -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 70"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="6" font-weight="bold" letter-spacing="0.03em" fill="white">TERRA NOVA</text></svg>');
        mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 70"><text x="50%" y="50%" text-anchor="middle" dominant-baseline="middle" font-family="Garamond, Times New Roman, serif" font-size="6" font-weight="bold" letter-spacing="0.03em" fill="white">TERRA NOVA</text></svg>');
        -webkit-mask-size: 45% auto;
        mask-size: 45% auto;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 .5vw;
    height: calc(100vh / 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}



/* New Vision Hero Section */
.vision-hero-section {
    padding: 0;
    background-color: transparent;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: stretch;
    position: relative;
}

.vision-hero-container {
    width: 100%;
    height: 80%;
    display: flex;
    position: relative;
    margin-top: 2vh;
}

.vision-hero-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    height: 100%;
}

.vision-hero-image.slide-up {
    opacity: 1;
    transform: translateX(0);
}

.vision-img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

.vision-img:hover {
    transform: scale(1.02);
}

/* Add gradient overlay to fade the image on the right side */
/* .vision-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            transparent 10%,
            rgba(233, 220, 215, 0.05) 20%,
            rgba(233, 220, 215, 0.1) 30%,
            rgba(233, 220, 215, 0.2) 40%,
            rgba(233, 220, 215, 0.4) 50%,
            rgba(233, 220, 215, 0.6) 60%,
            rgba(233, 220, 215, 0.8) 70%,
            rgba(233, 220, 215, 0.9) 80%,
            rgba(233, 220, 215, 0.98) 90%,
            #E9DCD7 100%);
    pointer-events: none;
    border-radius: 0;
    z-index: 1;
} */

.vision-hero-content {
    flex: 1;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
    position: relative;
    z-index: 2;
    height: 100%;
}

.vision-hero-content.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.vision-main-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: clamp(1.6rem, 2.6vw, 3rem);
    font-weight: normal;
    letter-spacing: 4px;
    color: #8D5848;
    text-transform: uppercase;
    margin-top: 4vh;
    margin-bottom: 4vh;
    line-height: 1;
    text-align: center;
    padding-left: 0;
    white-space: nowrap;
}



.vision-sections {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.vision-section {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vision-section.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.vision-section:nth-child(1).slide-up {
    transition-delay: 0.3s;
}

.vision-section:nth-child(2).slide-up {
    transition-delay: 0.4s;
}

.vision-section-title {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: 4.5vh;
    font-weight: normal;
    color: #4E4B47;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    margin-bottom: 17px;
}

.vision-section-title::before {
    content: '■';
    color: #4E4B47;
    margin-right: 0.5rem;
    font-size: 0.8em;
    position: relative;
    top: -0.1em;
}

.vision-section-text {
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: 3.4vh;
    line-height: 1.7;
    color: #4E4B47;
    text-align: justify;
    max-width: 90%;
    order: 1;
}

.vision-hero-content {
    width: 100%;
    order: 2;
}

.vision-section-text {
    text-align: left;
    max-width: 100%;
    font-size: 3.4vh;
    font-family: 'EB Garamond', serif;
    margin-bottom: 1.5vh;
    line-height: 1.6;
}


@media (max-width: 480px) {
    .vision-hero-section {
        min-height: auto;
    }

    .vision-hero-image {
        height: 50vh;
    }

    .vision-hero-content {
        padding: 30px 20px;
    }



    .vision-section {
        margin-bottom: 2rem;
    }

    .vision-section-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .vision-section-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
}


/* Window Dimension Display */
.window-dimensions {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    font-family: monospace;
    font-size: 12px;
    border-radius: 4px;
    z-index: 9999;
    /* display: none; */
}

@media (max-width: 991px) {
    .home-page {
        overflow: auto;
    }
}

@media (max-width: 991px) {
    html {
        overflow: visible;
        height: auto;
    }

    .main-container {
        padding: 5px 15px;
        height: auto;
        overflow: visible;
    }


    /* Vision page: reset no-scroll, switch to column layout */
    body.vision-page {
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
    }

    /* Reset inline title padding/alignment on mobile */
    body.vision-page .vision-main-title {
        padding-left: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        margin-top: 2vh;
        font-size: clamp(1.4rem, 4vw, 2.2rem) !important;
        letter-spacing: 3px !important;
    }

    body.vision-page .vision-hero-section {
        height: auto;
        min-height: unset;
        padding: 0 15px;
    }

    body.vision-page .vision-hero-container {
        flex-direction: column;
        margin-top: 20px;
        height: auto;
    }

    body.vision-page .vision-hero-image {
        width: 100%;
        flex: none;
        height: auto;
    }

    body.vision-page .vision-img {
        height: 55vw;
        width: 100%;
        object-fit: cover;
    }

    body.vision-page .vision-hero-content {
        width: 100%;
        flex: none;
        order: 2;
        height: auto;
    }

    body.vision-page .vision-sections {
        flex: none;
        height: auto;
        padding-right: 5%;
    }

    body.vision-page .vision-section {
        flex: none;
        height: auto;
        min-height: unset;
    }

    
}

@media (max-width: 480px) {
    body.vision-page .vision-hero-section {
        min-height: auto;
    }

    body.vision-page .vision-img {
        height: 60vw;
        object-fit: cover;
    }

    body.vision-page .vision-hero-content {
        padding: 25px 0px 0px;
    }

    body.vision-page .vision-section {
        margin-bottom: 2rem;
    }

    body.vision-page .vision-section-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    body.vision-page .vision-section-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .bullet-point {
        color: #4E4B47;
        font-size: 15px;
        /* margin-top: 0.3rem; */
        flex-shrink: 0;
    }

}

@media (max-width: 768px) {
    .process-bullets {
        gap: 1.2rem;
        max-width: 90%;
    }

    .process-bullet-item {
        gap: 0.8rem;
    }

    .bullet-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.5;
    }

    .bullet-point {
        color: #4E4B47;
        font-size: 15px;
        margin-top: 0.3rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .process-bullets {
        gap: 1rem;
    }

    .bullet-text {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }

    .bullet-point {
        color: #4E4B47;
        font-size: 15px;
        margin-top: 0.3rem;
        flex-shrink: 0;
    }

}

