:root {
    --font-ui: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --bg: #f4f8fb;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --ink: #10233a;
    --muted: #5d7287;
    --line: rgba(16, 35, 58, 0.12);
    --blue-deep: #545e67;
    --blue-mid: #65839e;
    --blue-soft: #8a9dbe;
    --blue-tint: rgba(138, 157, 190, 0.2);
    --blue-tint-strong: rgba(101, 131, 158, 0.24);
    --gold-soft: #cdb476;
    --gold-tint: rgba(205, 180, 118, 0.16);
    --gold-tint-strong: rgba(205, 180, 118, 0.28);
    --brand: var(--blue-mid);
    --brand-dark: var(--blue-deep);
    --accent: var(--gold-soft);
    --success: #1b8f5a;
    --danger: #c44f4f;
    --shadow: 0 20px 60px rgba(12, 39, 64, 0.12);
    --radius: 28px;
    --radius-sm: 18px;
    --container: min(1200px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(138, 157, 190, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(205, 180, 118, 0.12), transparent 24%),
        linear-gradient(180deg, #f6fbff 0%, #eef6fb 38%, #f7fafc 100%);
    font-family: var(--font-ui);
}

.public-shell {
    --brand: var(--blue-soft);
    --brand-dark: var(--blue-deep);
    --accent: var(--gold-soft);
    background:
        radial-gradient(circle at top, rgba(138, 157, 190, 0.14), transparent 25%),
        linear-gradient(180deg, #0b1118 0%, #141f2b 21%, #eef2f6 21%, #f6f8fb 100%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand);
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-soft), currentColor);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.5rem;
    font-family: var(--font-ui);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

h1 {
    font-size: clamp(2.6rem, 4.8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3.3vw, 3.5rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

p,
li,
small,
span,
label,
td,
th {
    line-height: 1.65;
    overflow-wrap: break-word;
}

small {
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.3rem;
    background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-mid) 64%, rgba(205, 180, 118, 0.9) 100%);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 14px 34px rgba(84, 94, 103, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 38px rgba(84, 94, 103, 0.28),
        0 0 0 1px rgba(205, 180, 118, 0.2);
}

.button-secondary,
.button-ghost {
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--line);
}

.button-danger {
    background: var(--danger);
    color: #fff;
    box-shadow: none;
}

.button-small {
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
}

.button-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(246, 251, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand--has-logo {
    gap: 0;
}

.brand-logos {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.brand-logos--dual {
    gap: 0.72rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 32%),
        linear-gradient(145deg, var(--blue-soft), var(--blue-mid) 58%, var(--blue-deep));
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark--image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    min-width: 160px;
    height: 80px;
    padding: 0.55rem 0.7rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(18, 49, 76, 0.08);
    box-shadow: 0 12px 24px rgba(5, 18, 30, 0.08);
    overflow: hidden;
}

.brand-mark--image img {
    width: auto;
    height: 58px;
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    object-position: center;
    transform: none;
    filter: none;
}

.brand-copy strong {
    display: block;
    font-size: 1rem;
}

.brand-copy small {
    display: block;
    font-size: 0.82rem;
    color: inherit;
    opacity: 0.74;
}

.main-nav,
.admin-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav a,
.admin-nav a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
}

.main-nav a.active,
.main-nav a:hover,
.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(11, 127, 194, 0.12);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    border: 0;
    background: rgba(11, 127, 194, 0.08);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-weight: 800;
}

.hero-section,
.catalog-hero,
.page-header {
    padding: 4rem 0 2rem;
}

.hero-grid,
.catalog-hero__grid,
.contact-grid,
.split-panel,
.admin-two-column {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.hero-copy p,
.catalog-hero p,
.page-header p {
    max-width: 62ch;
    font-size: 1.08rem;
    color: var(--muted);
}

.hero-actions,
.hero-badges,
.table-actions,
.inline-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-badges span,
.catalog-badge,
.catalog-side-note,
.hero-card-shell,
.category-card,
.showcase-card,
.info-card,
.catalog-card,
.order-panel__sticky,
.flash,
.admin-card,
.stat-card,
.order-card,
.admin-login__panel {
    backdrop-filter: blur(10px);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
}

.hero-badges span,
.catalog-badge {
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--brand-dark);
}

.hero-card {
    position: relative;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 10% -6% -10% 16%;
    background: radial-gradient(circle, rgba(11, 127, 194, 0.2), transparent 64%);
    z-index: -1;
}

.hero-card-shell {
    padding: 2rem;
    border-radius: calc(var(--radius) + 6px);
}

.hero-list {
    margin: 1.3rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.flash-wrap {
    padding: 0 0 1rem;
}

.flash {
    border-radius: 20px;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.flash-success {
    color: var(--success);
}

.flash-error {
    color: var(--danger);
}

.section {
    padding: 2rem 0 4rem;
}

.section-alt {
    background: linear-gradient(180deg, rgba(12, 102, 145, 0.06), transparent);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.6rem;
}

.section-heading p {
    max-width: 42ch;
    color: var(--muted);
}

.category-grid,
.product-showcase,
.catalog-grid,
.stats-grid,
.orders-list {
    display: grid;
    gap: 1.2rem;
}

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

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

.category-card,
.showcase-card,
.info-card,
.catalog-card,
.admin-card,
.order-card,
.stat-card {
    border-radius: var(--radius);
}

.category-card {
    overflow: hidden;
}

.category-card__image,
.catalog-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(227, 240, 249, 0.9));
}

.category-card__image img,
.catalog-card__media img,
.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card__body,
.showcase-card__content,
.catalog-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.category-card__body span,
.catalog-card__meta {
    color: var(--brand);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.showcase-card {
    overflow: hidden;
}

.showcase-card img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(11, 127, 194, 0.16), rgba(255, 255, 255, 0.88));
}

.showcase-card__content span {
    display: inline-block;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.split-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    padding: 2rem;
    border-radius: calc(var(--radius) + 10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(232, 244, 249, 0.95));
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    gap: 1rem;
}

.check-list div {
    padding: 1.2rem 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(16, 35, 58, 0.08);
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
}

.catalog-content {
    display: grid;
    gap: 1.8rem;
}

.catalog-group__heading {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.catalog-group__heading p {
    max-width: 58ch;
    margin: 0;
    color: var(--muted);
}

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

.catalog-card {
    overflow: hidden;
}

.catalog-card__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(16, 35, 58, 0.4));
    pointer-events: none;
}

.price-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 35, 58, 0.8);
    color: #fff;
    font-weight: 800;
}

.catalog-card__actions,
.stack-form,
.status-form {
    display: grid;
    gap: 0.9rem;
}

.catalog-card__actions {
    grid-template-columns: 1fr 1fr auto;
    padding: 0 1.2rem 1.25rem;
    align-items: end;
}

.order-panel__sticky {
    position: sticky;
    top: 100px;
    border-radius: calc(var(--radius) + 2px);
    padding: 1.35rem;
}

.order-items {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(245, 249, 252, 0.9);
    box-shadow: inset 0 0 0 1px rgba(16, 35, 58, 0.08);
}

.order-item strong {
    display: block;
    font-size: 0.95rem;
}

.order-item small {
    display: block;
    margin-top: 0.1rem;
}

