@font-face {
    font-family: 'DM Sans';
    src: url('fonts/dm-sans.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('fonts/dm-sans-500.woff2') format('woff2');
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/garamond-serif.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/garamond-serif-300.woff2') format('woff2');
    font-display: swap;
    font-weight: 300;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/garamond-serif-300-italic.woff2') format('woff2');
    font-display: swap;
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/garamond-serif-600.woff2') format('woff2');
    font-display: swap;
    font-weight: 600;
}

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

:root {
  --white:        #FFFFFF;
  --off-white:    #F7F9FA;
  --sky-pale:     #EDF5F8;
  --sky-light:    #D6EBF2;
  --sand:         #E8DCC8;
  --sand-dark:    #C4AA84;
  --ocean:        #1A7A9A;
  --ocean-light:  #2A9ABE;
  --ocean-deep:   #0F5570;
  --ocean-darkest:#0A3A50;
  --turquoise:    #3ABFCF;
  --turq-pale:    #A8DDE6;
  --gold:         #C4963C;
  --gold-light:   #D4AA58;
  --text-dark:    #0E2430;
  --text-mid:     #3A5060;
  --text-light:   #7A9AAA;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--sans);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 80px;
}

.wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--white);
    position: relative;
}

/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 8%;
    border-bottom: 1px solid var(--sky-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    height: 80px;
    z-index: 200;
    max-width: 1600px;
        margin: 0 auto;

}

.header-logo {
    text-decoration: none;
}

.header-logo-jaya {
    color: var(--ocean-deep);
    font-size: 22px;
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.header-logo-jaya span {
    color: var(--turquoise);
}

.header-logo-sub {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 9px;
}

.header-links {
    display: flex;
    gap: 32px;
}

.header-links a {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-mid);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.header-links a.active, .header-links a:hover {
    color: var(--ocean);
    border-color: var(--turquoise);
}

.header-cta {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ocean);
    border: none;
    padding: 11px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s;
    display: inline-block;
}

.header-cta:hover {
    background: var(--ocean-light);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

.lang-wrapper {
    position: relative;
    display: inline-block;
}

#langBtn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-mid);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;

    color: var(--text-mid);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 2px;
}

#langBtn:hover, #langBtn:hover .chevron {
    color: var(--ocean);
    border-color: var(--turquoise);
    fill: var(--ocean);
}

.chevron {
    width: 12px;
    height: 12px;
    fill: var(--text-mid);
    transition: transform 0.25s ease;
}

#langBtn.open .chevron {
    transform: rotate(180deg);
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 148px;
    z-index: 300;
}

.dropdown.open {
    display: block;
    animation: slideDown 0.18s ease forwards;
}

.dropdown.close {
    display: block;
    animation: slideUp 0.16s ease forwards;
}

.dropdown-container {
    background: var(--white);
    border: 1px solid var(--sky-light);
    box-shadow: 0 8px 24px rgba(10, 58, 80, 0.12);
    display: flex;
    flex-direction: column;
}

.dropdown-container a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid var(--sky-light);
}

.dropdown-container a:last-child {
    border-bottom: none;
}

.dropdown-container a:hover {
    background: var(--sky-pale);
    color: var(--ocean);
}

.dropdown-container a:first-child {
    color: var(--ocean);
    font-weight: 400;
}

/* RESPONSIVE HEADER */

.hamburger {
    border: none;
    cursor: pointer;
    color: black;
    background: transparent;
    font-size: 20px;
    display: none;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 58, 80, 0.5);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background: var(--white);
    z-index: 500;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--sky-light);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-mid);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.drawer-close:hover {
    color: var(--ocean);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    gap: 0;
}

.drawer-links a {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--sky-light);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-links a::after {
    content: '→';
    font-size: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
}

.drawer-links a:hover {
    color: var(--ocean);
}

.drawer-links a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.drawer-links a.active {
    color: var(--ocean);
}

/* HOME page */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px 10%;
    background: var(--sky-pale);
}

