:root {
    --ink: #1d2b22;
    --forest: #294536;
    --forest-dark: #1f352a;
    --sage: #a7b8a1;
    --sage-light: #dce5d9;
    --cream: #f5f1e8;
    --paper: #fbfaf6;
    --sand: #d7c8b0;
    --clay: #a5785e;
    --white: #ffffff;
    --line: rgba(29, 43, 34, 0.13);
    --shadow: 0 24px 80px rgba(31, 53, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 250, 246, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--forest);
    border-radius: 50% 50% 46% 54%;
    font-family: Georgia, serif;
    font-size: 21px;
    font-style: italic;
}

.brand strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 5px;
    letter-spacing: 0.23em;
    font-size: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    font-size: 14px;
    color: #516058;
    padding: 30px 0 26px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--forest);
    border-bottom-color: var(--forest);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    background:
        radial-gradient(circle at 18% 28%, rgba(167, 184, 161, 0.17), transparent 29%),
        linear-gradient(120deg, var(--cream) 0%, #f8f5ee 51%, #e8ece3 51%, #dfe7db 100%);
}

.hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #68796d;
}

.eyebrow.light {
    color: #cdd8d0;
}

.hero h1,
.page-hero h1,
.admin-shell h1,
.dashboard-top h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(58px, 6.5vw, 94px);
}