.order-item__controls {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.order-placeholder,
.form-note {
    color: var(--muted);
    font-size: 0.92rem;
}

label {
    display: grid;
    gap: 0.38rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(16, 35, 58, 0.12);
    border-radius: 16px;
    padding: 0.88rem 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

textarea {
    resize: vertical;
}

.check-line {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.check-line input {
    width: auto;
}

.field-hint {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--muted);
}

.rich-editor__source {
    display: none;
}

.rich-editor {
    display: grid;
    gap: 0.75rem;
    border: 1px solid rgba(16, 35, 58, 0.12);
    border-radius: 20px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.rich-editor__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.rich-editor__button {
    border: 1px solid rgba(16, 35, 58, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 251, 0.95));
    color: var(--ink);
    border-radius: 999px;
    padding: 0.48rem 0.72rem;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rich-editor__button:hover {
    transform: translateY(-1px);
    border-color: rgba(101, 131, 158, 0.28);
    box-shadow: 0 8px 18px rgba(84, 94, 103, 0.08);
}

.rich-editor__surface {
    border: 1px solid rgba(16, 35, 58, 0.08);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: rgba(250, 252, 255, 0.94);
    color: var(--ink);
    line-height: 1.7;
    outline: none;
}

.rich-editor__surface:focus {
    border-color: rgba(101, 131, 158, 0.34);
    box-shadow: 0 0 0 4px rgba(138, 157, 190, 0.16);
}

.rich-editor__surface p,
.rich-text p {
    margin: 0 0 0.9rem;
}

.rich-editor__surface p:last-child,
.rich-text p:last-child {
    margin-bottom: 0;
}

.rich-editor__surface ul,
.rich-editor__surface ol,
.rich-text ul,
.rich-text ol {
    margin: 0.75rem 0 0.95rem;
    padding-left: 1.2rem;
}

.rich-editor__surface li,
.rich-text li {
    margin-bottom: 0.3rem;
}

.rich-editor__surface a,
.rich-text a {
    color: var(--brand-dark);
    text-decoration: underline;
    text-decoration-color: rgba(205, 180, 118, 0.7);
    text-underline-offset: 0.16em;
}

.rich-editor__surface h3,
.rich-editor__surface h4,
.rich-text h3,
.rich-text h4 {
    margin: 0.2rem 0 0.7rem;
    font-size: 1.04rem;
    line-height: 1.25;
}

.rich-editor__surface blockquote,
.rich-text blockquote {
    margin: 0.95rem 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid rgba(205, 180, 118, 0.72);
    background: rgba(138, 157, 190, 0.08);
    border-radius: 0 16px 16px 0;
    color: var(--muted);
}

.rich-text--compact {
    font-size: 0.95rem;
    color: var(--muted);
}

.rich-text--compact ul,
.rich-text--compact ol {
    margin-top: 0.55rem;
    margin-bottom: 0.75rem;
}

.admin-image-preview {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-image-preview span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.admin-image-preview img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(16, 35, 58, 0.12);
}

.admin-file-preview {
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-file-preview span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.admin-branding-preview {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-branding-preview > span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.admin-branding-preview__frame {
    display: grid;
    place-items: center;
    min-height: 140px;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #edf5fb);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-branding-preview__frame img,
.admin-file-preview__frame img {
    display: block;
    max-width: min(100%, 240px);
    max-height: 100px;
    object-fit: contain;
}

.admin-branding-preview__frame--wide img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.admin-inline-check {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-inline-check input {
    margin-top: 0.15rem;
}

.admin-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.admin-brand-block {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(247, 250, 253, 0.86);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.contact-grid,
.admin-two-column {
    grid-template-columns: 1fr 1.25fr;
}

.info-card {
    padding: 1.5rem;
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(16, 35, 58, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.social-section {
    display: grid;
    gap: 1.4rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    border: 1px solid rgba(16, 35, 58, 0.08);
    box-shadow: 0 10px 24px rgba(12, 39, 64, 0.08);
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(205, 180, 118, 0.32);
    box-shadow: 0 14px 28px rgba(12, 39, 64, 0.12);
}

.social-links--large a {
    padding: 0.95rem 1.2rem;
}

.social-links--stacked {
    display: grid;
}

.social-links--stacked a {
    width: 100%;
    justify-content: flex-start;
}

.public-shell .site-header {
    background: rgba(8, 13, 20, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.public-shell .brand-copy strong,
.public-shell .brand-copy small,
.public-shell .main-nav a {
    color: rgba(245, 240, 233, 0.92);
}

.public-shell .eyebrow {
    color: rgba(150, 176, 203, 0.96);
}

.public-shell .eyebrow::before {
    background: linear-gradient(90deg, rgba(205, 180, 118, 0.95), rgba(138, 157, 190, 0.92));
}

.public-shell .main-nav a.active,
.public-shell .main-nav a:hover {
    background: linear-gradient(135deg, rgba(205, 180, 118, 0.16), rgba(138, 157, 190, 0.12));
    box-shadow: inset 0 0 0 1px rgba(205, 180, 118, 0.16);
    color: #fff7ef;
}

.public-shell .nav-toggle {
    background: linear-gradient(135deg, rgba(205, 180, 118, 0.16), rgba(138, 157, 190, 0.1));
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 1.5rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted);
}

.footer-meta {
    padding-top: 1rem;
    text-align: right;
}

.footer-meta span,
.footer-meta a {
    font-size: 0.92rem;
    color: var(--muted);
}

.footer-meta a {
    font-weight: 800;
}

.admin-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 100vh;
    background: linear-gradient(180deg, #f3f7fb, #eef2f7);
}

.admin-sidebar {
    padding: 1.25rem;
    background: linear-gradient(180deg, #0d2437, #102c42);
    color: rgba(255, 255, 255, 0.86);
}

.brand-admin .brand-mark {
    width: 48px;
    height: 48px;
}

.brand-admin .brand-mark--image {
    width: 124px;
    min-width: 124px;
    height: 40px;
}

.brand-admin .brand-mark--image img {
    height: 58px;
    transform: translateY(-7px);
}

.brand-admin {
    gap: 0.75rem;
}

.brand-admin .brand-copy strong {
    font-size: 0.95rem;
}

.brand-admin .brand-copy small {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.62);
}

.admin-shell h1,
.admin-shell h2,
.admin-shell h3,
.admin-shell h4 {
    font-family: var(--font-ui);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.admin-shell h1 {
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.admin-shell h2 {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.admin-shell h3 {
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.admin-nav {
    margin: 1.4rem 0;
    flex-direction: column;
    align-items: stretch;
}

.admin-nav a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.logout-form {
    margin-top: auto;
}

.admin-main {
    padding: 1.1rem 1.25rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 0.85rem;
}

.stat-card,
.admin-card,
.order-card {
    padding: 0.9rem 1rem;
}

.admin-card__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-card__header h2 {
    margin-bottom: 0.15rem;
}

.admin-card__header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.stat-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 0.4rem;
    font-size: 0.78rem;
}

.stat-card strong {
    font-size: 1.65rem;
    font-family: var(--font-ui);
    font-weight: 800;
}

.admin-panels {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.85rem;
}

.admin-panels--stack {
    grid-template-columns: 1fr;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.65rem 0.55rem;
    border-bottom: 1px solid rgba(16, 35, 58, 0.08);
    text-align: left;
    vertical-align: top;
    font-size: 0.88rem;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table td small {
    display: block;
}

.admin-table td strong {
    display: block;
}

.admin-table td code {
    font-size: 0.8rem;
}

.admin-table td input,
.admin-table td select {
    width: 100%;
}

.order-card__header,
.order-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-card__meta {
    color: var(--muted);
    margin: 1rem 0;
}

.order-notes {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(244, 248, 251, 0.95);
}

.admin-brand-card {
    margin-bottom: 1rem;
    display: grid;
    gap: 0.6rem;
}

.admin-loader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 38%, rgba(70, 177, 255, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(5, 18, 31, 0.96), rgba(10, 35, 57, 0.98));
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.admin-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.admin-loader__inner {
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.admin-loader__mark {
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.admin-loader__line {
    width: 140px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.12), #34aeef, rgba(255,255,255,0.12));
    background-size: 180% 100%;
    animation: adminLoaderFlow 1.1s linear infinite;
}

.admin-dialog {
    width: min(760px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: transparent;
    box-shadow: 0 34px 80px rgba(3, 16, 27, 0.38);
}

.admin-dialog::backdrop {
    background: rgba(4, 16, 28, 0.52);
    backdrop-filter: blur(4px);
}

.admin-dialog__shell {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.admin-dialog__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.admin-dialog__header h2 {
    margin-bottom: 0;
}

.admin-dialog__form {
    max-height: calc(100vh - 11rem);
    overflow-y: auto;
    padding-right: 0.2rem;
}

.orders-toolbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: end;
}

.orders-toolbar__search,
.orders-toolbar__filter {
    display: grid;
    gap: 0.35rem;
}

.orders-toolbar__search {
    grid-column: span 2;
}

.orders-toolbar__search span,
.orders-toolbar__filter span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-orders-table td {
    vertical-align: middle;
}

.admin-orders-table strong {
    font-size: 0.9rem;
}

.order-row-actions {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
}

.order-row-actions .button {
    margin-left: auto;
}

.admin-row-actions {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
}

.admin-row-actions__stack {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-inline-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.admin-inline-actions code {
    background: rgba(245, 249, 252, 0.9);
    border: 1px solid rgba(16, 35, 58, 0.08);
    border-radius: 12px;
    padding: 0.35rem 0.55rem;
}

.admin-empty-state {
    margin-top: 0.9rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: rgba(244, 248, 251, 0.96);
    border: 1px solid rgba(16, 35, 58, 0.08);
    color: var(--muted);
    font-size: 0.85rem;
}

.muted {
    color: var(--muted);
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.admin-pill--success {
    background: rgba(27, 143, 90, 0.14);
    color: #1b8f5a;
}

.admin-pill--info {
    background: rgba(138, 157, 190, 0.18);
    color: var(--blue-deep);
}

.admin-pill--warning {
    background: rgba(205, 180, 118, 0.2);
    color: #8e7440;
}

.admin-pill--muted {
    background: rgba(16, 35, 58, 0.08);
    color: #5f7388;
}

.admin-pill--danger {
    background: rgba(196, 79, 79, 0.12);
    color: #b24545;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.order-status-badge--new {
    background: rgba(138, 157, 190, 0.18);
    color: var(--blue-deep);
}

.order-status-badge--processing {
    background: rgba(205, 180, 118, 0.2);
    color: #8e7440;
}

.order-status-badge--completed {
    background: rgba(27, 143, 90, 0.14);
    color: #1b8f5a;
}

.order-status-badge--cancelled {
    background: rgba(196, 79, 79, 0.12);
    color: #b24545;
}

.order-detail-row td {
    padding: 0;
    border-bottom: 0;
}

.order-detail-card {
    margin: 0.75rem 0 1rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(244, 248, 251, 0.96);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.order-detail-card__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-detail-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-shell .button {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
}

.admin-shell .button-small {
    padding: 0.52rem 0.8rem;
    font-size: 0.82rem;
}

.settings-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1rem;
    align-items: start;
}

.settings-sidecard,
.settings-security {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(244, 248, 251, 0.96);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.settings-sidecard h3,
.settings-security h3 {
    margin-bottom: 0.45rem;
}

.settings-sidecard p,
.settings-security p {
    margin-bottom: 0.8rem;
}

.settings-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.settings-secret {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.settings-secret span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.settings-secret code,
.settings-secret textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(16, 35, 58, 0.12);
    font-size: 0.84rem;
    color: var(--text);
}

.settings-secret textarea {
    min-height: 96px;
    resize: vertical;
}

.admin-inline-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.settings-health {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 35, 58, 0.1);
}

.settings-health strong {
    display: block;
    margin-bottom: 0.35rem;
}

.settings-health p {
    margin-bottom: 0.3rem;
}

.admin-logs-table td {
    vertical-align: top;
}

.log-context {
    margin: 0;
    padding: 0.75rem;
    border-radius: 14px;
    background: rgba(16, 35, 58, 0.04);
    border: 1px solid rgba(16, 35, 58, 0.08);
    color: var(--text);
    font-size: 0.76rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
    max-width: 360px;
}

.admin-login-shell {
    display: block;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.admin-login__panel {
    width: min(520px, 100%);
    padding: 2rem;
    border-radius: 32px;
}

.image-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-weight: 900;
    color: rgba(16, 35, 58, 0.45);
    letter-spacing: 0.12em;
}

.brochure-cover {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    color: #f7f0e8;
}

.brochure-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(138, 157, 190, 0.16), transparent 20%),
        radial-gradient(circle at 82% 20%, rgba(101, 131, 158, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(14, 20, 26, 0.96), rgba(65, 83, 99, 0.92));
    pointer-events: none;
}

.brochure-cover > .container {
    position: relative;
    z-index: 1;
}

.cover-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.cover-copy p {
    max-width: 60ch;
    color: rgba(247, 240, 232, 0.78);
}

.cover-script {
    font-family: var(--font-ui);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.1;
    color: #fff6eb;
    margin: 1rem 0 1.6rem;
}

.cover-panel,
.catalog-cover-panel,
.intro-ribbon,
.brochure-flow,
.brochure-cta,
.order-bridge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.cover-panel,
.catalog-cover-panel {
    padding: 1.8rem;
    border-radius: 36px;
}

.cover-orb {
    width: 170px;
    height: 170px;
    margin: 0 auto 1.4rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: var(--font-ui);
    font-size: 2.3rem;
    font-weight: 700;
    background: radial-gradient(circle at 30% 30%, #f4d6a9, #9f5d27 72%);
    color: #fff8ef;
    box-shadow: 0 20px 60px rgba(159, 93, 39, 0.35);
}

.cover-lines {
    display: grid;
    gap: 0.8rem;
}

.cover-lines span {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: #fff8ef;
}

.intro-ribbon,
.brochure-flow,
.brochure-cta,
.order-bridge {
    display: grid;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: 34px;
}

.intro-ribbon {
    grid-template-columns: 1fr 0.9fr;
}

.intro-ribbon p,
.brochure-flow__intro p,
.brochure-section__header p,
.feature-note,
.brochure-card__body p {
    color: var(--muted);
}

.dramatic-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.dramatic-card,
.category-tile,
.brochure-feature,
.brochure-card,
.catalog-cover-panel,
.cover-panel {
    border-radius: 32px;
    overflow: hidden;
}

.dramatic-card {
    min-height: 420px;
    background:
        linear-gradient(180deg, rgba(10, 17, 24, 0.08), rgba(10, 17, 24, 0.58)),
        url('/assets/media/fish.svg') center/cover no-repeat;
    display: flex;
    align-items: end;
    padding: 1.5rem;
    color: #fff7ef;
}

.category-tile {
    background: rgba(255, 255, 255, 0.92);
}

.category-tile__media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(205, 180, 118, 0.12), rgba(255,255,255,0.86));
}

.category-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tile__body {
    padding: 1.2rem;
}

.category-tile__body span,
.brochure-card__body span {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.showcase-card--editorial {
    background: rgba(255, 255, 255, 0.92);
}

.showcase-card--editorial img {
    aspect-ratio: 4 / 3;
}

.showcase-card--wide {
    grid-row: span 2;
}

.showcase-card--wide img {
    aspect-ratio: 3 / 4;
}

.brochure-cover--catalog,
.brochure-cover--order {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.catalog-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.catalog-chip-list a,
.catalog-chip-list button,
.category-filter {
    border: 0;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff8ef;
    font-weight: 700;
    cursor: pointer;
}

.catalog-chip-list button.is-active,
.category-filter.is-active {
    background: linear-gradient(135deg, rgba(205, 180, 118, 0.94), rgba(138, 157, 190, 0.88));
    color: #fff;
    box-shadow: 0 14px 28px rgba(84, 94, 103, 0.2);
}

.brochure-flow {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.brochure-section {
    padding-top: 1rem;
}

.brochure-section__header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 1.4rem;
}

.brochure-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: rgba(255, 255, 255, 0.94);
    margin-bottom: 1.2rem;
}

.brochure-feature__media {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, rgba(205, 180, 118, 0.1), rgba(255,255,255,0.8));
}

.brochure-feature__media img,
.brochure-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brochure-feature__copy {
    padding: 2rem;
}

.feature-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 35, 58, 0.1);
}

.brochure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.brochure-card {
    background: rgba(255, 255, 255, 0.94);
}

.brochure-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
}

.brochure-card__body {
    padding: 1.2rem;
}

.brochure-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.order-card-tile {
    background: rgba(255, 255, 255, 0.94);
}

.order-card-tile .catalog-card__media {
    background: linear-gradient(135deg, rgba(205, 180, 118, 0.1), rgba(255,255,255,0.82));
}

.public-shell .site-footer {
    background: #0e151e;
    color: rgba(247, 240, 232, 0.84);
    border-top-color: rgba(255, 255, 255, 0.06);
}

.public-shell .footer-grid a,
.public-shell .site-footer p,
.public-shell .site-footer h4 {
    color: rgba(247, 240, 232, 0.72);
}

@media (max-width: 1180px) {
    .cover-grid,
    .intro-ribbon,
    .brochure-section__header,
    .brochure-feature,
    .brochure-cta,
    .brochure-flow,
    .dramatic-grid,
    .product-showcase--editorial {
        grid-template-columns: 1fr;
    }

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

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

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

    .catalog-layout,
    .hero-grid,
    .contact-grid,
    .split-panel,
    .admin-panels,
    .admin-two-column,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .order-panel__sticky {
        position: static;
    }
}

@media (max-width: 960px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: grid;
        gap: 1rem;
    }

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

    .orders-toolbar,
    .order-detail-card__header {
        grid-template-columns: 1fr;
        display: grid;
    }

    .orders-toolbar__search {
        grid-column: span 1;
    }

    .admin-header,
    .admin-card__header,
    .admin-dialog__header {
        align-items: start;
        flex-direction: column;
    }

    .admin-dialog {
        width: min(100vw - 1rem, 760px);
    }

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

@media (max-width: 780px) {
    .public-shell {
        background:
            linear-gradient(180deg, #0d1117 0 560px, #f5f1ea 560px 100%);
    }

    .premium-hero,
    .premium-pagehead {
        padding: 3.25rem 0 2.5rem;
    }

    .premium-hero__copy h1,
    .premium-pagehead h1 {
        font-size: clamp(1.9rem, 8.2vw, 2.55rem);
        line-height: 1.04;
        margin-bottom: 0.85rem;
        letter-spacing: -0.04em;
        text-wrap: pretty;
    }

    .catalog-brochure-cover h1,
    .premium-pagehead--about h1 {
        max-width: none;
    }

    .premium-hero__script {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .premium-hero__text,
    .premium-pagehead p {
        max-width: none;
        font-size: 0.92rem;
        line-height: 1.68;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .premium-hero__copy,
    .premium-pagehead__grid > * {
        min-width: 0;
    }

    .premium-band span {
        padding: 0.9rem 1rem;
        font-size: 0.78rem;
        text-align: center;
    }

    .topbar {
        gap: 0.7rem;
        align-items: start;
    }

    .brand {
        gap: 0.65rem;
        align-items: start;
        max-width: calc(100% - 112px);
    }

    .brand--has-logo {
        max-width: calc(100% - 112px);
    }

    .brand-mark--image {
        width: 120px;
        min-width: 120px;
        height: 54px;
    }

    .brand-logos--dual .brand-mark--image {
        width: 104px;
        min-width: 104px;
    }

    .brand-mark--image img {
        height: 52px;
        transform: translateY(-6px);
    }

    .brand-copy strong {
        font-size: 0.94rem;
    }

    .brand-copy small {
        font-size: 0.74rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        padding: 0.8rem;
        border-radius: 24px;
        background: rgba(8, 23, 38, 0.98);
        border: 1px solid rgba(136, 214, 255, 0.12);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .public-shell .main-nav {
        background: rgba(8, 23, 38, 0.98);
        border: 1px solid rgba(136, 214, 255, 0.12);
    }

    .public-shell .main-nav a {
        color: rgba(244, 250, 255, 0.94);
    }

    .public-shell .main-nav a.active,
    .public-shell .main-nav a:hover {
        background: rgba(138, 157, 190, 0.18);
        color: #ffffff;
    }

    .section-heading {
        display: grid;
    }

    .category-grid,
    .product-showcase,
    .brochure-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card__actions {
        grid-template-columns: 1fr;
    }

    .order-item {
        grid-template-columns: 1fr;
    }

    .brochure-cover {
        padding-top: 4rem;
    }
}

/* Public redesign v2 */
.public-shell {
    background:
        linear-gradient(180deg, #0d1117 0 620px, #f5f1ea 620px 100%);
    color: #1b2430;
}

.public-shell .site-header {
    background: rgba(10, 14, 20, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-shell .brand-mark {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), transparent 34%),
        linear-gradient(145deg, #b67b3d, #6a3d18);
}

.public-shell .brand-copy strong,
.public-shell .brand-copy small,
.public-shell .main-nav a {
    color: rgba(249, 243, 234, 0.9);
}

.public-shell .main-nav a.active,
.public-shell .main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.public-shell .site-footer {
    background: #11161d;
    color: rgba(249, 243, 234, 0.82);
    border-top-color: rgba(255,255,255,0.08);
}

.public-shell .site-footer p,
.public-shell .site-footer a,
.public-shell .site-footer h4 {
    color: rgba(249, 243, 234, 0.72);
}

.premium-hero,
.premium-pagehead {
    position: relative;
    color: #f7f1e8;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.premium-hero::before,
.premium-pagehead::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(138, 157, 190, 0.18), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(101, 131, 158, 0.18), transparent 22%),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.10), transparent 26%),
        linear-gradient(145deg, #0d141b, #263747 58%, #415363);
    pointer-events: none;
}

.premium-hero > .container,
.premium-pagehead > .container {
    position: relative;
    z-index: 1;
}

.premium-hero__grid,
.premium-pagehead__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.premium-pagehead__grid--brochure {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
}

.premium-hero__copy h1,
.premium-pagehead h1 {
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.public-shell .editorial-section__header h2,
.public-shell .catalog-section__header h2,
.public-shell .service-panel > div h2,
.public-shell .service-panel--compact h2,
.public-shell .contact-card h2,
.public-shell .order-category .catalog-group__heading h2,
.public-shell .cart-drawer h2 {
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.08;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #17334e;
}

.public-shell .collection-card__body h3,
.public-shell .editorial-card__body h3,
.public-shell .catalog-product-card__body h3,
.public-shell .catalog-feature__copy h3,
.public-shell .print-card__body h3,
.public-shell .print-feature__body h3,
.public-shell .service-panel__steps h3 {
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: -0.024em;
    line-height: 1.12;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    color: #17334e;
}

.premium-hero__script {
    margin: 0 0 0.8rem;
    font-family: var(--font-ui);
    font-style: italic;
    font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    color: rgba(234, 246, 255, 0.92);
}

.hero-ocean-wave {
    position: absolute;
    left: 28%;
    width: 82%;
    background: url('/assets/media/hero-wave-mark.svg') center / 100% 100% no-repeat;
    pointer-events: none;
    opacity: 0.34;
    mix-blend-mode: screen;
    filter: drop-shadow(0 10px 26px rgba(101, 131, 158, 0.14));
    animation: oceanWaveShift 18s cubic-bezier(0.42, 0.08, 0.18, 0.98) infinite;
    transform-origin: center;
}

.hero-ocean-wave--one {
    top: 36%;
    height: 150px;
    transform: rotate(-3deg);
}

.hero-ocean-wave--two {
    top: 54%;
    height: 180px;
    transform: rotate(-2deg) scaleX(1.03);
    opacity: 0.28;
    animation-duration: 22s;
    animation-delay: -6s;
}

.hero-ocean-wave--three {
    bottom: -1%;
    height: 140px;
    transform: rotate(1deg) scaleX(0.98);
    opacity: 0.2;
    animation-duration: 24s;
    animation-delay: -11s;
}

.premium-hero__text,
.premium-pagehead p {
    max-width: 58ch;
    color: rgba(247, 241, 232, 0.76);
}

.hero-issue,
.premium-pagehead__side {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 28px;
}

.premium-hero__art {
    display: grid;
    gap: 1rem;
    perspective: 1400px;
}

.premium-hero--clean .premium-hero__grid {
    grid-template-columns: minmax(0, 1fr);
}

.premium-hero--clean .premium-hero__copy {
    max-width: 780px;
}

.premium-hero--clean .premium-hero__text {
    max-width: 54ch;
}

[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.72, 0.2, 1);
    will-change: opacity, transform;
}

[data-scroll-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-issue {
    padding: 1.5rem;
}

.hero-issue__kicker {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d8b27a;
}

.hero-issue strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
    font-size: 3.6rem;
}

.hero-issue p {
    margin: 0;
    color: rgba(247, 241, 232, 0.76);
}

.hero-frames {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-frames article {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-frames img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(27, 36, 48, 0.14);
}

.premium-band span {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4d5a68;
}

.section-soft {
    background: linear-gradient(180deg, rgba(17, 22, 29, 0.04), transparent);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.collection-card,
.editorial-card,
.catalog-feature,
.catalog-product-card,
.service-panel,
.order-panel__sticky,
.premium-pagehead__side {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 44px rgba(18, 32, 46, 0.08);
    overflow: hidden;
}

.collection-card__media,
.editorial-card__media,
.catalog-feature__media,
.catalog-product-card__media {
    background: linear-gradient(135deg, #f5eadc, #e9f0f4);
}

.collection-card__media {
    aspect-ratio: 3 / 4;
}

.collection-card__media img,
.editorial-card__media img,
.catalog-feature__media img,
.catalog-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card__body,
.editorial-card__body,
.catalog-product-card__body {
    padding: 1.2rem;
}

.collection-card__body span,
.editorial-card__body span,
.catalog-product-card__body span {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: #a06b2f;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.editorial-section {
    display: grid;
    gap: 1.4rem;
}

.editorial-section__header {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: end;
}

.editorial-section__header p {
    margin: 0;
    color: #687684;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
}

.editorial-card__media {
    aspect-ratio: 4 / 3;
}

.editorial-card--lead {
    grid-row: span 2;
}

.editorial-card--lead .editorial-card__media {
    aspect-ratio: 3 / 4;
}

.service-panel {
    display: grid;
    gap: 1.4rem;
    padding: 1.8rem;
}

.service-panel__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-panel__steps article {
    padding: 1.1rem 0;
    border-top: 1px solid rgba(27, 36, 48, 0.12);
}

.service-panel__steps strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #a06b2f;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.service-panel--compact {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.premium-pagehead {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.premium-pagehead--catalog > .container,
.premium-pagehead--contact > .container,
.catalog-section .container,
.service-panel--compact.container {
    width: min(1100px, calc(100vw - 88px));
}

.premium-pagehead__side {
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-brochure-cover {
    display: grid;
    gap: 1.05rem;
    max-width: 700px;
}

.catalog-brochure-cover__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(247, 241, 232, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-brochure-cover h1 {
    max-width: 8ch;
    margin-bottom: 0;
}

.catalog-brochure-cover__subtitle {
    max-width: 44ch;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.75;
}

.catalog-brochure-cover__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.catalog-brochure-meta {
    display: grid;
    gap: 1.15rem;
    justify-self: end;
    align-content: end;
    width: min(100%, 330px);
    padding-bottom: 0.4rem;
}

.catalog-brochure-meta__intro {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(241, 248, 255, 0.78);
    line-height: 1.75;
    font-size: 0.98rem;
}

.contact-side-card {
    align-self: stretch;
}

.contact-side-card__row {
    display: grid;
    gap: 0.18rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-side-card__row span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 245, 255, 0.7);
}

.contact-side-card__row strong {
    font-size: 1.15rem;
    color: #ffffff;
}

.contact-map-card {
    overflow: hidden;
    border-radius: 22px;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 34px rgba(7, 25, 43, 0.16);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    min-height: 220px;
    border: 0;
}

.contact-grid--public {
    width: min(1100px, calc(100vw - 88px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.contact-card {
    padding: 2rem;
}

.contact-card h2 {
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: #5d7287;
}

.contact-card__lines {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.contact-card__lines p {
    margin: 0;
    font-size: 1.05rem;
}

.about-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 3rem;
    align-items: start;
}

.about-hero__copy {
    display: grid;
    gap: 1.15rem;
    width: min(100%, 760px);
}

.about-hero__topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(247, 241, 232, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.premium-pagehead--about h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(3.2rem, 5.4vw, 5.85rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.about-hero__intro {
    max-width: 48ch;
    margin: 0;
    color: rgba(247, 241, 232, 0.8);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-hero__visual {
    display: grid;
    align-content: start;
    justify-items: end;
    min-height: 100%;
    padding-top: 0.65rem;
}

.about-hero__stage {
    display: grid;
    gap: 1.1rem;
    width: min(100%, 420px);
    padding: 0.5rem 0 0.35rem;
}

.about-hero__map {
    width: 100%;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 44px rgba(7, 25, 43, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

.about-hero__map iframe {
    display: block;
    width: 100%;
    min-height: 300px;
    border: 0;
    filter: saturate(0.92) contrast(1.04);
}

.about-hero__orbit {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.8rem 0.75rem;
    width: 100%;
    padding: 0.3rem 0.2rem 0;
    pointer-events: none;
    isolation: isolate;
}

.about-hero__orbit::before {
    content: "";
    position: absolute;
    inset: 0.35rem 3.2rem auto 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(116, 173, 255, 0.22), rgba(146, 126, 255, 0.14) 45%, rgba(255, 255, 255, 0) 72%);
    filter: blur(16px);
    z-index: 0;
}

.about-hero__orbit::after {
    content: "";
    position: absolute;
    inset: auto 1.6rem -0.2rem 1.6rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(179, 204, 255, 0.3), rgba(255, 255, 255, 0));
    z-index: 1;
}

.about-hero__orbit-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.1rem;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(112, 210, 255, 0.22), rgba(137, 140, 255, 0.22) 58%, rgba(206, 145, 255, 0.2)),
        rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(188, 204, 255, 0.24);
    box-shadow:
        0 10px 22px rgba(8, 33, 61, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    color: #f7fbff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    justify-self: center;
    animation: aboutOrbitFloat 7.5s ease-in-out infinite, aboutOrbitHue 14s linear infinite;
}

.about-hero__orbit-item--quality {
    grid-column: 2 / span 3;
}

.about-hero__orbit-item--consistency {
    grid-column: 8 / span 3;
    animation-delay: -2.2s;
}

.about-hero__orbit-item--responsibility {
    grid-column: 4 / span 6;
    animation-delay: -4.4s;
}

.about-hero__orbit-item--retail {
    grid-column: 2 / span 3;
    animation-delay: -1.1s;
}

.about-hero__orbit-item--horeca {
    grid-column: 5 / span 3;
    animation-delay: -3.3s;
}

.about-hero__orbit-item--supply {
    grid-column: 7 / span 5;
    animation-delay: -5.1s;
}

.certificate-sheet__preview iframe,
.admin-file-preview__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.about-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 2.5rem;
    align-items: start;
}

.about-editorial__lead {
    display: grid;
    gap: 0.9rem;
    padding: 0 0 2.1rem;
    border-bottom: 1px solid rgba(16, 35, 58, 0.1);
}

.about-editorial__lead h2 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(2.4rem, 3.6vw, 4.1rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #17334e;
}

.about-editorial__copy {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding-top: 0.2rem;
}

.about-editorial__side {
    display: grid;
    gap: 1.3rem;
    align-content: start;
    padding-top: 0.2rem;
}

.about-editorial__copy > .eyebrow,
.about-editorial__side > .eyebrow {
    margin-bottom: 0.15rem;
}

.about-editorial__side > p {
    margin: 0;
    color: #526b84;
    line-height: 1.8;
}

.about-story__body {
    display: grid;
    gap: 1.05rem;
    margin-top: 0.15rem;
}

.about-story__body p,
.about-story__aside p {
    margin: 0;
    color: #5d7287;
    line-height: 1.9;
}

.section-heading--brands {
    margin-bottom: 2rem;
}

.brand-story-stack {
    display: grid;
    gap: 1.6rem;
}

.brand-story-row {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.5rem;
    align-items: stretch;
}

.brand-story-row--reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.brand-story-row__logo,
.brand-story-row__content {
    min-height: 100%;
    padding: 1.6rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 35, 58, 0.08);
    box-shadow: 0 24px 50px rgba(18, 43, 72, 0.08);
}

.brand-story-row__logo {
    display: grid;
    place-items: center;
}

.brand-story-row__logo--image img {
    display: block;
    max-width: min(100%, 280px);
    max-height: 108px;
    object-fit: contain;
}

.brand-story-row__logo span {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    font-weight: 700;
    color: #17334e;
}

.brand-story-row__content {
    display: grid;
    align-content: center;
    gap: 0.9rem;
}

.brand-story-row__content h3 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(1.7rem, 2.5vw, 2.45rem);
    line-height: 1.04;
    color: #17334e;
}

.brand-story-row__content p {
    margin: 0;
    color: #5d7287;
    line-height: 1.9;
}

.about-certificates {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}

.fao-zone {
    display: grid;
    gap: 1.5rem;
}

.fao-zone__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
}

.fao-zone__sheet,
.fao-zone__legend {
    padding: 1.5rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(138, 157, 190, 0.16), transparent 42%),
        linear-gradient(160deg, rgba(9, 19, 35, 0.94), rgba(19, 37, 60, 0.9));
    border: 1px solid rgba(138, 157, 190, 0.16);
    box-shadow: 0 30px 60px rgba(6, 15, 28, 0.34);
    backdrop-filter: blur(16px);
}

.fao-zone__image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 20% 16%, rgba(138, 157, 190, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(8, 17, 31, 0.98), rgba(17, 34, 54, 0.96));
    border: 1px solid rgba(138, 157, 190, 0.18);
}

.fao-zone__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 11, 22, 0.1), rgba(5, 11, 22, 0.44)),
        radial-gradient(circle at 55% 34%, rgba(138, 157, 190, 0.22), transparent 28%);
    z-index: 1;
    pointer-events: none;
}

.fao-zone__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(138, 157, 190, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 157, 190, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.16;
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
}

.fao-zone__image img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.88) contrast(1.08) brightness(0.86);
}

.fao-zone__network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.fao-zone__route {
    opacity: 0.34;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fao-zone__route-glow,
.fao-zone__route-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fao-zone__route-glow {
    stroke: rgba(182, 212, 255, 0.34);
    stroke-width: 1.9;
    filter: url(#faoArcGlow);
    animation: fao-route-pulse 5.8s ease-in-out infinite;
    animation-delay: calc(var(--route-delay, 0s) + 1.2s);
}

.fao-zone__route-line {
    stroke: url(#faoArcGradient);
    stroke-width: 0.82;
    stroke-dasharray: 16 10 34 8;
    stroke-dashoffset: 86;
    animation:
        fao-route-draw 1.9s cubic-bezier(0.2, 0.82, 0.28, 1) forwards,
        fao-route-flow 7.8s linear infinite;
    animation-delay:
        var(--route-delay, 0s),
        calc(var(--route-delay, 0s) + 1.9s);
}

.fao-zone__route.is-active {
    opacity: 1;
}

.fao-zone__route.is-active .fao-zone__route-glow {
    stroke: rgba(210, 232, 255, 0.64);
}

.fao-zone__route.is-active .fao-zone__route-line {
    stroke-width: 0.98;
}

.fao-zone__marker {
    position: absolute;
    width: 2.55rem;
    height: 2.55rem;
    margin: -1.275rem 0 0 -1.275rem;
    border-radius: 999px;
    border: 1px solid rgba(222, 240, 255, 0.82);
    background: linear-gradient(135deg, rgba(93, 224, 255, 0.95), rgba(118, 111, 255, 0.92));
    color: #fff;
    box-shadow:
        0 0 0 4px rgba(93, 224, 255, 0.1),
        0 16px 30px rgba(9, 26, 52, 0.42);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 3;
}

.fao-zone__marker span {
    pointer-events: none;
}

.fao-zone__marker:hover,
.fao-zone__marker:focus-visible,
.fao-zone__marker.is-active {
    transform: scale(1.08);
    box-shadow:
        0 0 0 6px rgba(148, 186, 255, 0.16),
        0 18px 36px rgba(16, 35, 66, 0.5);
    background: linear-gradient(135deg, rgba(132, 238, 255, 0.98), rgba(162, 126, 255, 0.95));
}

.fao-zone__legend {
    display: grid;
    gap: 1rem;
}

.fao-zone__legend-intro p {
    margin: 0;
    color: rgba(226, 236, 247, 0.78);
    line-height: 1.75;
}

.fao-zone__chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.fao-zone__chip {
    padding: 0.78rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(138, 157, 190, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(138, 157, 190, 0.08));
    color: rgba(216, 232, 247, 0.92);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fao-zone__chip:hover,
.fao-zone__chip:focus-visible,
.fao-zone__chip.is-active {
    transform: translateY(-2px);
    border-color: rgba(205, 180, 118, 0.34);
    background: linear-gradient(145deg, rgba(84, 94, 103, 0.6), rgba(205, 180, 118, 0.2));
    box-shadow: 0 16px 28px rgba(4, 14, 29, 0.34);
}

.fao-zone__detail {
    display: none;
    gap: 0.45rem;
    padding: 1.25rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(138, 157, 190, 0.18);
    background:
        radial-gradient(circle at top right, rgba(138, 157, 190, 0.15), transparent 38%),
        linear-gradient(155deg, rgba(12, 24, 42, 0.96), rgba(18, 35, 56, 0.94));
    box-shadow: 0 18px 34px rgba(5, 15, 29, 0.34);
}

.fao-zone__detail.is-active {
    display: grid;
}

.fao-zone__detail span {
    color: rgba(154, 202, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fao-zone__detail h3 {
    margin: 0;
    color: rgba(247, 250, 255, 0.96);
    font-size: 1.35rem;
    line-height: 1.2;
}

.fao-zone__detail p {
    margin: 0;
    color: rgba(215, 227, 240, 0.82);
    line-height: 1.75;
}

@keyframes fao-route-draw {
    0% {
        stroke-dashoffset: 86;
        opacity: 0.18;
    }

    58% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes fao-route-flow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -68;
    }
}

@keyframes fao-route-pulse {
    0%,
    100% {
        opacity: 0.36;
    }

    50% {
        opacity: 0.68;
    }
}

.certificate-sheet {
    display: grid;
    gap: 1rem;
    align-content: start;
    grid-column: span 4;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 35, 58, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(18, 43, 72, 0.08);
}

.certificate-sheet__preview {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(145deg, #f8fbff, #ddecf9);
    border: 1px solid rgba(16, 35, 58, 0.08);
    aspect-ratio: 4 / 5;
}

.certificate-sheet--featured {
    grid-column: span 6;
}

.certificate-sheet__body span {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--blue-mid);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.certificate-sheet__body h3 {
    margin-bottom: 0.4rem;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.certificate-sheet__body p {
    margin: 0;
    color: #5d7287;
    line-height: 1.7;
}

.certificate-sheet__actions {
    display: flex;
    align-items: center;
}

.admin-file-preview__frame {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(16, 35, 58, 0.08);
    aspect-ratio: 4 / 5;
}

.catalog-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.catalog-chip-list a,
.catalog-chip-list button {
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff4e3;
    font-weight: 700;
    cursor: pointer;
}

.catalog-chip-list button.is-active,
.catalog-chip-list a:hover,
.catalog-chip-list button:hover {
    background: linear-gradient(135deg, #d4a35e, #8c5829);
    color: #fff;
}

.catalog-section__header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 1.2rem;
}

.catalog-section__header p {
    margin: 0;
    color: #6c7886;
}

.catalog-feature {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    margin-bottom: 1rem;
}

.catalog-feature__media {
    position: relative;
    min-height: 420px;
}

.catalog-feature__copy {
    padding: 2rem;
}

.feature-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 36, 48, 0.1);
}

.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.catalog-product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
}

.price-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 22, 29, 0.84);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
}

.order-card-tile {
    background: rgba(255, 255, 255, 0.92);
}

.order-panel__sticky {
    position: sticky;
    top: 96px;
    padding: 1.35rem;
}

.order-items {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: #f5f1ea;
}

.order-placeholder,
.form-note {
    color: #687684;
}

.public-shell .button {
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid) 58%, rgba(205, 180, 118, 0.88));
    box-shadow: 0 14px 34px rgba(84, 94, 103, 0.24);
}

.public-shell .button-secondary,
.public-shell .button-ghost {
    background: rgba(255, 255, 255, 0.92);
    color: #1b2430;
    box-shadow: inset 0 0 0 1px rgba(27, 36, 48, 0.12);
}

@media (max-width: 1180px) {
    .premium-hero__grid,
    .premium-pagehead__grid,
    .editorial-section__header,
    .catalog-section__header,
    .catalog-feature,
    .about-hero,
    .about-editorial,
    .service-panel--compact,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

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

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

    .service-panel__steps {
        grid-template-columns: 1fr;
    }

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

    .contact-map-card,
    .contact-map-card iframe {
        min-height: 260px;
    }

    .premium-pagehead--about h1 {
        max-width: 12ch;
    }

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

    .fao-zone__layout {
        grid-template-columns: 1fr;
    }

    .fao-zone__network {
        opacity: 0.88;
    }

    .admin-brand-grid,
    .hero-command-panel__stats {
        grid-template-columns: 1fr;
    }

    .brand-story-row,
    .brand-story-row--reverse {
        grid-template-columns: 1fr;
    }

    .about-editorial__lead {
        grid-column: 1 / -1;
    }

    .certificate-sheet,
    .certificate-sheet--featured {
        grid-column: span 1;
    }
}

@media (max-width: 780px) {
    .premium-band,
    .hero-frames,
    .collection-grid,
    .editorial-grid,
    .catalog-product-grid {
        grid-template-columns: 1fr;
    }

    .collection-card__media,
    .editorial-card--lead .editorial-card__media,
    .catalog-feature__media {
        aspect-ratio: 4 / 3;
        min-height: auto;
    }

    .editorial-section__header,
    .catalog-section__header {
        gap: 1rem;
    }

    .hero-command-panel {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .hero-command-panel__brands {
        flex-direction: column;
    }

    .brand-story-row__logo,
    .brand-story-row__content {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .fao-zone__route-glow {
        stroke-width: 1.2;
    }

    .fao-zone__route-line {
        stroke-width: 0.58;
    }

    .service-panel {
        padding: 1.3rem;
        gap: 1.15rem;
    }

    .service-panel__steps article {
        padding: 0.9rem 0 0;
    }

    .about-hero__topline {
        flex-direction: column;
        align-items: start;
    }

    .about-certificates {
        grid-template-columns: 1fr;
    }

    .about-hero__visual {
        justify-items: start;
        padding-bottom: 0;
    }

    .about-hero__stage,
    .about-hero__map {
        width: 100%;
    }

    .about-hero__map iframe {
        min-height: 260px;
    }

    .about-hero__orbit {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 0.85rem;
    }

    .about-hero__orbit-item,
    .about-hero__orbit-item--quality,
    .about-hero__orbit-item--consistency,
    .about-hero__orbit-item--responsibility,
    .about-hero__orbit-item--retail,
    .about-hero__orbit-item--horeca,
    .about-hero__orbit-item--supply {
        position: static;
        transform: none;
        animation: none;
    }

    .catalog-card__actions {
        grid-template-columns: 1fr;
    }

    .order-item {
        grid-template-columns: 1fr;
    }
}

/* Ocean refresh */
.public-shell {
    --brand: #1c7ed6;
    --brand-dark: #0f365c;
    --accent: var(--gold-soft);
    background:
        radial-gradient(circle at 12% 8%, rgba(118, 216, 255, 0.14), transparent 16%),
        radial-gradient(circle at 88% 12%, rgba(138, 157, 190, 0.12), transparent 18%),
        linear-gradient(180deg, #040c15 0 180px, #071726 180px 620px, #eef6fb 620px 100%);
}

.public-shell .site-header {
    background:
        linear-gradient(180deg, rgba(76, 88, 101, 0.92), rgba(60, 72, 85, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.public-shell .brand-mark {
    background: #ffffff;
}

.public-shell .button {
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid) 58%, rgba(205, 180, 118, 0.88));
    box-shadow: 0 14px 34px rgba(84, 94, 103, 0.24);
}

.public-shell .button-secondary,
.public-shell .button-ghost {
    background: rgba(255,255,255,0.94);
    color: #12314c;
}

.premium-hero::before,
.premium-pagehead::before {
    background:
        radial-gradient(circle at 14% 18%, rgba(138, 157, 190, 0.18), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(101, 131, 158, 0.18), transparent 22%),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.10), transparent 26%),
        linear-gradient(145deg, #0d141b, #263747 58%, #415363);
}

.premium-hero::after,
.premium-pagehead::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(255,255,255,0.12), transparent 34%),
        radial-gradient(ellipse at 82% 10%, rgba(138, 157, 190, 0.12), transparent 30%),
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 38%, transparent 58%);
    pointer-events: none;
}

.premium-hero::before {
    background:
        url('/assets/media/ocean-waves.svg') center bottom / cover no-repeat,
        radial-gradient(circle at 16% 22%, rgba(153, 229, 255, 0.20), transparent 18%),
        radial-gradient(circle at 82% 16%, rgba(68, 162, 255, 0.18), transparent 22%),
        radial-gradient(circle at 58% 68%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(118deg, #030b13 0%, #07192a 28%, #0b2a45 62%, #0e4a7b 100%);
    background-size: cover, auto, auto, auto, auto;
    animation: oceanDrift 22s ease-in-out infinite alternate;
}

.premium-hero::after {
    background:
        radial-gradient(circle at 24% 28%, rgba(255,255,255,0.08), transparent 14%),
        radial-gradient(circle at 78% 22%, rgba(255,255,255,0.07), transparent 14%),
        radial-gradient(circle at 84% 72%, rgba(125, 222, 255, 0.12), transparent 16%),
        linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.05) 34%, transparent 56%),
        linear-gradient(180deg, rgba(0,0,0,0.18), transparent 24%, transparent 74%, rgba(0,0,0,0.18));
    animation: heroShimmer 11s ease-in-out infinite;
}

.premium-band span,
.collection-card__body span,
.editorial-card__body span,
.catalog-product-card__body span,
.service-panel__steps strong,
.hero-issue__kicker {
    color: var(--blue-mid);
}

.hero-fish-stage {
    position: relative;
    min-height: 520px;
    border-radius: 36px;
    padding: 2rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 18%, rgba(255,255,255,0.32), transparent 16%),
        radial-gradient(circle at 76% 78%, rgba(104, 225, 255, 0.24), transparent 24%),
        linear-gradient(145deg, rgba(10, 51, 94, 0.98), rgba(19, 104, 171, 0.9) 62%, rgba(17, 76, 132, 0.96));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
        0 28px 80px rgba(8, 37, 68, 0.38),
        inset 0 1px 0 rgba(255,255,255,0.18);
    transform: rotateY(-9deg) rotateX(2deg);
    transform-style: preserve-3d;
    animation: stageBreath 9s ease-in-out infinite;
}

.hero-fish-stage::before {
    content: '';
    position: absolute;
    inset: 7% 6%;
    border-radius: 28px;
    background:
        radial-gradient(circle at 25% 35%, rgba(255,255,255,0.18), transparent 12%),
        radial-gradient(circle at 72% 32%, rgba(255,255,255,0.12), transparent 10%),
        radial-gradient(circle at 62% 62%, rgba(187, 240, 255, 0.18), transparent 12%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    pointer-events: none;
}

.hero-fish-stage::after {
    content: '';
    position: absolute;
    inset: 2.5%;
    border-radius: 32px;
    background:
        linear-gradient(118deg, rgba(255,255,255,0.20), transparent 22%, transparent 64%, rgba(255,255,255,0.12) 84%, transparent),
        linear-gradient(180deg, rgba(255,255,255,0.07), transparent 26%, transparent 72%, rgba(255,255,255,0.04));
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-stage-glow,
.hero-stage-ribbon,
.hero-stage-bubble {
    position: absolute;
    pointer-events: none;
}

.hero-stage-glow {
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.78;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-stage-glow--one {
    inset: 14% auto auto 12%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.34), rgba(170, 234, 255, 0.08) 58%, transparent 72%);
}

.hero-stage-glow--two {
    inset: auto 10% 10% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(67, 193, 255, 0.34), rgba(67, 193, 255, 0.08) 54%, transparent 72%);
    animation-delay: -3s;
}

.hero-stage-ribbon {
    inset: 18% 8% auto auto;
    width: 54%;
    height: 18%;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 203, 118, 0.92), rgba(249, 142, 39, 0.88));
    clip-path: polygon(0 0, 100% 18%, 82% 100%, 8% 78%);
    transform: translateZ(30px) rotate(-8deg);
    opacity: 0.88;
    box-shadow: 0 12px 32px rgba(255, 162, 66, 0.3);
    animation: ribbonSway 10s ease-in-out infinite;
}

.hero-stage-bubble {
    border-radius: 999px;
    background: radial-gradient(circle at 34% 34%, rgba(255,255,255,0.72), rgba(201, 240, 255, 0.16) 52%, rgba(176, 228, 255, 0.04) 72%, transparent 74%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
}

.hero-stage-bubble--one {
    top: 14%;
    right: 10%;
    width: 26px;
    height: 26px;
    animation: bubbleLift 7s ease-in-out infinite;
}

.hero-stage-bubble--two {
    bottom: 18%;
    right: 24%;
    width: 46px;
    height: 46px;
    animation: bubbleLift 9s ease-in-out infinite -2s;
}

.hero-stage-bubble--three {
    top: 48%;
    left: 9%;
    width: 18px;
    height: 18px;
    animation: bubbleLift 6.5s ease-in-out infinite -1s;
}

.hero-fish-visual {
    position: absolute;
    inset: 4% 8% auto 4%;
    width: 92%;
    max-width: 760px;
    z-index: 2;
    filter: drop-shadow(0 22px 50px rgba(5, 25, 51, 0.35));
    animation: fishFloat 6s ease-in-out infinite;
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    color: #f4fbff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 40px rgba(8, 33, 61, 0.26);
    animation: cardFloat 8s ease-in-out infinite;
}

.hero-floating-card span {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244, 251, 255, 0.74);
}

.hero-floating-card strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.05rem;
}

.hero-floating-card--top {
    top: 8%;
    right: 5%;
    min-width: 260px;
}

.hero-floating-card--bottom {
    left: 5%;
    bottom: 8%;
    min-width: 240px;
    animation-delay: -4s;
}

.premium-pagehead__side,
.hero-issue {
    background: rgba(255,255,255,0.1);
}

.catalog-chip-list a,
.catalog-chip-list button {
    background: rgba(255,255,255,0.12);
}

.catalog-chip-list button.is-active,
.catalog-chip-list a:hover,
.catalog-chip-list button:hover {
    background: linear-gradient(135deg, #30aeee, #166bb1);
}

.catalog-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 1.75rem;
}

.order-panel__sticky {
    padding: 1.5rem;
    border: 1px solid rgba(22, 94, 157, 0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,249,255,0.96));
}

.order-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cart-counter {
    min-width: 52px;
    height: 52px;
    padding: 0 0.9rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid) 56%, var(--blue-deep));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(84, 94, 103, 0.24);
}

.cart-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.cart-summary__item {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f2f9ff;
    border: 1px solid rgba(28, 126, 214, 0.1);
}

.cart-summary__item span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6d879c;
}

.cart-summary__item strong {
    display: block;
    margin-top: 0.35rem;
    color: #12314c;
    font-size: 1.1rem;
}

.order-items {
    max-height: 320px;
    overflow: auto;
    padding-right: 0.2rem;
}

.order-item {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(28, 126, 214, 0.12);
    box-shadow: 0 10px 24px rgba(18, 49, 76, 0.05);
}

.order-item strong {
    display: block;
    color: #12314c;
    margin-bottom: 0.1rem;
}

.order-item small {
    color: #6a7f93;
}

.order-item__controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cart-icon-button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: #eaf6ff;
    color: #145891;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
}

.cart-icon-button--danger {
    background: #ffe8ea;
    color: #bf4759;
}

.order-form {
    padding-top: 0.2rem;
}

.order-form .button-full {
    margin-top: 0.4rem;
}

.catalog-card.order-card-tile {
    background: #fff;
    border: 1px solid rgba(28, 126, 214, 0.1);
}

.catalog-card.order-card-tile .catalog-card__media {
    background: linear-gradient(135deg, #eff8ff, #d9f1ff);
}

.catalog-card.order-card-tile .catalog-card__actions {
    gap: 0.75rem;
}

.catalog-feature,
.catalog-product-card,
.collection-card,
.editorial-card,
.service-panel {
    border: 1px solid rgba(28, 126, 214, 0.08);
}

@keyframes fishFloat {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes oceanDrift {
    0% {
        background-position: center bottom, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: center calc(100% + 14px), 18px -10px, -14px 10px, 12px 18px, 0 0;
    }
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 0.72;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

@keyframes stageBreath {
    0%, 100% {
        transform: rotateY(-9deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: rotateY(-7deg) rotateX(1deg) translateY(-6px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.56;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.88;
        transform: scale(1.05);
    }
}

@keyframes ribbonSway {
    0%, 100% {
        transform: translateZ(30px) rotate(-8deg) translateY(0);
    }
    50% {
        transform: translateZ(30px) rotate(-5deg) translateY(-5px);
    }
}

@keyframes bubbleLift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.72;
    }
    50% {
        transform: translate3d(6px, -14px, 0) scale(1.08);
        opacity: 1;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes oceanWaveShift {
    0% {
        transform: translate3d(0, 0, 0) rotate(0.15deg) scale(1);
        opacity: 0.3;
    }

    28% {
        transform: translate3d(8px, -4px, 0) rotate(-0.18deg) scale(1.012);
        opacity: 0.38;
    }

    58% {
        transform: translate3d(14px, -7px, 0) rotate(0.12deg) scale(1.02);
        opacity: 0.44;
    }

    82% {
        transform: translate3d(6px, -3px, 0) rotate(-0.1deg) scale(1.008);
        opacity: 0.34;
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0.15deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes adminLoaderFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 180% 50%;
    }
}

@keyframes aboutOrbitFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes aboutOrbitHue {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(30deg) saturate(1.06);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

@keyframes aboutOrbitField {
    0% {
        background-position: 0 0, 8px 10px, 16px 18px;
    }
    50% {
        background-position: 10px -8px, 14px 16px, 24px 8px;
    }
    100% {
        background-position: 0 0, 8px 10px, 16px 18px;
    }
}

@media (max-width: 1180px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .hero-fish-stage {
        min-height: 420px;
        transform: none;
    }
}

@media (max-width: 780px) {
    .hero-fish-stage {
        min-height: 300px;
        padding: 1rem;
        transform: none;
        border-radius: 26px;
    }

    .hero-floating-card {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.85rem 0.95rem;
    }

    .hero-stage-ribbon {
        width: 44%;
        height: 13%;
    }

    .hero-ocean-wave {
        left: 14%;
        width: 96%;
    }

    .hero-fish-visual {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        filter: drop-shadow(0 12px 30px rgba(5, 25, 51, 0.24));
    }

    .hero-stage-glow,
    .hero-stage-bubble {
        display: none;
    }

    .cart-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    :root {
        --container: min(1200px, calc(100vw - 24px));
    }

    .premium-hero,
    .premium-pagehead {
        padding: 2.8rem 0 2.2rem;
    }

    .premium-hero__copy h1,
    .premium-pagehead h1 {
        font-size: clamp(1.62rem, 7.2vw, 2.05rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .premium-hero__script {
        font-size: 0.88rem;
    }

    .premium-hero__text,
    .premium-pagehead p {
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.13em;
    }

    .eyebrow::before {
        width: 22px;
    }

    .hero-actions .button {
        padding-inline: 0.9rem;
    }

    .brand-copy strong {
        font-size: 0.9rem;
    }

    .brand-copy small {
        font-size: 0.7rem;
    }
}

/* Catalog search, export and brochure PDF */
.catalog-brochure-note,
.catalog-editorial-note {
    display: grid;
    gap: 0.65rem;
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-brochure-note p,
.catalog-editorial-note p {
    margin: 0;
    color: rgba(241, 248, 255, 0.82);
    font-size: 0.97rem;
}

.catalog-search {
    display: grid;
    gap: 0.35rem;
}

.catalog-search span {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 248, 255, 0.82);
}

.catalog-search input {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.catalog-search input::placeholder {
    color: rgba(240, 248, 255, 0.54);
}

.catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.premium-hero::before,
.premium-pagehead::before {
    background:
        url('/assets/media/ocean-waves.svg') center bottom / cover no-repeat,
        radial-gradient(circle at 14% 18%, rgba(138, 157, 190, 0.18), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(101, 131, 158, 0.16), transparent 22%),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(145deg, #0d141b, #263747 58%, #415363);
}

.catalog-product-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
}

.catalog-product-card {
    grid-column: span 4;
}

.catalog-product-card--wide {
    grid-column: span 8;
}

.catalog-product-card--tall .catalog-product-card__media {
    aspect-ratio: 4 / 4.8;
}

.print-shell {
    background: #eef5f9;
    color: #17334e;
}

.print-catalog {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.print-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.print-toolbar__brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.print-toolbar strong,
.print-cover h1,
.print-section h2 {
    font-family: var(--font-ui);
}

.print-toolbar span {
    display: block;
    color: #5c7286;
}

.print-brand-logo {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 0.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.print-cover {
    position: relative;
    padding: 2rem;
    border-radius: 28px;
    color: #f7fbff;
    background:
        url('/assets/media/ocean-waves.svg') center/cover no-repeat,
        linear-gradient(145deg, #08213a, #1367aa);
    box-shadow: 0 18px 44px rgba(14, 63, 107, 0.2);
    margin-bottom: 1.5rem;
}

.print-cover__logo {
    display: block;
    width: 92px;
    height: 92px;
    object-fit: contain;
    padding: 0.55rem;
    margin-bottom: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.print-cover__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.print-cover__meta div {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.print-cover__meta span {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(239, 248, 255, 0.74);
}

.print-cover__meta strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.05rem;
    color: #fff;
}

.print-overview {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding: 1.6rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 89, 145, 0.08);
}

.print-overview__intro p,
.print-overview__item p {
    margin: 0;
    color: #607587;
}

.print-overview__list {
    display: grid;
    gap: 0.85rem;
}

.print-overview__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(19, 89, 145, 0.08);
}

.print-overview__item:first-child {
    border-top: 0;
    padding-top: 0;
}

.print-overview__item > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid) 56%, var(--blue-deep));
    color: #fff;
    font-weight: 800;
}

.print-overview__item strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #17334e;
}

.print-section {
    margin-top: 1.5rem;
    break-inside: auto;
}

.print-section--page-break {
    page-break-before: auto;
    break-before: auto;
}

.print-section__header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1rem;
}

.print-section__header p {
    margin: 0;
    color: #607587;
}

.print-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.print-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(19, 89, 145, 0.08);
}

.print-feature__media {
    position: relative;
    min-height: 280px;
    background: linear-gradient(135deg, #eff8ff, #d8f0ff);
}

.print-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.print-feature__body {
    padding: 1.4rem;
}

.print-feature__body span {
    display: inline-block;
    margin-bottom: 0.3rem;
    color: var(--blue-mid);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.print-feature__body h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.print-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(19, 89, 145, 0.08);
    break-inside: auto;
}

.print-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #eff8ff, #d8f0ff);
}

.print-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.print-card__body {
    padding: 1rem;
}

.print-card__body span {
    display: inline-block;
    margin-bottom: 0.3rem;
    color: var(--blue-mid);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-product-card,
    .catalog-product-card--wide {
        grid-column: span 1;
    }

    .print-overview,
    .print-feature,
    .print-grid,
    .print-section__header {
        grid-template-columns: 1fr;
    }

    .print-cover__meta {
        grid-template-columns: 1fr;
    }

    .premium-pagehead__grid--brochure {
        grid-template-columns: 1fr;
    }

    .catalog-brochure-meta {
        justify-self: start;
        width: 100%;
    }
}

@media (max-width: 780px) {
    .print-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

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

    .footer-meta {
        text-align: left;
    }

    .premium-pagehead--contact > .container,
    .contact-grid--public {
        width: min(100vw - 32px, 1100px);
    }

    .catalog-brochure-cover__topline {
        flex-direction: column;
        align-items: start;
    }
}

@page {
    size: A4 portrait;
    margin: 10mm;
}

@media print {

    .print-toolbar {
        display: none;
    }

    .print-shell {
        background: #fff;
    }

    .print-catalog {
        max-width: none;
        padding: 0;
        display: grid;
        gap: 8mm;
    }

    .print-cover {
        box-shadow: none;
        page-break-after: always;
        break-after: page;
    }

    .print-overview {
        page-break-after: always;
        break-after: page;
    }

    .print-section {
        margin-top: 0;
        display: grid;
        gap: 6mm;
    }

    .print-feature,
    .print-card {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .print-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5mm;
        align-items: start;
    }

    .print-card__media {
        aspect-ratio: 4 / 2.8;
    }

    .print-card__body {
        padding: 4mm;
    }

    .print-card__body h3 {
        font-size: 1rem;
        line-height: 1.15;
    }

    .print-card__body p {
        margin: 0;
        font-size: 0.77rem;
        line-height: 1.35;
    }

    .print-feature__body h3 {
        font-size: 1.45rem;
    }

    .print-feature__body p,
    .print-section__header p,
    .print-overview__intro p,
    .print-overview__item p {
        font-size: 0.86rem;
        line-height: 1.4;
    }
}

/* Top cart order layout */
.order-workspace {
    display: grid;
    gap: 1.2rem;
}

.cart-topbar {
    position: sticky;
    top: 102px;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 126, 214, 0.1);
    box-shadow: 0 14px 34px rgba(18, 49, 76, 0.08);
}

.cart-topbar__summary strong {
    display: block;
    margin-top: 0.1rem;
    color: #12314c;
    font-size: 1.05rem;
}

.cart-toggle-button,
.cart-close-button {
    border: 0;
    cursor: pointer;
}

.cart-toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid) 56%, var(--blue-deep));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(84, 94, 103, 0.2);
}

.cart-toggle-button b {
    min-width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.95rem;
}

.cart-drawer {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(241,249,255,0.96));
    border: 1px solid rgba(28, 126, 214, 0.1);
    box-shadow: 0 18px 40px rgba(18, 49, 76, 0.08);
}

.cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.cart-close-button {
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: #eaf6ff;
    color: #145891;
    font-weight: 800;
}

.order-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.order-items {
    max-height: 260px;
}

.catalog-layout {
    grid-template-columns: 1fr;
}

.order-panel {
    display: none;
}

@media (max-width: 780px) {
    .cart-topbar,
    .cart-drawer__header {
        flex-direction: column;
        align-items: stretch;
    }

    .order-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .fao-zone__network {
        opacity: 0.56;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-hero::before,
    .premium-hero::after,
    .hero-fish-stage,
    .hero-ocean-wave,
    .hero-stage-glow,
    .hero-stage-ribbon,
    .hero-stage-bubble,
    .hero-fish-visual,
    .hero-floating-card,
    .about-hero__orbit::before,
    .about-hero__orbit-item,
    .fao-zone__route-line {
        animation: none !important;
        transform: none !important;
        filter: none !important;
    }

    .fao-zone__route-line {
        stroke-dashoffset: 0 !important;
    }
}

@media (max-width: 780px) {
    .public-shell .site-header .main-nav.is-open {
        z-index: 30;
        background: rgba(8, 23, 38, 0.98);
        border: 1px solid rgba(205, 180, 118, 0.14);
    }

    .public-shell .site-header .main-nav.is-open a {
        color: rgba(244, 250, 255, 0.94);
    }

    .public-shell .site-header .main-nav.is-open a.active,
    .public-shell .site-header .main-nav.is-open a:hover {
        background: linear-gradient(135deg, rgba(205, 180, 118, 0.16), rgba(138, 157, 190, 0.18));
        color: #ffffff;
    }
}