.hero-left {
    max-width: 500px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(46px, 7.5vw, 88px);
    font-weight: 300;
    line-height: 1.03;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.hero-title span {
    font-style: italic;
    color: var(--ocean);
}

.hero-item {
    max-width: 400px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(26,122,154,0.1);
    position: relative;
}

.hero-item img {
    width: 100%;
}

.hero-featured {
    position: absolute;
    border: 1px solid var(--ocean);
    padding: 8px 14px;
    color: var(--ocean);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 9px;
}

.hero-right {
    position: relative;
}

.hero-slider {
    display: grid;
    overflow: hidden;
    justify-content: right;
}

/* Stack all items in the same cell */
.hero-slider .hero-item {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slider .hero-item.active {
    opacity: 1;
    pointer-events: auto;
}

.home-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-strip {
    overflow: hidden;
    background: var(--ocean);
    padding: 14px 0;

}

/* New: the moving inner track */
.stats-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}
.stats-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
}

.stat-container {
    margin-left: 12px;
}

.stat-title {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: bold;
    font-weight: 400;
} 

.stat-text {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
}

.home-product-container {
    display: flex;
    flex-direction: column;
    padding: 80px 10%;
    background: var(--sky-pale);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
}

.product-item {
    max-width: 400px;
    background: var(--white);
    text-decoration: none;
    transition: transform 0.5s ease;
}

.product-item:hover {
    transform: scale(1.02);
}

.product-item img {
    width: 100%;
}

.product-text-container {
    padding: 10px;
    border-top: 2px solid var(--sky-pale);
}

.product-text-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.product-text-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-text-link {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ocean);
}

/* Sections */

.section-type-1 {
    background: linear-gradient(135deg, var(--ocean-darkest) 0%, var(--ocean-deep) 60%, var(--ocean) 100%);
    padding: 40px 10%;
    position: relative;
}

.section-type-1::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 24px);
}

.section-type-1-eyebrow {
    color: var(--turquoise);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-type-1-text {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 16px;
}

.section-type-1-text span {
    color: var(--turq-pale);
    font-style: italic;
}


.section-type-2 {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
}

.section-type-2-left {
    position: relative;
    max-width: 600px;
}

.section-type-2-left img {
    max-width: 100%;
}

.label {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ocean);
    bottom: 20px;
    left: 20px;
}

.label-type-2 {
    position: absolute;
    bottom: -19px;
    right: -24px;
    width: 148px;
    height: 148px;
    background: var(--ocean);
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.label-type-2 span {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
}

.section-type-2-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 12px;
}

.section-type-2-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-type-2-title span {
    font-style: italic;
    color: var(--ocean);
}

.section-type-2-quote {
    font-family: var(--serif);
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    font-weight: 300;
    color: var(--ocean-deep);
    line-height: 1.5;
    margin: 24px 0;
}

.section-type-2-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
}

.section-type-2-cta-container {
    display: flex;
    gap: 32px;
    margin-top: 20px;
}

.section-type-2-cta-light {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ocean);
    background: transparent;
    border: 1px solid var(--ocean);
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}

.section-type-2-cta-light:hover {
    background: var(--ocean);
    color: var(--white);
}

.section-type-2-cta-dark {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ocean);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s;
}

.section-type-2-cta-dark:hover {
    background: var(--ocean-light);
}

/* PRODUCT PAGE */

.product-page {
    background: var(--sky-pale);
    padding: 40px 10%;
}


.product-detail {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.product-detail-left {
    width: 100%;
    padding: 40px;
}

.product-detail-right {
    width: 100%;
    position: relative;
}

.model-tabs-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: row;
}

.model-tab {
    border: 1px solid var(--turquoise);
    padding: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--turquoise);
    background: transparent;
    margin-right: 8px;
    cursor: pointer;
    transition: background 0.25s;
}

.model-tab:hover {
    background: var(--sky-pale);
}

.model-tab.tab-active {
    background: var(--sky-pale);
}

.product-detail img {
    width: 100%;
    height: 450px;
}

.detail-eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 8px;
}

.detail-title {
    font-family: var(--serif);
    font-size: clamp(28px,4vw,34px);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 12px;
}

.detail-title span {
    font-style: italic;
    color: var(--ocean);
}

.detail-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
}

.detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.spec-label {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 3px;
}

.spec-value {
    font-size: 14px;
}

.detail-cta {
    position: absolute;
    bottom: 40px;
}

.detail-read-more {
    color: var(--ocean);
    padding-bottom: 2px;
    text-decoration: none;
    transition: color 0.25s, border 0.25s;
}

.detail-read-more:hover {
    color: var(--ocean-light);
}

#capsule-house, #apple-cabin, #prefab-kitchen, #v6-frame {
    scroll-margin-top: 80px ;
}

#capsule-house {
    padding-top: 80px;
}