.hero-copy > p {
    max-width: 620px;
    margin: 28px 0 0;
    color: #526159;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.btn-primary:hover {
    background: var(--forest-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border-color: rgba(41, 69, 54, 0.35);
}

.btn-light {
    background: var(--cream);
    color: var(--forest);
}

.full-width {
    width: 100%;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 35px;
    color: #617067;
    font-size: 12px;
}

.hero-art {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.product-stage {
    position: relative;
    z-index: 3;
    width: 420px;
    height: 380px;
    border-radius: 50%;
    background: rgba(245, 241, 232, 0.76);
    box-shadow: inset 0 0 0 1px rgba(41, 69, 54, 0.08);
}

.product-stage::after {
    content: "";
    position: absolute;
    left: 44px;
    right: 44px;
    bottom: 58px;
    height: 36px;
    border-radius: 50%;
    background: rgba(49, 63, 53, 0.13);
    filter: blur(14px);
}

.bottle {
    position: absolute;
    z-index: 4;
    left: 176px;
    bottom: 70px;
    width: 112px;
    height: 220px;
    border-radius: 18px 18px 30px 30px;
    background: linear-gradient(90deg, #b1bea8, #d8dfd1 45%, #a5b49c);
    border: 1px solid rgba(41, 69, 54, 0.2);
    box-shadow: 13px 16px 32px rgba(40, 57, 46, 0.18);
}

.dropper {
    position: absolute;
    width: 65px;
    height: 82px;
    left: 23px;
    top: -76px;
    border-radius: 18px 18px 7px 7px;
    background: var(--forest-dark);
}

.dropper::after {
    content: "";
    position: absolute;
    left: 13px;
    bottom: -10px;
    width: 39px;
    height: 14px;
    background: #6c796f;
}

.bottle-label,
.jar-label {
    position: absolute;
    text-align: center;
    color: var(--forest-dark);
}

.bottle-label {
    inset: 62px 10px auto;
}

.jar-label {
    inset: 40px 10px auto;
}

.bottle-label small,
.jar-label small {
    display: block;
    font-size: 8px;
    letter-spacing: 0.18em;
}

.bottle-label strong,
.jar-label strong {
    display: block;
    margin: 8px 0 4px;
    font-family: Georgia, serif;
    font-size: 29px;
    font-weight: 400;
}

.bottle-label span,
.jar-label span {
    display: block;
    font-size: 6px;
    letter-spacing: 0.12em;
}

.jar {
    position: absolute;
    z-index: 5;
    left: 66px;
    bottom: 70px;
    width: 145px;
    height: 125px;
    border-radius: 18px 18px 24px 24px;
    background: linear-gradient(90deg, #e1d4c1, #f2eadf 55%, #cfbfa8);
    border: 1px solid rgba(85, 63, 46, 0.16);
    box-shadow: 10px 15px 28px rgba(53, 46, 39, 0.14);
}

.jar-lid {
    position: absolute;
    left: -4px;
    right: -4px;
    top: -25px;
    height: 32px;
    border-radius: 12px 12px 7px 7px;
    background: linear-gradient(#526656, #2e4738);
}

.leaf {
    position: absolute;
    z-index: 1;
    width: 190px;
    height: 330px;
}

.leaf::before,
.leaf::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 150px;
    background: #698268;
    border-radius: 100% 0 100% 0;
    opacity: 0.86;
}

.leaf-one {
    right: -15px;
    top: 62px;
    transform: rotate(17deg);
}

.leaf-one::before {
    left: 34px;
    top: 15px;
}

.leaf-one::after {
    right: 16px;
    top: 123px;
    transform: rotate(74deg);
}

.leaf-two {
    left: -8px;
    bottom: 26px;
    transform: rotate(-28deg) scale(0.7);
}

.leaf-two::before {
    left: 28px;
}

.leaf-two::after {
    right: 15px;
    top: 105px;
    transform: rotate(70deg);
}

.hero-note {
    position: absolute;
    z-index: 6;
    right: -6px;
    bottom: 24px;
    width: 210px;
    padding: 20px;
    background: rgba(251, 250, 246, 0.9);
    border: 1px solid rgba(41, 69, 54, 0.12);
}

.hero-note span {
    font-family: Georgia, serif;
    color: #93a38f;
}

.hero-note p {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.6;
}

.brand-strip {
    background: var(--forest);
    color: #dbe2dc;
}

.brand-strip .container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    letter-spacing: 0.14em;
}

.section {
    padding: 105px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 55px;
}

.section-heading h2,
.story-copy h2,
.wholesale-box h2,
.ai-grid h2,
.contact-aside h2,
.admin-form-inner h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.section-heading h2,
.story-copy h2,
.ai-grid h2,
.contact-aside h2 {
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
}

.section-heading p {
    margin: 0;
    color: #617067;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-card {
    border: 1px solid var(--line);
    background: #fff;
}

.product-visual {
    min-height: 340px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.serum-card .product-visual {
    background: #dce5d9;
}

.mask-card .product-visual {
    background: #ebe1d4;
}

.hamper-card .product-visual {
    background: #d5ddd0;
}

.mini-bottle {
    position: relative;
    width: 92px;
    height: 185px;
    border-radius: 14px 14px 24px 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, #7b9077, #b5c5ae, #71876f);
    box-shadow: 20px 25px 40px rgba(41, 69, 54, 0.18);
}

.mini-dropper {
    position: absolute;
    top: -65px;
    width: 48px;
    height: 66px;
    border-radius: 13px 13px 5px 5px;
    background: var(--forest);
}

.mini-bottle span,
.mini-jar span {
    font-family: Georgia, serif;
    font-size: 21px;
    letter-spacing: 0.07em;
}

.mini-jar {
    position: relative;
    width: 150px;
    height: 110px;
    border-radius: 17px 17px 24px 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, #d6c4ab, #f0e7db, #cbb69a);
    box-shadow: 20px 25px 40px rgba(95, 72, 50, 0.16);
}

.mini-jar > div {
    position: absolute;
    top: -24px;
    left: -4px;
    right: -4px;
    height: 30px;
    border-radius: 9px 9px 6px 6px;
    background: var(--forest);
}

.gift-box {
    position: relative;
    width: 180px;
    height: 155px;
    display: grid;
    place-items: center;
    background: #f0eadc;
    border: 1px solid rgba(41, 69, 54, 0.15);
    box-shadow: 20px 25px 40px rgba(41, 69, 54, 0.14);
}

.gift-box strong {
    position: relative;
    z-index: 2;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 38px;
    font-weight: 400;
}

.ribbon-v,
.ribbon-h {
    position: absolute;
    background: #71836d;
}

.ribbon-v {
    width: 28px;
    top: 0;
    bottom: 0;
    left: calc(50% - 14px);
}

.ribbon-h {
    height: 28px;
    left: 0;
    right: 0;
    top: calc(50% - 14px);
}

.product-info {
    padding: 27px 28px 31px;
    border-top: 1px solid var(--line);
}

.product-number {
    color: #8b998f;
    font-family: Georgia, serif;
    font-size: 13px;
}

.product-info h3 {
    margin: 10px 0;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
}

.product-info p {
    min-height: 72px;
    margin: 0 0 18px;
    color: #657269;
    font-size: 14px;
}

.product-info a,
.text-link {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--forest);
}

.story-section {
    padding: 105px 0;
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 95px;
    align-items: center;
}

.story-art {
    position: relative;
    min-height: 520px;
    background:
        linear-gradient(rgba(41, 69, 54, 0.04), rgba(41, 69, 54, 0.04)),
        #d8e0d4;
    overflow: hidden;
}

.story-circle {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 45% 45%, #edf0e8 0 20%, #bbc9b5 21% 38%, #7c9578 39% 52%, transparent 53%);
    left: -85px;
    bottom: -80px;
    opacity: 0.82;
}

.story-card {
    position: absolute;
    right: 32px;
    bottom: 32px;
    max-width: 250px;
    padding: 24px;
    background: var(--paper);
}

.story-card span {
    display: block;
    color: #7a887f;
    font-size: 9px;
    letter-spacing: 0.14em;
}

.story-card strong {
    display: block;
    margin-top: 10px;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.story-copy p {
    max-width: 620px;
    color: #5e6c63;
}

.wholesale-section {
    padding: 0 0 105px;
    background: var(--cream);
}

.wholesale-box {
    min-height: 310px;
    padding: 60px 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--forest);
    color: var(--white);
}

.wholesale-box h2 {
    max-width: 690px;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
}

.wholesale-box p {
    max-width: 700px;
    color: #d3ddd6;
}

.ai-section {
    padding: 100px 0;
}

.ai-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.ai-card {
    display: flex;
    gap: 22px;
    padding: 35px;
    border: 1px solid var(--line);
    background: #fff;
}

.ai-icon {
    font-size: 32px;
    color: #84967f;
}

.ai-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 400;
}

.ai-card p {
    margin: 0;
    color: #647168;
}

/* Contact page */
.page-hero {
    padding: 95px 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
}

.page-hero h1 {
    font-size: clamp(58px, 7vw, 90px);
}

.page-hero p {
    max-width: 650px;
    color: #5c6b62;
    font-size: 18px;
}

.contact-meta {
    display: grid;
    align-content: center;
    gap: 15px;
}

.contact-meta > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.contact-meta span {
    font-family: Georgia, serif;
    color: #8ea08c;
}

.contact-meta p {
    margin: 0;
    font-size: 13px;
}

.contact-section {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 80px;
}

.contact-aside {
    padding-top: 22px;
}

.contact-aside h2 {
    font-size: 51px;
}

.contact-aside > p {
    color: #657269;
}

.aside-note {
    display: flex;
    gap: 15px;
    margin-top: 36px;
    padding: 24px;
    background: var(--cream);
}

.aside-note p {
    margin: 0;
    font-size: 13px;
    color: #637067;
}

.form-card {
    padding: 42px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

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

.form-row label,
form > label {
    display: grid;
    gap: 8px;
}

.form-row span,
form > label > span {
    font-size: 12px;
    font-weight: 700;
    color: #4d5c53;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(41, 69, 54, 0.18);
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #7d927b;
    box-shadow: 0 0 0 3px rgba(125, 146, 123, 0.11);
}

textarea {
    resize: vertical;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

/* Dropdown */
.contact-select {
    width: 100%;
    height: 56px;

    padding: 0 48px 0 18px;

    background: #ffffff;
    border: 0.5px solid #5a5a5a;
    border-radius: 16px;

    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;

    cursor: pointer;

    /* Remove browser default arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    outline: none;
}

/* Custom down arrow */
.select-wrapper::after {
    content: "";
    position: absolute;

    right: 20px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-right: 2px solid #222;
    border-bottom: 2px solid #222;

    transform: translateY(-70%) rotate(45deg);

    pointer-events: none;
}

/* Small focus effect */
.contact-select:focus {
    border-color: #222222;
}

/* Optional hover */
.contact-select:hover {
    border-color: #444444;
}

.required-star {
    color: #d93025;
    margin-left: 2px;
}

/* Normal input */
.contact-input {
    width: 100%;
    border: 1px solid #999;
    transition: border-color 0.2s ease;
}

.required-star {
    color: #d93025 !important;
    margin-left: 2px;
    display: inline !important;
    font-size: inherit !important;
}

.contact-input {
    width: 100%;
    border: 1px solid #ddd;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Only added by JavaScript after submit */
.contact-input.is-invalid {
    border: 2px solid #d93025 !important;
    box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.08);
}

.contact-input:focus {
    outline: none;
}

/* Focus */
.contact-input:focus {
    outline: none;
    border-color: #333;
}

.required-star {
    color: #b3261e !important;
    margin-left: 2px;
    display: inline !important;
    font-size: inherit !important;
}

/* Normal field */
.contact-input {
    width: 100%;
    border: 1px solid #ddd;
    transition: border-color 0.2s ease;
}

/* Red only after validation fails */
.contact-input.is-invalid {
    border-color: #b3261e !important;
}

/* Warning is hidden normally */
.field-warning {
    display: none;
    align-items: center;
    gap: 5px;

    margin-top: 5px;

    color: #b3261e;
    font-size: 12px;
    line-height: 1.4;
}

/* Show after invalid submission */
.field-warning.show {
    display: flex;
}

.warning-icon {
    color: #b3261e !important;
    font-size: 10px !important;
    line-height: 1;
}

/* Don't override red invalid field when focused */
.contact-input.is-invalid:focus {
    border-color: #b3261e !important;
    box-shadow: 0 0 0 2px rgba(179, 38, 30, 0.08);
}

.message-counter {
    margin-top: 6px;
    text-align: right;
    font-size: 12px;
    color: #6b746d;
}

.message-counter.limit-reached {
    color: #b3261e;
    font-weight: 600;
}

.form-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.form-submit-row p {
    max-width: 440px;
    margin: 0;
    font-size: 11px;
    color: #738077;
}

.alert {
    margin-bottom: 24px;
    padding: 15px 18px;
    font-size: 13px;
    border: 1px solid;
}

.alert ul {
    margin-bottom: 0;
}

.alert-success {
    color: #31533d;
    background: #edf4ed;
    border-color: #bdd0bd;
}

.alert-error {
    color: #714238;
    background: #f8ece9;
    border-color: #e0bcb4;
}

/* Admin */
.admin-shell {
    min-height: calc(100vh - 82px);
    padding: 55px 20px;
    display: grid;
    place-items: center;
    background: #e8ece5;
}

.admin-login-panel {
    width: min(1000px, 100%);
    min-height: 610px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow);
}

.admin-brand-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--forest);
    color: #fff;
}

.admin-brand-panel .brand {
    color: #fff;
}

.light-mark {
    border-color: rgba(255,255,255,0.8);
}

.admin-brand-panel h1 {
    margin-top: 12px;
    font-size: 67px;
}

.admin-brand-panel p {
    max-width: 390px;
    color: #d8e0da;
}

.security-list {
    display: grid;
    gap: 9px;
    font-size: 12px;
    color: #c9d5cd;
}

.admin-form-panel {
    display: grid;
    place-items: center;
    padding: 48px;
    background: #fff;
}

.admin-form-inner {
    width: min(355px, 100%);
}

.admin-form-inner h2 {
    font-size: 46px;
}

.muted {
    margin-top: 7px;
    color: #77837b;
    font-size: 13px;
}

.demo-note {
    display: grid;
    gap: 4px;
    margin-top: 20px;
    padding: 16px;
    background: var(--cream);
    font-size: 12px;
}

.demo-note code {
    font-size: 11px;
}

.demo-note small {
    margin-top: 6px;
    color: #78695e;
}

.back-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
    text-decoration: none;
    color: #657269;
}

.admin-dashboard {
    min-height: 80vh;
    padding: 85px 0 110px;
    background: #f4f2ec;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 35px;
}

.dashboard-top h1 {
    font-size: clamp(48px, 6vw, 75px);
}

.dashboard-top p {
    margin-bottom: 0;
    color: #69766e;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.stat-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
}

.stat-card span {
    display: block;
    color: #77837b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-card strong {
    display: block;
    margin-top: 5px;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 400;
}

.message-list {
    display: grid;
    gap: 15px;
}

.message-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
}

