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

:root {
    --ink: #17342f;
    --ink-soft: #31564d;
    --pine: #1f463f;
    --cedar: #7a4d3f;
    --gold: #b9823f;
    --gold-light: #d7b56d;
    --cream: #fff8ec;
    --warm-white: #f6efe2;
    --mist: #e9f0e8;
    --sage: #cfdccf;
    --stone: #69776f;
    --white: #ffffff;
    --border: rgba(31, 70, 63, 0.14);
    --border-dark: rgba(185, 130, 63, 0.34);
    --shadow-soft: 0 20px 60px rgba(31, 70, 63, 0.12);
    --shadow-card: 0 18px 44px rgba(31, 70, 63, 0.10);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 8%, rgba(215, 181, 109, 0.16), transparent 30rem),
        linear-gradient(180deg, var(--cream) 0%, var(--mist) 48%, #fffaf2 100%);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

::selection {
    background: rgba(185, 130, 63, 0.24);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events: none;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(185, 130, 63, 0.74);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.18s ease, height 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
    z-index: 9998;
    pointer-events: none;
}

.cursor-ring.expand {
    width: 58px;
    height: 58px;
    border-color: var(--pine);
    opacity: 0.45;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 3.5rem;
    background: rgba(255, 248, 236, 0.78);
    border-bottom: 1px solid rgba(31, 70, 63, 0.08);
    backdrop-filter: blur(18px);
    transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

nav.scrolled {
    padding-block: 0.9rem;
    background: rgba(255, 248, 236, 0.96);
    box-shadow: 0 10px 34px rgba(31, 70, 63, 0.10);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--pine);
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-transform: none;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.7rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--ink-soft);
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.24s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.42rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.28s var(--ease);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links .nav-cta {
    padding: 0.76rem 1rem;
    background: var(--pine);
    color: var(--cream);
    border: 1px solid rgba(255, 248, 236, 0.2);
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    background: var(--gold);
    color: #fffaf2;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.6);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 1px;
    background: var(--pine);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) contrast(0.96);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 248, 236, 0.74) 40%, rgba(255, 248, 236, 0.18) 76%),
        linear-gradient(0deg, rgba(23, 52, 47, 0.12), rgba(255, 248, 236, 0.10));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 2rem;
}

.hero-eyebrow,
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label.center {
    justify-content: center;
}

.eyebrow-line,
.label-line {
    width: 44px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow-text,
.label-text {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.hero-title,
.hero-title-line2,
h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    color: var(--pine);
}

.hero-title {
    margin-top: 1.2rem;
    font-size: 6.5rem;
    line-height: 0.88;
}

.hero-title-line2 {
    font-size: 6.5rem;
    line-height: 0.95;
    font-style: italic;
    color: var(--cedar);
}

.hero-desc {
    max-width: 520px;
    margin-top: 1.8rem;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

.btn-gold,
.btn-ghost,
.form-submit,
.pkg-enquire-btn,
.sticky-lead-enquire,
.sticky-lead-whatsapp,
.quick-link,
.footer-privacy a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-decoration: none;
    border: 1px solid transparent;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold,
.form-submit,
.pkg-enquire-btn,
.sticky-lead-enquire {
    padding: 0.95rem 1.35rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fffaf2;
    box-shadow: 0 12px 28px rgba(185, 130, 63, 0.22);
}

.btn-gold:hover,
.form-submit:hover,
.pkg-enquire-btn:hover,
.sticky-lead-enquire:hover {
    transform: translateY(-2px);
    background: var(--pine);
    box-shadow: 0 16px 32px rgba(31, 70, 63, 0.18);
}

.btn-ghost {
    padding: 0.95rem 1.25rem;
    color: var(--pine);
    border-color: rgba(31, 70, 63, 0.28);
    background: rgba(255, 248, 236, 0.72);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.9);
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    right: 3.5rem;
    bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--pine);
}

.scroll-bar {
    width: 1px;
    height: 54px;
    background: linear-gradient(var(--gold), transparent);
}

.scroll-text {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.62rem;
    font-weight: 700;
}

section {
    position: relative;
}