#v6-frame {
    padding-bottom: 80px;
}



/* CONTACT PAGE CSS */

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: var(--white);
}

.contact-left {
    background: linear-gradient(160deg, var(--ocean-darkest), var(--ocean-deep));
    padding: 80px 12% 80px 24%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 24px);
}

.contact-left-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-left-title span {
    font-style: italic;
    color: var(--turq-pale);
}

.contact-left-text {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--turq-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    height: 16px;
    width: 16px;
    stroke: var(--turq-pale);
    fill: var(--turq-pale);
}

.contact-info-title {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
}

.contact-info-text {
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.redirect:hover {
    color: var(--turquoise);
}

.contact-right {
    display: flex;
    flex-direction: column;
    padding: 80px 16% 80px 10%;
}

.contact-right-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-right-title span {
    font-style: italic;
    color: var(--ocean);
}

.contact-right-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.form-col label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.form-col input {
    background: var(--white);
    border: 1px solid var(--sky-light);
    color: var(--text-dark);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s,;
    margin-bottom: 16px;
    width: 100%;
}

.your_message {
    resize: vertical;
    outline: none;
    background: var(--white);
    border: 1px solid var(--sky-light);
    color: var(--text-dark);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    padding: 13px 16px;
}

.form-col input:focus, .your_message:focus {
    border-color: var(--ocean);
}

.contact-products-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
}


.contact-product {
    font-size: 12px;
    color: var(--text-mid);
    border: 1px solid var(--sky-light);
    padding: 8px 16px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.2s;
    user-select: none;
    transition: background 0.25s, color 0.25s;
}

.contact-product.selected {
    background: var(--ocean);
    color: var(--white);
}

.button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
}

.button-container p {
    font-size: 12px;
    color: var(--text-light);
}

.submit-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ocean);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s;
    margin-right: 20px;
}

.submit-btn:hover {
    background: var(--ocean-light);
}

.faq-container {
    display: flex;
    padding: 80px 10%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--sky-pale);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
    width: 100%;
}

.faq-item {
    background: var(--white);
    padding: 28px 32px;
    cursor: pointer;
    width: 100%;
}

.faq-q {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-toggle {
    font-size: 20px;
    color: var(--turquoise);
    transition: transform 0.3s;
}

.faq-a {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-top: 14px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

/* ABOUT page */

.timeline-container {
    background: var(--sky-pale);
    padding: 80px 0;
}

.timeline-container-top {
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--white);
    top: 0;
    bottom: 0;
    left: 50%;
}

.container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -15px;
    background-color: white;
    border: 4px solid var(--gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--white);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--white);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.right::after {
    left: -10px;
}

.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

.content h2 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--turquoise);
    margin-bottom: 10px;

}

.content nav {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-mid);
}

.about-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, var(--ocean-darkest) 0%, var(--ocean-deep) 60%, var(--ocean) 100%);
    padding: 40px 10%;
    position: relative;
}

.about-cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 24px);
}

.about-cta-eyebrow {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 32px;
}

.about-cta-text {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    font-weight: 300;
    margin: 32px 0;
    max-width: 400px;
}

.about-cta-button {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s;
}

.about-cta-button:hover {
    background: var(--gold-light);
}


/* FOOTER CSS */

footer {
    background: var(--ocean-darkest);
    padding: 40px 8%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
}

.footer-logo-jaya {
    color: var(--white);
    font-size: 22px;
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer-logo-jaya span {
    color: var(--turquoise);
}

.footer-logo-sub {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 9px;
}

.footer-text {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 240px;
    margin-top: 12px;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 24px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-col-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-bottom-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

.footer-bottom-socials {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.footer-social {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.footer-social:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
}

/* INDIVIDUAL PRODUCT PAGES */
.product-title-container {
    padding: 40px 10% 0px 10%;
    background: var(--sky-pale);
}

.product-title-container h1 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--text-dark);
}

.product-title-container span {
    font-style: italic;
    color: var(--ocean);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    padding: 40px 10%;
    background: var(--sky-pale);
    gap: 6px;
}

.gallery-main {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/7;
    background: var(--white);
}

.gallery-main img {
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}


.gallery-main img.switching {
    opacity: 0;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 58, 80, 0.55);
    border: none;
    color: var(--white);
    font-size: 18px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.gallery-arrow:hover {
    background: var(--ocean);
}

.gallery-arrow--prev { left: 16px; }
.gallery-arrow--next { right: 16px; }

.gallery-counter {
    position: absolute;
    bottom: 14px;
    right: 16px;
    background: rgba(10, 58, 80, 0.6);
    color: var(--white);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    pointer-events: none;
}

.gallery-strip-wrap {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.gallery-strip-wrap::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-strip {
    display: flex;
    gap: 6px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 110px;
    height: 74px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    opacity: 0.85;
}

.gallery-thumb:hover img {
    transform: scale(1.06);
}

.gallery-thumb.active {
    opacity: 1;
}

.gallery-thumb.active::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--turquoise);
    pointer-events: none;
}

