/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: #F5F1E8;
    color: #171717;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
iframe {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

:root {
    --background: #F5F1E8;
    --background-soft: #EDE7DA;
    --forest: #123C2F;
    --forest-deep: #0D2F25;
    --forest-dark: #09251D;
    --gold: #C6A15B;
    --gold-light: #D7BA7A;
    --text: #171717;
    --text-light: #F5F1E8;
    --muted: #77736C;
    --line: rgba(18, 60, 47, 0.18);
    --line-light: rgba(245, 241, 232, 0.20);
    --green-status: #25A35A;
    --red-status: #D23B3B;
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Inter", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 0.95;
}

em {
    font-style: italic;
    font-weight: 400;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section {
    padding: 130px 7vw;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(18, 60, 47, 0.97);
    color: var(--text-light);
    border-bottom: 1px solid rgba(198, 161, 91, 0.35);
    z-index: 1000;
    transition: height 0.35s ease, padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.header.scrolled {
    height: 60px;
    padding: 0 4vw;
    background: rgba(13, 47, 37, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.header.mouse-expanded {
    height: 88px;
    padding: 0 5vw;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.logo span {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.logo small {
    margin-top: 5px;
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--gold);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav > a {
    position: relative;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.desktop-nav > a:not(.shop-status)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.desktop-nav > a:not(.shop-status):hover::after {
    width: 100%;
}

.desktop-nav > a:hover {
    color: var(--gold-light);
}

.shop-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.shop-status:hover {
    opacity: 0.8;
    color: var(--gold-light);
}

.status-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background: var(--green-status);
    box-shadow: 0 0 0 2px rgba(37, 163, 90, 0.15);
    animation: openPulse 1.5s ease-in-out infinite;
}

.status-dot.closed {
    background: var(--red-status);
    animation: none;
}

@keyframes openPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.82);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
}

.menu-button span {
    position: absolute;
    left: 8px;
    width: 28px;
    height: 1px;
    background: var(--gold-light);
    transition: transform 0.25s ease, top 0.25s ease;
}

.menu-button span:first-child {
    top: 17px;
}

.menu-button span:last-child {
    top: 26px;
}

.menu-button.active span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.menu-button.active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: 100svh;
    padding: 170px 7vw 90px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
    color: var(--text-light);
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    color: var(--gold-light);
}

.hero h1 {
    margin-top: 22px;
    font-family: var(--serif);
    font-size: clamp(70px, 11vw, 170px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.82;
}

.hero h1 span {
    font-size: 0.55em;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--gold-light);
}

.hero-rule {
    width: 80px;
    height: 1px;
    margin: 34px 0;
    background: var(--gold);
}

.hero-description {
    max-width: 580px;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.35;
    color: rgba(245, 241, 232, 0.88);
}

.hero-year {
    margin-top: 20px;
    font-family: var(--serif);
    font-size: 25px;
    color: var(--gold-light);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.arrow-link span {
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.2s ease;
}

.arrow-link:hover span {
    transform: translateX(5px);
}

.hero-year-mark {
    position: absolute;
    right: 5vw;
    bottom: 8vh;
    font-family: var(--serif);
    font-size: clamp(100px, 18vw, 300px);
    line-height: 0.7;
    color: rgba(198, 161, 91, 0.09);
    pointer-events: none;
}

.intro {
    background: var(--background);
    border-top: 1px solid var(--line);
}

.intro-label {
    margin-bottom: 70px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--forest);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 10vw;
}

.intro-content h2 {
    font-size: clamp(58px, 7vw, 110px);
    letter-spacing: -0.04em;
    color: var(--forest);
}

.intro-content h2 em {
    color: var(--gold);
}

.intro-text {
    max-width: 650px;
}

.large-text {
    font-family: var(--serif);
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.1;
    margin-bottom: 38px;
    color: var(--forest);
}

.intro-text p:not(.large-text) {
    margin-bottom: 22px;
    font-size: 17px;
    color: #5F5B55;
    max-width: 580px;
}

.statement {
    min-height: 80vh;
    padding: 140px 7vw;
    display: flex;
    align-items: center;
    background: var(--forest);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.statement::after {
    content: "1947";
    position: absolute;
    right: 4vw;
    bottom: -45px;
    font-family: var(--serif);
    font-size: clamp(180px, 24vw, 380px);
    line-height: 1;
    color: rgba(198, 161, 91, 0.08);
    pointer-events: none;
}

.statement-inner {
    width: 100%;
    position: relative;
    z-index: 2;
}

.statement-inner > p {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase;
}

.statement h2 {
    margin-top: 40px;
    font-family: var(--serif);
    font-size: clamp(75px, 12vw, 190px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.05em;
    color: var(--text-light);
}

.statement h2 em {
    color: var(--gold-light);
    font-style: italic;
    font-weight: 400;
}

.services {
    background: var(--background);
}

.section-heading {
    margin-bottom: 80px;
}

.section-heading h2 {
    margin-top: 18px;
    font-size: clamp(65px, 9vw, 140px);
    letter-spacing: -0.05em;
    color: var(--forest);
}

.section-heading h2 em {
    color: var(--gold);
}

.services-list {
    border-top: 1px solid var(--line);
}

.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.service-name {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 58px);
    color: var(--forest);
}

.service-description {
    max-width: 500px;
}

.service-description p {
    font-size: 17px;
    color: #5F5B55;
}

.tailor-stats {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.tailor-stat {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.tailor-stat strong {
    font-family: var(--serif);
    font-size: clamp(80px, 10vw, 150px);
    line-height: 0.75;
    color: var(--gold);
    flex-shrink: 0;
}

.tailor-stat div {
    display: flex;
    flex-direction: column;
}

.tailor-stat span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--forest);
}

.tailor-stat p {
    max-width: 280px;
    margin-top: 12px;
    color: var(--muted);
}

.dark-section {
    background: var(--forest-deep);
    color: var(--text-light);
}

.dark-section .eyebrow {
    color: var(--gold);
}

.enquire-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10vw;
}

.enquire-intro h2 {
    margin-top: 25px;
    font-size: clamp(60px, 8vw, 125px);
    letter-spacing: -0.05em;
}

.enquire-intro h2 em {
    color: var(--gold-light);
}

.enquire-copy {
    margin-top: 45px;
    max-width: 450px;
    font-size: 17px;
    color: rgba(245, 241, 232, 0.65);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gold-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.3);
    border-radius: 0;
    background: transparent;
    color: var(--text-light);
    padding: 10px 0 14px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 241, 232, 0.4);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
}

.form-group select option {
    background: var(--forest-deep);
    color: #fff;
}

.submit-button,
.check-button {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.submit-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest-deep);
}

.submit-button strong,
.check-button strong {
    color: var(--gold);
}

.submit-button:hover strong {
    color: var(--forest-deep);
}

.form-note {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(245, 241, 232, 0.5);
}

.form-success {
    display: none;
    margin-top: 20px;
    color: #9DD7B0;
}

.form-success.show {
    display: block;
}

.form-error {
    display: none;
    margin-top: 20px;
    color: #D23B3B;
}

.form-error.show {
    display: block;
}

/* =====================================================
   ORDER SECTION - WITH COMING SOON BANNER
===================================================== */

.order-section {
    background: var(--background-soft);
    position: relative;
}

/* COMING SOON BANNER - BIG RED BOX */
.coming-soon-banner {
    background: #D23B3B;
    padding: 18px 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px rgba(210, 59, 59, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid #ff6b6b;
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    animation: bannerShimmer 8s linear infinite;
}

@keyframes bannerShimmer {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

.coming-soon-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.banner-icon {
    font-size: 28px;
    animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.banner-text {
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-subtext {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pulse animation for attention */
.coming-soon-banner {
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(210, 59, 59, 0.3);
    }
    50% {
        box-shadow: 0 8px 50px rgba(210, 59, 59, 0.6);
    }
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
}

.order-intro h2 {
    margin-top: 20px;
    font-size: clamp(60px, 8vw, 120px);
    letter-spacing: -0.05em;
    color: var(--forest);
}

.order-intro h2 em {
    color: var(--gold);
}

.order-intro p:not(.eyebrow) {
    margin-top: 35px;
    max-width: 450px;
    color: #65615A;
}

.order-form {
    max-width: 600px;
}

.demo-notice {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid rgba(198, 161, 91, 0.5);
    background: rgba(198, 161, 91, 0.08);
}

.demo-notice > span {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: var(--gold);
    color: var(--forest-deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.demo-notice p {
    font-size: 13px;
    color: #65615A;
}

.demo-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.demo-details div {
    padding: 15px;
    background: rgba(18, 60, 47, 0.06);
    border-left: 2px solid var(--gold);
}

.demo-details small {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.demo-details strong {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--forest);
}

.order-form .form-group input {
    color: var(--text);
    border-bottom-color: var(--line);
}

.order-form .form-group input::placeholder {
    color: #85817A;
}

.order-form .form-group label {
    color: var(--forest);
}

.check-button {
    color: var(--forest);
    border-color: var(--forest);
}

.check-button:hover {
    background: var(--forest);
    color: var(--text-light);
}

.check-button:hover strong {
    color: var(--gold-light);
}

.order-result {
    display: none;
    margin-top: 25px;
    padding: 25px;
    border: 1px solid rgba(198, 161, 91, 0.55);
    background: rgba(18, 60, 47, 0.06);
    font-size: 14px;
}

.order-result.show {
    display: block;
}

.order-result strong {
    display: block;
    margin-bottom: 14px;
    font-family: var(--serif);
    font-size: 25px;
    color: var(--forest);
}

.order-result .result-label {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.order-result p {
    color: #5F5B55;
}

.souq-description {
    max-width: 800px;
    margin-bottom: 45px;
    padding: 25px 30px;
    background: rgba(198, 161, 91, 0.08);
    border-left: 3px solid var(--gold);
}

.souq-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #5F5B55;
    margin: 0;
}

.contact {
    background: var(--background);
}

.contact-heading {
    margin-bottom: 90px;
}

.contact-heading h2 {
    margin-top: 20px;
    font-size: clamp(70px, 10vw, 150px);
    letter-spacing: -0.05em;
    color: var(--forest);
}

.contact-heading h2 em {
    color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.contact-label {
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.contact-column h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--forest);
}

.contact-column > p:not(.contact-label) {
    color: #65615A;
    font-size: 15px;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-number {
    display: block;
    font-family: var(--serif);
    font-size: 27px;
    color: var(--forest);
    white-space: nowrap;
}

.contact-number:hover {
    color: var(--gold);
}

.contact-note {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.email-link {
    display: block;
    font-family: var(--serif);
    font-size: clamp(18px, 1.7vw, 27px);
    white-space: nowrap;
    color: var(--forest);
}

.email-link:hover {
    color: var(--gold);
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hours div {
    display: flex;
    flex-direction: column;
}

.hours strong {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--forest);
}

.hours span {
    color: #65615A;
    font-size: 14px;
}

.map-container {
    margin-top: 90px;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.closing {
    min-height: 80vh;
    padding: 120px 7vw;
    display: flex;
    align-items: center;
    background: var(--forest-deep);
    color: var(--text-light);
}

.closing .eyebrow {
    color: var(--gold);
}

.closing h2 {
    margin-top: 25px;
    font-size: clamp(75px, 12vw, 180px);
    letter-spacing: -0.05em;
}

.closing h2 em {
    color: var(--gold-light);
}

.footer {
    min-height: 90px;
    padding: 25px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    background: var(--forest-dark);
    color: var(--text-light);
    border-top: 1px solid rgba(198, 161, 91, 0.25);
}

.footer-name {
    font-family: var(--serif);
    font-size: 19px;
    white-space: nowrap;
}

.footer-location {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(245, 241, 232, 0.65);
}

.footer-year {
    text-align: right;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--gold);
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--forest-deep);
}

/* =====================================================
   TABLET / IPAD
===================================================== */

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 18px;
    }
    .desktop-nav > a {
        font-size: 11px;
    }
    .logo span {
        font-size: 18px;
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .email-link {
        white-space: normal;
        overflow-wrap: anywhere;
    }
    .coming-soon-banner {
        padding: 14px 20px;
    }
    .banner-text {
        font-size: 18px;
    }
    .banner-subtext {
        font-size: 12px;
    }
}

/* =====================================================
   MOBILE / TABLETS
===================================================== */

@media (max-width: 900px) {
    .header {
        height: 74px;
        padding: 0 5vw;
    }
    .header.scrolled {
        height: 58px;
        padding: 0 5vw;
    }
    .header.mouse-expanded {
        height: 74px;
    }
    .desktop-nav {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .mobile-menu {
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        padding: 25px 6vw 35px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: rgba(13, 47, 37, 0.99);
        color: var(--text-light);
        border-bottom: 1px solid rgba(198, 161, 91, 0.35);
        z-index: 999;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
    }
    .mobile-menu.open {
        transform: translateY(0);
    }
    .mobile-menu > a {
        font-size: 15px;
        font-weight: 500;
    }
    .mobile-menu > a:hover {
        color: var(--gold-light);
    }
    .mobile-status {
        display: inline-flex;
        width: fit-content;
        align-items: center;
    }
    .hero {
        min-height: 100svh;
        padding: 135px 6vw 70px;
    }
    .hero h1 {
        font-size: clamp(55px, 16vw, 100px);
    }
    .hero-description {
        font-size: 20px;
        max-width: 90%;
    }
    .hero-year-mark {
        display: none;
    }
    .section {
        padding: 90px 6vw;
    }
    .intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .intro-content h2 {
        font-size: clamp(54px, 15vw, 90px);
    }
    .statement {
        min-height: 70vh;
        padding: 100px 6vw;
    }
    .statement h2 {
        font-size: clamp(65px, 17vw, 110px);
    }
    .statement::after {
        font-size: 180px;
        right: -20px;
        bottom: -20px;
    }
    .service {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .tailor-stats {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 60px;
    }
    .enquire-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .order-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .order-form {
        max-width: none;
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 25px;
    }
    .souq-description {
        padding: 18px 22px;
        margin-bottom: 35px;
    }
    .souq-description p {
        font-size: 15px;
    }
    .map-container {
        height: 350px;
        margin-top: 60px;
    }
    .footer {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }
    .footer-location,
    .footer-year {
        text-align: center;
    }
    .coming-soon-banner {
        padding: 12px 16px;
        margin-bottom: 35px;
    }
    .coming-soon-banner-content {
        gap: 10px;
    }
    .banner-icon {
        font-size: 22px;
    }
    .banner-text {
        font-size: 16px;
        letter-spacing: 0.1em;
    }
    .banner-subtext {
        font-size: 11px;
        padding: 3px 12px;
    }
}

/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }
    .header {
        height: 68px;
    }
    .header.scrolled {
        height: 56px;
    }
    .mobile-menu {
        top: 68px;
    }
    .logo span {
        font-size: 16px;
        letter-spacing: 0.015em;
    }
    .logo small {
        font-size: 7px;
    }
    .hero {
        padding-top: 120px;
    }
    .hero h1 {
        font-size: clamp(49px, 15vw, 78px);
        line-height: 0.84;
    }
    .hero h1 span {
        font-size: 0.56em;
    }
    .hero-description {
        font-size: 19px;
        max-width: 100%;
    }
    .large-text {
        font-size: 29px;
    }
    .section-heading h2 {
        font-size: clamp(58px, 16vw, 90px);
    }
    .tailor-stat {
        gap: 20px;
    }
    .tailor-stat strong {
        font-size: 80px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .demo-details {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-heading {
        margin-bottom: 60px;
    }
    .contact-heading h2 {
        font-size: clamp(65px, 18vw, 100px);
    }
    .contact-number {
        font-size: 25px;
    }
    .email-link {
        font-size: 20px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .souq-description {
        padding: 15px 18px;
        margin-bottom: 30px;
    }
    .souq-description p {
        font-size: 14px;
    }
    .map-container {
        height: 300px;
    }
    .back-to-top {
        width: 44px;
        height: 44px;
        right: 18px;
        bottom: 18px;
        font-size: 21px;
    }
    .footer-name {
        white-space: normal;
    }
    .coming-soon-banner {
        padding: 10px 14px;
        margin-bottom: 28px;
        border-radius: 8px;
    }
    .coming-soon-banner-content {
        gap: 6px;
        flex-direction: column;
        text-align: center;
    }
    .banner-icon {
        font-size: 20px;
    }
    .banner-text {
        font-size: 14px;
        letter-spacing: 0.08em;
    }
    .banner-subtext {
        font-size: 10px;
        padding: 2px 10px;
    }
}

/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 380px) {
    .logo span {
        font-size: 14px;
    }
    .hero h1 {
        font-size: 46px;
    }
    .hero-description {
        font-size: 18px;
    }
    .banner-text {
        font-size: 12px;
    }
    .banner-subtext {
        font-size: 9px;
    }
}

/* =====================================================
   LANDSCAPE MOBILE
===================================================== */

@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 650px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
}