.message-card.unread {
    border-left: 4px solid #6f856c;
}

.message-card.read {
    opacity: 0.86;
}

.message-card-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.message-card-head h2 {
    margin: 8px 0 5px;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
}

.message-card-head p,
.message-card-head time {
    color: #6c786f;
    font-size: 12px;
}

.message-tags {
    display: flex;
    gap: 7px;
}

.status-tag,
.type-tag {
    display: inline-block;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.status-tag {
    background: var(--forest);
    color: #fff;
}

.type-tag {
    background: #e6ebe2;
    color: var(--forest);
}

.message-body {
    margin-top: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #46544b;
    font-size: 14px;
}

.message-actions {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--forest);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.link-button.danger {
    color: #9a5347;
}

.empty-state {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
}

.empty-state > span {
    font-size: 36px;
    color: #82917f;
}

.empty-state h2 {
    margin: 10px 0 4px;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 400;
}

.empty-state p {
    margin: 0 0 24px;
    color: #6b786f;
}

/* Footer */
.site-footer {
    padding: 70px 0 22px;
    background: #18261e;
    color: #d6ded8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    gap: 50px;
}

.footer-brand {
    color: #fff;
}

.footer-brand .brand-mark {
    border-color: #8da08f;
}

.footer-grid > div > p {
    max-width: 420px;
    color: #9eaca2;
    font-size: 13px;
}

.footer-grid h3 {
    margin: 0 0 13px;
    color: #f4f5f2;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin: 7px 0;
    text-decoration: none;
    color: #9eaca2;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.09);
    color: #849389;
    font-size: 11px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 900px) {
    .hero-grid,
    .section-heading,
    .story-grid,
    .ai-grid,
    .page-hero-grid,
    .contact-layout,
    .admin-login-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-art {
        min-height: 510px;
    }

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

    .product-visual {
        min-height: 300px;
    }

    .story-grid {
        gap: 45px;
    }

    .wholesale-box {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .admin-brand-panel {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-wrap {
        min-height: 72px;
    }

    .main-nav {
        gap: 13px;
    }

    .main-nav a {
        padding: 25px 0 22px;
        font-size: 12px;
    }

    .brand strong {
        font-size: 17px;
    }

    .brand small {
        font-size: 7px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-art {
        transform: scale(0.82);
        margin: -40px -45px;
    }

    .brand-strip .container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 18px 0;
    }

    .section,
    .story-section,
    .ai-section {
        padding: 75px 0;
    }

    .section-heading h2,
    .story-copy h2,
    .ai-grid h2,
    .contact-aside h2 {
        font-size: 42px;
    }

    .wholesale-box {
        padding: 40px 28px;
    }

    .form-row.two-col,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 26px 20px;
    }

    .captcha-box,
    .form-submit-row,
    .dashboard-top,
    .message-card-head {
        align-items: stretch;
        flex-direction: column;
    }

    .captcha-box label {
        max-width: none;
    }

    .admin-brand-panel,
    .admin-form-panel {
        padding: 32px 25px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
/* Contact form */
.contact-section {
    padding: 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.contact-form-card .form-row {
    margin-bottom: 20px;
}
.contact-form-card .form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-card label,
.contact-form-card .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="number"],
.contact-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}
.contact-form-card textarea {
    resize: vertical;
}
.contact-form-card .radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    margin-right: 20px;
}
.contact-form-card .error-message {
    color: #b3261e;
    font-size: 0.85rem;
    margin-top: 4px;
}
.contact-form-card .captcha-row input {
    max-width: 120px;
}
/* Admin dashboard */
.admin-page {
    padding: 56px 0 96px;
    background: #faf9f5;
    min-height: 60vh;
}
.admin-page .container {
    max-width: 1180px;
}
.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.admin-header-row h1 {
    margin: 0;
}
.admin-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.admin-table-wrap {
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.admin-table th,
.admin-table td {
    padding: 14px 18px;
    text-align: left;
    white-space: nowrap;
}
.admin-table thead th {
    background: #f6f4ef;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: #6b6b62;
    border-bottom: 1px solid #eee;
}
.admin-table thead th a {
    color: inherit;
    text-decoration: none;
}
.admin-table tbody tr {
    border-bottom: 1px solid #f0efe9;
}
.admin-table tbody tr:last-child {
    border-bottom: none;
}
.admin-table tbody tr:hover {
    background: #fbfaf6;
}
.admin-table td.message-cell {
    max-width: 260px;
    white-space: normal;
    color: #555;
}
.admin-actions a,
.admin-actions button {
    font-size: 0.82rem;
    margin-right: 12px;
    color: #2f4a3c;
    text-decoration: none;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.admin-actions a.delete-link {
    color: #b3261e;
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: capitalize;
    background: #eee;
    color: #555;
}
.status-badge.status-new { background: #e4efe6; color: #2f6b45; }
.status-badge.status-contacted { background: #eaf0fb; color: #2b4d8f; }
.status-badge.status-closed { background: #f1f1ee; color: #6b6b62; }
.status-badge.status-active { background: #e4efe6; color: #2f6b45; }
.status-badge.status-inactive { background: #f6e7e7; color: #a13d3d; }
.admin-empty {
    padding: 56px 24px;
    text-align: center;
    color: #888;
}
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding: 0 4px;
}
.admin-pagination ul {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.admin-pagination ul li a,
.admin-pagination ul li span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
}
.admin-pagination ul li.active span {
    background: #2f4a3c;
    color: #fff;
}
.admin-pagination ul li.disabled span {
    color: #bbb;
}
.admin-pagination p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}
.admin-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: #2f4a3c;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.admin-btn:hover {
    background: #24382e;
}
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 28px;
}
.admin-detail-grid .full-width {
    grid-column: 1 / -1;
}
.admin-detail-item label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    margin-bottom: 4px;
}
.admin-detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #222;
}
/* Admin login */
.login-page {
    padding: 96px 24px;
    display: flex;
    justify-content: center;
}
.login-card {
    max-width: 420px;
    width: 100%;
}
.login-card h1 {
    margin: 0 0 8px;
}
.login-card .login-sub {
    margin: 0 0 28px;
    color: #666;
}

/* Error Messages */
/* CakePHP Flash message card */
.message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 9999;

    width: min(420px, calc(100% - 40px));
    padding: 24px 28px;

    background: #ffffff;
    border-radius: 14px;

    text-align: center;
    font-size: 14px;
    line-height: 1.5;

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);

    cursor: pointer;
}

/* Error message */
.message.error {
    color: #8b2f27;
    border: 1px solid #e2b4ae;
    background: #fff7f5;
}

/* Success message */
.message.success {
    color: #294536;
    border: 1px solid #b9ccb9;
    background: #f3f8f2;
}

/* CakePHP hides message when clicked */
.message.hidden {
    display: none;
}

.flash-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;

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

    border-radius: 50%;

    background: #b3261e;
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}

.message strong {
    display: block;
    margin-bottom: 8px;

    font-size: 17px;
}

.message p {
    margin: 0 0 10px;
}

.message small {
    color: #777;
    font-size: 11px;
}