.enquiry-section {
    padding: 7rem 4rem;
    background:
        radial-gradient(circle at 18% 14%, rgba(215, 181, 109, 0.16), transparent 28rem),
        linear-gradient(135deg, #fffaf2 0%, #eef4eb 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.enquiry-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.enquiry-inner > h2,
.packages-header h2,
.seasons-header h2 {
    font-size: 4rem;
    line-height: 1.05;
    text-align: center;
}

h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.enquiry-inner > p,
.packages-header p {
    max-width: 650px;
    margin: 1.1rem auto 0;
    color: var(--stone);
    text-align: center;
    line-height: 1.8;
}

.enquiry-trust {
    color: var(--gold) !important;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.enquiry-grid {
    margin-top: 3.4rem;
    max-width: 940px;
    margin-inline: auto;
}

.form-shell {
    position: relative;
    padding: 1px;
    background: linear-gradient(135deg, rgba(185, 130, 63, 0.48), rgba(31, 70, 63, 0.18), rgba(255, 255, 255, 0.74));
    box-shadow: 0 28px 70px rgba(31, 70, 63, 0.13);
}

.form-shell::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    width: 72px;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
}

.enquiry-form,
.pkg-card,
.season-card {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.enquiry-form {
    position: relative;
    padding: 2.8rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.86)),
        var(--white);
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.enquiry-form::after {
    content: '';
    position: absolute;
    left: 2.8rem;
    right: 2.8rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 130, 63, 0.32), transparent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.form-group label {
    font-size: 0.64rem;
    color: var(--pine);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(31, 70, 63, 0.12);
    background: rgba(255, 248, 236, 0.58);
    color: var(--ink);
    padding: 1.08rem 1.15rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(49, 86, 77, 0.48);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #fffdf8;
    box-shadow: 0 0 0 4px rgba(185, 130, 63, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.form-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    min-height: 56px;
    margin-top: 0.3rem;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.82;
}

.form-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 0;
    padding: 1.1rem 2.8rem 2.4rem;
    background: rgba(255, 255, 255, 0.82);
}

.quick-link {
    min-height: 52px;
    padding: 0.95rem 1rem;
    background: rgba(255, 248, 236, 0.72);
    border-color: var(--border);
    color: var(--pine);
}

.quick-link:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    color: var(--gold);
    background: #fffdf8;
}

.quick-link-whatsapp {
    color: #1f7a55;
}

.c-label,
.pkg-duration,
.tier-label,
.season-months {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.c-value {
    display: block;
    margin-top: 0.55rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.c-value a {
    text-decoration: none;
    color: var(--pine);
}

.c-value a:hover {
    color: var(--gold);
}

.philosophy,
.crafted {
    display: block;
}

.philosophy {
    background:
        radial-gradient(circle at 50% 14%, rgba(215, 181, 109, 0.13), transparent 24rem),
        var(--cream);
    text-align: center;
}

.philosophy-left,
.crafted-content {
    padding: 6.5rem 4rem;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-left {
    background: transparent;
    align-items: center;
}

.philosophy .section-label {
    justify-content: center;
}

.philosophy h2,
.crafted h2 {
    margin-top: 1.4rem;
    font-size: 4.6rem;
    line-height: 1.02;
}

.philosophy h2 {
    max-width: 900px;
}

.philosophy p,
.crafted-content > p {
    margin-top: 1.4rem;
    color: var(--stone);
    line-height: 1.9;
    max-width: 610px;
}

.philosophy p {
    max-width: 760px;
}

.philosophy-signature {
    margin-top: 2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.1rem;
    color: var(--gold);
    font-style: italic;
}

.frame {
    padding: 6.5rem 4rem;
    background:
        linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(233, 240, 232, 0.72)),
        var(--warm-white);
}

.frame-header {
    max-width: 850px;
    margin: 0 auto 3rem;
    text-align: center;
}

.frame-header h2 {
    margin-top: 1.4rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.6rem;
    line-height: 1.02;
    color: var(--pine);
}

.frame-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.frame-header p {
    margin-top: 1.2rem;
    color: var(--stone);
    line-height: 1.85;
    max-width: 620px;
    margin-inline: auto;
}

.frame-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.frame-item {
    margin: 0;
    position: relative;
    padding: 0.55rem;
    background: var(--cream);
    border: 1px solid var(--border-dark);
    box-shadow: 8px 8px 0 rgba(185, 130, 63, 0.12);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.frame-item:hover {
    transform: translateY(-4px);
    box-shadow: 12px 14px 0 rgba(185, 130, 63, 0.16);
}

.frame-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.packages,
.seasons {
    padding: 6.5rem 4rem;
}

.packages-header,
.seasons-header {
    max-width: 850px;
    margin: 0 auto 3rem;
    text-align: center;
}

.packages {
    background:
        linear-gradient(180deg, rgba(207, 220, 207, 0.46), rgba(255, 248, 236, 0.98)),
        var(--mist);
}

.packages-grid,
.seasons-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 1.2rem;
}

.packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pkg-card {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pkg-card.recommended {
    border-color: var(--border-dark);
    box-shadow: 0 22px 58px rgba(185, 130, 63, 0.16);
}

.pkg-card.recommended::before {
    content: 'Recommended';
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.42rem 0.58rem;
    background: rgba(185, 130, 63, 0.1);
    border: 1px solid var(--border-dark);
    color: var(--gold);
    font-size: 0.56rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.pkg-name {
    margin-top: 0.65rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.35rem;
    color: var(--pine);
}

.pkg-includes {
    margin: 1.2rem 0 1.6rem;
    padding-left: 1rem;
    color: var(--stone);
    line-height: 1.75;
}

.pkg-includes li {
    padding-left: 0.35rem;
}

.pkg-includes li::marker {
    color: var(--gold);
}

.pkg-tiers {
    display: grid;
    gap: 0.85rem;
    margin-top: auto;
}

.tier-block {
    border: 1px solid var(--border);
    background: rgba(255, 248, 236, 0.66);
    padding: 1rem;
}

.tier-header,
.tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tier-stars {
    color: var(--gold);
    font-size: 0.78rem;
    white-space: nowrap;
}

.tier-rows {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.55rem;
}

.tier-row {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.tier-price {
    color: var(--pine);
    font-weight: 700;
    text-align: right;
}

.pkg-enquire-btn {
    margin-top: 1.2rem;
    width: 100%;
}

.crafted {
    background:
        linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(233, 240, 232, 0.88)),
        var(--mist);
}

.crafted-content {
    background: transparent;
}

.crafted-features {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.crafted-feat {
    padding: 1.1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.62);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.crafted-feat:hover {
    transform: translateY(-3px);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-card);
}

.feat-title {
    display: block;
    color: var(--pine);
    font-weight: 700;
    line-height: 1.4;
}

.feat-desc {
    display: block;
    margin-top: 0.55rem;
    color: var(--stone);
    line-height: 1.7;
    font-size: 0.86rem;
}

.seasons {
    background: linear-gradient(180deg, var(--mist), #fffaf2);
}

.seasons-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.season-card {
    padding: 1.45rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.season-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-dark);
}

.season-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(185, 130, 63, 0.1);
    border: 1px solid var(--border-dark);
    color: var(--gold);
    font-size: 1.3rem;
}

.season-name {
    margin-top: 1.2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: var(--pine);
}

.season-months {
    margin-top: 0.35rem;
}

.season-desc {
    margin-top: 1rem;
    color: var(--stone);
    line-height: 1.7;
    font-size: 0.9rem;
}

.season-highlights {
    margin-top: 1rem;
    padding-left: 1rem;
    color: var(--ink-soft);
    font-size: 0.84rem;
    line-height: 1.7;
}

.season-highlights li::marker {
    color: var(--gold);
}

footer {
    padding: 5rem 4rem 3.5rem;
    background:
        radial-gradient(circle at 78% 10%, rgba(215, 181, 109, 0.15), transparent 25rem),
        linear-gradient(180deg, #fffaf2 0%, var(--mist) 100%);
    color: var(--ink);
}

.footer-brand {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand .nav-logo {
    align-items: center;
}

footer .logo-main {
    color: var(--pine);
}

footer .logo-tagline {
    color: var(--gold);
}

.footer-brand-desc {
    margin-top: 1.3rem;
    color: var(--stone);
    line-height: 1.8;
    max-width: 560px;
    margin-inline: auto;
}

.footer-contact {
    position: relative;
    max-width: 1180px;
    margin: 3rem auto 0;
    padding: 0.65rem;
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 1fr;
    gap: 1px;
    background: linear-gradient(135deg, rgba(185, 130, 63, 0.45), rgba(31, 70, 63, 0.14), rgba(255, 255, 255, 0.84));
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(31, 70, 63, 0.13);
}

.footer-contact::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent 38%, rgba(31, 70, 63, 0.18));
    z-index: 1;
}

.footer-contact-item {
    position: relative;
    padding: 2.25rem 1.65rem 1.9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 250, 242, 0.84)),
        var(--white);
    border-bottom: 0;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.footer-contact-item::after {
    content: '';
    position: absolute;
    right: 1.2rem;
    bottom: 1.1rem;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(185, 130, 63, 0.18);
    transform: rotate(45deg);
}

.footer-contact-item:first-child {
    padding-top: 2.25rem;
}

.footer-contact-item:last-child {
    border-bottom: 0;
}

.footer-contact .c-label {
    position: relative;
    z-index: 1;
    letter-spacing: 0.24em;
}

.footer-contact .c-value {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: clamp(1.08rem, 1.45vw, 1.38rem);
    line-height: 1.6;
    color: var(--pine);
    overflow-wrap: anywhere;
}

.footer-contact .c-value a {
    color: var(--pine);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    color: var(--stone);
    font-size: 0.86rem;
}

.footer-privacy a {
    min-height: auto;
    padding: 0;
    color: var(--gold);
}

.sticky-lead-bar {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

.reveal-delay-3 {
    transition-delay: 0.32s;
}

@media (max-width: 1100px) {
    nav {
        padding-inline: 2rem;
    }

    .hero,
    .enquiry-section,
    .frame,
    .packages,
    .seasons,
    footer {
        padding-inline: 2rem;
    }

    .frame-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-title,
    .hero-title-line2 {
        font-size: 5.2rem;
    }

    .seasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    nav {
        padding: 1rem 1.2rem;
    }

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0;
        padding: 0.6rem;
        background: rgba(255, 248, 236, 0.98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-card);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        display: block;
        padding: 0.95rem;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        min-height: 92vh;
        padding: 7rem 1.25rem 4rem;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(255, 248, 236, 0.94), rgba(255, 248, 236, 0.68) 58%, rgba(255, 248, 236, 0.92)),
            rgba(255, 248, 236, 0.18);
    }

    .hero-title,
    .hero-title-line2 {
        font-size: 4.1rem;
    }

    .hero-scroll {
        display: none;
    }

    .enquiry-section,
    .frame,
    .packages,
    .seasons,
    footer {
        padding: 4.5rem 1.25rem;
    }

    .enquiry-inner > h2,
    .frame-header h2,
    .packages-header h2,
    .seasons-header h2,
    .philosophy h2,
    .crafted h2 {
        font-size: 3.2rem;
    }

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

    .enquiry-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-left,
    .crafted-content {
        padding: 4.5rem 1.25rem;
    }

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

    .footer-contact-item {
        min-height: auto;
        padding: 1.9rem 1.35rem 1.7rem;
    }

    .sticky-lead-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: 1fr 1fr;
        transform: translateY(100%);
        transition: transform 0.24s ease;
        box-shadow: 0 -10px 32px rgba(31, 70, 63, 0.16);
    }

    .sticky-lead-bar.visible {
        transform: translateY(0);
    }

    .sticky-lead-enquire,
    .sticky-lead-whatsapp {
        min-height: 56px;
        padding: 0.9rem;
    }

    .sticky-lead-whatsapp {
        background: #1f7a55;
        color: #fff;
    }

    body.has-sticky-bar {
        padding-bottom: 56px;
    }
}

@media (max-width: 640px) {
    .logo-main {
        font-size: 1.02rem;
        letter-spacing: 0.13em;
    }

    .logo-tagline {
        font-size: 0.58rem;
        white-space: normal;
    }

    .hero-title,
    .hero-title-line2 {
        font-size: 3.25rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-actions,
    .form-quick-links,
    .form-row,
    .crafted-features,
    .seasons-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-gold,
    .btn-ghost {
        width: 100%;
    }

    .enquiry-form,
    .pkg-card {
        padding: 1.25rem;
    }

    .enquiry-form::after {
        left: 1.25rem;
        right: 1.25rem;
    }

    .form-quick-links {
        padding: 1rem 1.25rem 1.25rem;
    }

    .footer-contact {
        padding: 0.45rem;
    }

    .footer-contact::before {
        top: 0.45rem;
        left: 0.45rem;
        right: 0.45rem;
    }

    .tier-header,
    .tier-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .tier-price {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