.product-info {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
    padding: 40px 10%;
    background: var(--off-white);
}

.product-info-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.product-info-title em {
    font-style: italic;
    color: var(--ocean);
}

.product-info-description {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--sky-light);
    margin-bottom: 36px;
}

.product-info-description p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ── RIGHT — STATS CARD ──────────────────── */
.product-info-right {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.product-stats-card {
    background: var(--white);
    border: 1px solid var(--sky-light);
    padding: 28px;
}

.stats-card-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 16px;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.stats-table tr {
    border-bottom: 1px solid var(--sky-light);
}

.stats-table tr:first-child {
    border-top: 1px solid var(--sky-light);
}

.stats-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 12px 0;
    width: 45%;
}

.stats-value {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dark);
    padding: 12px 0;
}

.stats-card-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}




/* Toast Notification */

.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e8e2df;
    box-shadow: 0 8px 32px rgba(26, 22, 20, 0.12);
    padding: 18px 20px;
    max-width: 360px;
    width: calc(100vw - 48px);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    box-sizing: border-box;
}

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

.toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: #e8f5e8;
    color: #2d7a2d;
}

.toast-error .toast-icon {
    background: #f9ece8;
    color: #C1502E;
}

.toast-success {
    border-left: 3px solid #2d7a2d;
}

.toast-error {
    border-left: 3px solid #C1502E;
}

.toast-body {
    flex: 1;
}

.toast-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1614;
    margin-bottom: 3px;
}

.toast-message {
    font-size: 10px;
    color: #7a6d68;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    font-size: 11px;
    color: #7a6d68;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #C1502E;
}

/* ANIMATION CLASSES */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children with delay modifiers */
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }


/* MEDIA QUERIES */

@media (max-width: 1300px) {
    .gallery-main {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 1100px) {
    .hero-item {
        max-width: 300px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 40px 10%;
    }
}

@media (max-width: 950px) {
    .detail-cta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: static;
    }

    .detail-read-more {
        margin-left: 0px;
        margin-top: 12px;
    }

    .product-detail-right {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        align-items: center;
    }
    .product-detail img {
        height: auto;
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .header-links {
        display: none;
    }

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

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        justify-content: start;
        margin-top: 40px;
    }

    .section-type-2 {
        display: flex;
        grid-template-columns: none;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 40px;
    }
}

@media (max-width: 800px) {
    .products-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .product-info {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-random-part {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-col-title {
        margin-bottom: 18px;
    }

    .footer-col-links {
        gap: 14px;
    }

    .footer-bottom-copy {
        margin-bottom: 14px;
    }
}

@media (max-width: 700px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-left {
        order: -1;
        padding: 20px;
    }

    .faq-grid {
        margin-top: 12px;
    }

    .contact-products-row {
        display: grid;
        gap: 12px;
        margin-bottom: 16px;
        grid-template-columns: repeat(5, 1fr);
    }

    .timeline::after {
        left: 31px;
    }
  
    .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
  
    .container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after, .right::after {
        left: 21px;
    }
  
    .right {
        left: 0%;
    }
}

@media (max-width: 600px) {
    .contact-products-row {
        display: grid;
        gap: 12px;
        margin-bottom: 16px;
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-main {
        aspect-ratio: 16/12;
    }
}

@media (max-width: 550px) {
    .home-cta-container {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {
    .drawer {
        width: 250px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .label-type-2 {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }

    .gallery-arrow {
        width: 30px;
        height: 30px;
    }

    .product-stats-card {
        padding: 20px;
    }
}

@media (max-width: 452px) {
    .section-type-2-cta-container {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-slider {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .products-grid {
        grid-template-columns: repeat(1,1fr);
    }

    .contact-item {
        gap: 12px;
    }
}