:root {
    --ink: #12231d;
    --ink-2: #1b3028;
    --ink-3: #28453a;
    --gold: #c9a26a;
    --gold-light: #e5c99f;
    --cream: #f4efe6;
    --cream-2: #ebe2d5;
    --paper: #fbfaf7;
    --white: #ffffff;
    --muted: #647068;
    --line: rgba(18, 35, 29, 0.14);
    --shadow: 0 24px 70px rgba(18, 35, 29, 0.13);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 36px;
    --container: 1280px;
    --font-body: Inter, "Segoe UI", Arial, Tahoma, sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html[dir="rtl"] body {
    font-family: Tahoma, Arial, sans-serif;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.035em;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2 {
    font-family: Tahoma, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

h1 {
    font-size: clamp(3.25rem, 7vw, 7.7rem);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4.7vw, 5.25rem);
}

h3 {
    font-size: 1.35rem;
}

svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section-pad {
    padding-block: clamp(88px, 11vw, 160px);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--ink-3);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 38px;
    height: 1px;
    background: var(--gold);
    content: "";
}

html[dir="rtl"] .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0;
}

.eyebrow-light {
    color: var(--gold-light);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

html[dir="rtl"] .button {
    letter-spacing: 0;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.language-link:focus-visible,
.gallery-item:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

.button svg {
    font-size: 1.2rem;
}

.button-gold {
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(201, 162, 106, 0.2);
}

.button-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 16px 38px rgba(201, 162, 106, 0.3);
}

.button-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.button-outline:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    background: var(--ink-3);
}

.button-small {
    min-height: 43px;
    padding: 11px 18px;
    font-size: 0.73rem;
}

.button-wide {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    font-size: 0.83rem;
    font-weight: 800;
    line-height: 2;
}

.text-link svg,
.service-content > a svg,
.button-dark svg {
    transition: transform 180ms ease;
}

.text-link:hover svg,
.service-card:hover .service-content > a svg,
.button-dark:hover svg {
    transform: translateX(4px);
}

html[dir="rtl"] .text-link svg,
html[dir="rtl"] .service-content > a svg,
html[dir="rtl"] .button-dark svg {
    transform: scaleX(-1);
}

html[dir="rtl"] .text-link:hover svg,
html[dir="rtl"] .service-card:hover .service-content > a svg,
html[dir="rtl"] .button-dark:hover svg {
    transform: scaleX(-1) translateX(4px);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 240ms ease, box-shadow 240ms ease, color 240ms ease, border-color 240ms ease;
}

.site-header.scrolled {
    color: var(--ink);
    background: rgba(251, 250, 247, 0.94);
    border-color: var(--line);
    box-shadow: 0 10px 36px rgba(18, 35, 29, 0.09);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 10px 24px rgba(8, 19, 15, 0.17);
}

.brand-logo-new {
    width: 70px;
    height: 56px;
    padding: 5px;
    border: 1px solid rgba(201, 162, 106, 0.48);
    border-radius: 14px;
    background: var(--cream);
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 2px;
    line-height: 1.2;
}

.brand-copy strong {
    max-width: 220px;
    font-size: 0.84rem;
    font-weight: 800;
}

.brand-copy small {
    color: var(--gold-light);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

html[dir="rtl"] .brand-copy small {
    letter-spacing: 0;
}

.site-header.scrolled .brand-copy small {
    color: #85663e;
}

.header-panel,
.main-nav,
.header-actions {
    display: flex;
    align-items: center;
}

.header-panel {
    flex: 1;
    justify-content: space-between;
    gap: 22px;
}

.main-nav {
    gap: clamp(14px, 1.8vw, 30px);
}

.main-nav a,
.language-link {
    position: relative;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.main-nav a::after {
    position: absolute;
    inset: auto 0 -9px;
    width: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transition: width 180ms ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    gap: 16px;
}

.language-link {
    padding: 4px;
    color: var(--gold-light);
}

.site-header.scrolled .language-link {
    color: #785b35;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 950px;
    padding-block: 180px 0;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    z-index: 2;
    inset-block-start: 130px;
    inset-inline-end: -8vw;
    width: 36vw;
    height: 36vw;
    border: 1px solid rgba(229, 201, 159, 0.18);
    border-radius: 50%;
    content: "";
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.72) contrast(1.06);
    transform: scale(1.02);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 20, 16, 0.96) 0%, rgba(8, 20, 16, 0.83) 43%, rgba(8, 20, 16, 0.22) 78%, rgba(8, 20, 16, 0.18) 100%),
        linear-gradient(0deg, rgba(8, 20, 16, 0.78), transparent 45%);
}

html[dir="rtl"] .hero-shade {
    background:
        linear-gradient(-90deg, rgba(8, 20, 16, 0.96) 0%, rgba(8, 20, 16, 0.83) 43%, rgba(8, 20, 16, 0.22) 78%, rgba(8, 20, 16, 0.18) 100%),
        linear-gradient(0deg, rgba(8, 20, 16, 0.78), transparent 45%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.55fr);
    align-items: end;
    gap: clamp(52px, 8vw, 118px);
}

.hero-copy {
    padding-bottom: 78px;
}

.hero-copy h1 {
    max-width: 900px;
    margin-bottom: 32px;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.79);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-note {
    max-width: 580px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
}

.hero-frame {
    position: relative;
    align-self: end;
    margin: 0 0 44px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 200px 200px 24px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-frame img {
    width: 100%;
    aspect-ratio: 0.78;
    border-radius: 188px 188px 17px 17px;
    object-fit: cover;
}

.hero-frame figcaption {
    position: absolute;
    inset: auto 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px 19px;
    border-radius: 0 0 16px 16px;
    background: rgba(12, 29, 23, 0.88);
    backdrop-filter: blur(12px);
}

.hero-frame figcaption span {
    color: var(--gold-light);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.hero-frame figcaption strong {
    font-size: 0.67rem;
}

.hero-trust {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item {
    display: grid;
    gap: 2px;
    padding: 25px clamp(18px, 3vw, 42px);
    border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item:last-child {
    border-inline-end: 0;
}

.trust-item strong {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
}

html[dir="rtl"] .trust-item strong {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.74rem;
}

.ticker {
    position: relative;
    z-index: 5;
    color: var(--ink);
    background: var(--gold);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 34s linear infinite;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-block: 17px;
    padding-inline-end: 28px;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

html[dir="rtl"] .ticker-track span {
    font-size: 0.78rem;
    letter-spacing: 0;
}

.ticker-track i {
    font-style: normal;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

html[dir="rtl"] .ticker-track {
    animation-direction: reverse;
}

/* Shared section layouts */
.section-heading {
    max-width: 820px;
}

.section-top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: clamp(40px, 8vw, 130px);
    margin-bottom: 64px;
}

.section-top > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.centered {
    margin-inline: auto;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

/* Intro */
.intro {
    border-bottom: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: clamp(50px, 10vw, 150px);
}

.intro-body p {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

/* Services */
.services {
    background: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    grid-column: span 4;
    min-height: 510px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 2px 0 rgba(18, 35, 29, 0.03);
    overflow: hidden;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-featured {
    grid-column: span 8;
}

.service-image {
    height: 255px;
    overflow: hidden;
}

.service-featured .service-image {
    height: 320px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.service-card:hover .service-image img {
    transform: scale(1.045);
}

.service-content {
    position: relative;
    min-height: 255px;
    padding: 30px 74px 30px 30px;
}

html[dir="rtl"] .service-content {
    padding: 30px 30px 30px 74px;
}

.service-content h3 {
    margin-bottom: 14px;
}

.service-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.75;
}

.service-number {
    display: block;
    margin-bottom: 22px;
    color: #9d7d52;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.service-content > a {
    position: absolute;
    inset-block-end: 28px;
    inset-inline-end: 26px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    transition: background 180ms ease, color 180ms ease;
}

.service-card:hover .service-content > a {
    color: var(--white);
    background: var(--ink);
}

/* Furniture catalogue */
.catalogue {
    background: var(--paper);
}

.catalogue-heading {
    margin-bottom: 54px;
}

.catalogue-intro {
    display: grid;
    gap: 20px;
}

.catalogue-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.catalogue-intro > span {
    justify-self: start;
    padding: 8px 13px;
    border: 1px solid rgba(157, 125, 82, 0.34);
    border-radius: 999px;
    color: #785b35;
    background: rgba(201, 162, 106, 0.11);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

html[dir="rtl"] .catalogue-intro > span {
    letter-spacing: 0;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.catalogue-card {
    display: grid;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 3px 0 rgba(18, 35, 29, 0.02);
    cursor: zoom-in;
    overflow: hidden;
    text-align: start;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.catalogue-card:hover {
    border-color: rgba(201, 162, 106, 0.62);
    box-shadow: 0 22px 48px rgba(18, 35, 29, 0.12);
    transform: translateY(-6px);
}

.catalogue-image {
    position: relative;
    display: block;
    aspect-ratio: 0.83;
    background: var(--cream);
    overflow: hidden;
}

.catalogue-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 68%, rgba(8, 20, 16, 0.28));
    content: "";
    opacity: 0;
    transition: opacity 240ms ease;
}

.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.catalogue-card:hover .catalogue-image img {
    transform: scale(1.035);
}

.catalogue-card:hover .catalogue-image::after {
    opacity: 1;
}

.catalogue-image i {
    position: absolute;
    z-index: 2;
    inset-inline-end: 14px;
    inset-block-end: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 20px rgba(8, 20, 16, 0.15);
    font-style: normal;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.catalogue-card:hover .catalogue-image i {
    opacity: 1;
    transform: translateY(0);
}

.catalogue-content {
    display: grid;
    gap: 6px;
    min-height: 104px;
    padding: 20px;
}

.catalogue-content small {
    color: #8a6a42;
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

html[dir="rtl"] .catalogue-content small {
    letter-spacing: 0;
}

.catalogue-content strong {
    font-size: 0.98rem;
    line-height: 1.4;
}

.catalogue-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 32px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--cream);
}

.catalogue-cta p {
    margin: 0;
    font-weight: 750;
}

/* Portfolio */
.portfolio {
    color: var(--white);
    background: var(--ink);
}

.portfolio-heading > p {
    color: rgba(255, 255, 255, 0.6);
}

.gallery-grid {
    display: grid;
    grid-auto-rows: 220px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.gallery-item {
    position: relative;
    grid-column: span 3;
    grid-row: span 1;
    padding: 0;
    border: 0;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: var(--ink-2);
    cursor: zoom-in;
    overflow: hidden;
}

.gallery-item-1,
.gallery-item-6 {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item-4,
.gallery-item-9 {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 350ms ease;
}

.gallery-item:hover img {
    filter: brightness(0.72);
    transform: scale(1.045);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    padding: 46px 20px 19px;
    text-align: start;
    background: linear-gradient(transparent, rgba(6, 17, 13, 0.92));
}

.gallery-overlay small {
    color: var(--gold-light);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-overlay strong {
    font-size: 0.95rem;
}

.gallery-overlay i {
    position: absolute;
    inset-inline-end: 17px;
    inset-block-end: 19px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    font-style: normal;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: translateY(0);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(60px, 10vw, 145px);
}

.about-collage {
    position: relative;
    min-height: 690px;
}

.about-image-main {
    width: 83%;
    height: 590px;
    border-radius: 240px 240px 24px 24px;
    object-fit: cover;
}

.about-image-small {
    position: absolute;
    inset-inline-end: 0;
    inset-block-end: 0;
    width: 44%;
    aspect-ratio: 0.82;
    border: 10px solid var(--paper);
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-stamp {
    position: absolute;
    inset-block-start: 38px;
    inset-inline-end: 2%;
    display: grid;
    width: 112px;
    height: 112px;
    place-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    background: var(--ink);
    text-align: center;
    box-shadow: 0 18px 45px rgba(18, 35, 29, 0.18);
}

.about-stamp b {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.about-stamp small {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.about-copy h2 {
    margin-bottom: 30px;
}

.about-copy > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 15px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 650;
}

.check-list svg {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    padding: 4px;
    color: var(--white);
    border-radius: 50%;
    background: var(--ink);
}

/* Event types */
.event-types {
    padding-block-start: 0;
}

.event-types .section-heading {
    max-width: 920px;
    margin-bottom: 58px;
}

.event-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.event-type-card {
    min-height: 300px;
    padding: 35px;
    border-inline-end: 1px solid var(--line);
    background: var(--white);
    transition: color 240ms ease, background 240ms ease;
}

.event-type-card:last-child {
    border-inline-end: 0;
}

.event-type-card:hover {
    color: var(--white);
    background: var(--ink);
}

.event-type-card > span {
    display: inline-block;
    margin-bottom: 82px;
    color: #9d7d52;
    font-size: 0.67rem;
    font-weight: 850;
}

.event-type-card h3 {
    margin-bottom: 13px;
}

.event-type-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.event-type-card:hover p {
    color: rgba(255, 255, 255, 0.66);
}

/* Process */
.process {
    color: var(--white);
    background: var(--ink-2);
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(350px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(60px, 10vw, 140px);
}

.process-media {
    position: relative;
}

.process-media::before {
    position: absolute;
    inset: 26px -26px -26px 26px;
    border: 1px solid rgba(201, 162, 106, 0.45);
    border-radius: 220px 220px 20px 20px;
    content: "";
}

html[dir="rtl"] .process-media::before {
    inset: 26px 26px -26px -26px;
}

.process-media img {
    position: relative;
    width: 100%;
    aspect-ratio: 0.82;
    border-radius: 220px 220px 18px 18px;
    object-fit: cover;
}

.process-label {
    position: absolute;
    inset: auto 24px 24px;
    display: grid;
    gap: 2px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(12, 29, 23, 0.88);
    backdrop-filter: blur(12px);
}

.process-label small {
    color: var(--gold-light);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-label strong {
    font-size: 0.78rem;
}

.process-content .section-heading {
    margin-bottom: 42px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 22px;
    padding-block: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list > li > span {
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 800;
}

.process-list h3 {
    margin-bottom: 8px;
}

.process-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 42px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.faq-contact-card > span {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
}

.faq-contact-card div {
    display: grid;
}

.faq-contact-card small {
    color: var(--muted);
    font-size: 0.68rem;
}

.faq-contact-card a {
    font-weight: 800;
}

.accordion details {
    border-top: 1px solid var(--line);
}

.accordion details:last-child {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 750;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-style: normal;
    font-weight: 400;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.accordion details[open] summary i {
    color: var(--white);
    background: var(--ink);
    transform: rotate(45deg);
}

.accordion details p {
    max-width: 720px;
    margin: -4px 52px 26px 0;
    color: var(--muted);
    font-size: 0.9rem;
}

html[dir="rtl"] .accordion details p {
    margin: -4px 0 26px 52px;
}

/* Quote */
.quote {
    padding-block-start: 30px;
    background: var(--paper);
}

.quote-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(55px, 9vw, 125px);
    padding: clamp(45px, 7vw, 90px);
    color: var(--white);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 10% 0%, rgba(201, 162, 106, 0.18), transparent 35%),
        var(--ink);
    box-shadow: var(--shadow);
}

.quote-copy h2 {
    margin-bottom: 26px;
}

.quote-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.66);
}

.direct-contact {
    display: grid;
    gap: 8px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.direct-contact h3 {
    margin-bottom: 0;
}

.direct-contact p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}

.direct-contact a,
.direct-contact > span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.direct-contact svg {
    color: var(--gold-light);
}

.quote-form {
    display: grid;
    gap: 19px;
    padding: clamp(25px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quote-form label {
    display: grid;
    gap: 7px;
}

.quote-form label > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    transition: border-color 180ms ease, background 180ms ease;
}

.quote-form input,
.quote-form select {
    height: 51px;
    padding: 0 14px;
}

.quote-form textarea {
    min-height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

.quote-form select option {
    color: var(--ink);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

.quote-form .input-error {
    border-color: #ff9e8f;
}

.form-error {
    margin: -4px 0 0;
    color: #ffc2b8;
    font-size: 0.77rem;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #0b1713;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(150px, 0.65fr));
    gap: 70px;
    padding-block: 78px 58px;
}

.brand-footer {
    color: var(--white);
}

.footer-brand > p {
    max-width: 480px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.84rem;
}

.footer-logo-card {
    display: block;
    width: min(280px, 100%);
    padding: 16px;
    border: 1px solid rgba(201, 162, 106, 0.32);
    border-radius: 20px;
    background: var(--cream);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.footer-logo-card img {
    width: 100%;
    height: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 12px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

html[dir="rtl"] .footer-column h2 {
    font-family: Tahoma, Arial, sans-serif;
    letter-spacing: 0;
}

.footer-column > a,
.footer-column > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.79rem;
}

.footer-column > a:hover,
.developer-credit a:hover {
    color: var(--gold-light);
}

.footer-contact svg {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.65rem;
}

.developer-credit {
    text-align: end;
}

.developer-credit a {
    color: var(--white);
    transition: color 180ms ease;
}

/* Floating controls */
.floating-actions {
    position: fixed;
    z-index: 800;
    inset-inline-end: 20px;
    inset-block-end: 22px;
    display: grid;
    gap: 10px;
}

.floating-button,
.back-to-top {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(6, 17, 13, 0.28);
    transition: transform 180ms ease;
}

.floating-button:hover,
.back-to-top:hover {
    transform: translateY(-3px);
}

.floating-whatsapp {
    background: #20b969;
}

.floating-call {
    background: var(--ink);
}

.floating-button svg {
    width: 22px;
    height: 22px;
}

.back-to-top {
    position: fixed;
    z-index: 790;
    inset-inline-start: 20px;
    inset-block-end: 22px;
    width: 44px;
    height: 44px;
    color: var(--ink);
    background: var(--gold);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    width: min(92vw, 1180px);
    max-width: none;
    height: min(90vh, 850px);
    max-height: none;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    color: var(--white);
    background: rgba(10, 23, 18, 0.96);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
}

.lightbox::backdrop {
    background: rgba(4, 10, 8, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox figure {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    margin: 0;
}

.lightbox img {
    max-width: 100%;
    max-height: calc(100% - 42px);
    border-radius: 10px;
    object-fit: contain;
}

.lightbox figcaption {
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    inset-block-start: 26px;
    inset-inline-end: 26px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: var(--white);
    background: rgba(8, 20, 16, 0.75);
    cursor: pointer;
}

/* 404 */
.not-found {
    min-height: 80vh;
    padding-block: 190px 120px;
    text-align: center;
}

.not-found .container {
    max-width: 720px;
}

.not-found .eyebrow {
    justify-content: center;
}

.not-found h1 {
    margin-bottom: 24px;
}

.not-found p:not(.eyebrow) {
    margin-bottom: 30px;
    color: var(--muted);
}

/* Motion */
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.7,.2,1);
}

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

.js .reveal-delay {
    transition-delay: 120ms;
}

@media (max-width: 1120px) {
    .main-nav {
        gap: 14px;
    }

    .main-nav a:nth-child(4),
    .main-nav a:nth-child(5) {
        display: none;
    }

    .hero {
        min-height: 900px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 48px;
    }

    .service-card {
        grid-column: span 6;
    }

    .service-featured {
        grid-column: span 6;
    }

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

    .gallery-item {
        grid-column: span 4;
    }

    .gallery-item-1,
    .gallery-item-6 {
        grid-column: span 8;
    }

    .gallery-item-4,
    .gallery-item-9 {
        grid-column: span 4;
    }

    .about-grid {
        gap: 70px;
    }

    .event-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-type-card:nth-child(2) {
        border-inline-end: 0;
    }

    .event-type-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 880px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .site-header {
        border-bottom-color: rgba(255, 255, 255, 0.18);
    }

    .header-inner {
        min-height: 76px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-logo-new {
        width: 64px;
        height: 48px;
    }

    .brand-copy strong {
        max-width: 190px;
        font-size: 0.74rem;
    }

    .menu-toggle {
        display: block;
    }

    .header-panel {
        position: fixed;
        inset: 76px 0 auto;
        display: grid;
        max-height: calc(100vh - 76px);
        padding: 26px 22px 34px;
        color: var(--ink);
        background: var(--paper);
        box-shadow: 0 22px 50px rgba(18, 35, 29, 0.14);
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 200ms ease, transform 200ms ease;
    }

    .header-panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav {
        display: grid;
        gap: 0;
    }

    .main-nav a,
    .main-nav a:nth-child(4),
    .main-nav a:nth-child(5) {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
    }

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

    .header-actions {
        justify-content: space-between;
        margin-top: 18px;
    }

    .language-link {
        color: #785b35;
    }

    .hero {
        min-height: auto;
        padding-block-start: 148px;
    }

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

    .hero-copy {
        padding-bottom: 0;
    }

    .hero-copy h1 {
        max-width: 760px;
    }

    .hero-frame {
        justify-self: end;
        width: min(70%, 420px);
        margin-bottom: 38px;
    }

    .hero-trust {
        width: 100%;
    }

    .intro-grid,
    .section-top,
    .about-grid,
    .process-grid,
    .faq-grid,
    .quote-shell {
        grid-template-columns: 1fr;
    }

    .section-top,
    .intro-grid {
        gap: 30px;
    }

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

    .about-copy {
        max-width: 700px;
    }

    .process-grid {
        gap: 95px;
    }

    .process-media {
        width: min(80%, 540px);
        margin-inline: auto;
    }

    .faq-heading {
        position: static;
    }

    .faq-contact-card {
        max-width: 380px;
    }

    .quote-shell {
        gap: 42px;
    }

    .footer-grid {
        grid-template-columns: 1.6fr 0.7fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .developer-credit {
        text-align: start;
    }
}

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

    .section-pad {
        padding-block: 78px;
    }

    h1 {
        font-size: clamp(2.85rem, 15vw, 4.8rem);
    }

    h2 {
        font-size: clamp(2.15rem, 11vw, 3.5rem);
    }

    html[dir="rtl"] h1 {
        font-size: clamp(2.55rem, 12.7vw, 4.1rem);
    }

    html[dir="rtl"] h2 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .brand-copy strong {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero {
        padding-block-start: 126px;
    }

    .hero::before {
        width: 70vw;
        height: 70vw;
    }

    .hero-shade,
    html[dir="rtl"] .hero-shade {
        background: linear-gradient(0deg, rgba(8, 20, 16, 0.95) 8%, rgba(8, 20, 16, 0.72) 72%, rgba(8, 20, 16, 0.78) 100%);
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-frame {
        justify-self: center;
        width: min(88%, 380px);
    }

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

    .trust-item {
        padding: 17px 15px;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

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

    .service-card,
    .service-featured {
        grid-column: 1 / -1;
    }

    .service-image,
    .service-featured .service-image {
        height: 245px;
    }

    .gallery-grid {
        grid-auto-rows: 260px;
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item-1,
    .gallery-item-4,
    .gallery-item-6,
    .gallery-item-9 {
        grid-column: 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(n+9) {
        display: none;
    }

    .catalogue-grid {
        gap: 12px;
    }

    .catalogue-content {
        min-height: 92px;
        padding: 14px;
    }

    .catalogue-content strong {
        font-size: 0.82rem;
    }

    .catalogue-content small {
        font-size: 0.55rem;
    }

    .catalogue-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 20px;
    }

    .catalogue-cta .button {
        width: 100%;
    }

    .about-collage {
        min-height: 520px;
    }

    .about-image-main {
        height: 470px;
    }

    .about-stamp {
        width: 86px;
        height: 86px;
    }

    .event-type-grid {
        grid-template-columns: 1fr;
    }

    .event-type-card,
    .event-type-card:nth-child(2) {
        min-height: 240px;
        border-inline-end: 0;
        border-bottom: 1px solid var(--line);
    }

    .event-type-card:last-child {
        border-bottom: 0;
    }

    .event-type-card > span {
        margin-bottom: 50px;
    }

    .process-media {
        width: calc(100% - 20px);
    }

    .process-media::before {
        inset: 15px -15px -15px 15px;
    }

    html[dir="rtl"] .process-media::before {
        inset: 15px 15px -15px -15px;
    }

    .process-list li {
        grid-template-columns: 45px 1fr;
    }

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

    .quote {
        padding-block-start: 0;
    }

    .quote-shell {
        width: 100%;
        padding: 58px 18px;
        border-radius: 0;
    }

    .quote-form {
        padding: 22px 16px;
    }

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

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        padding-block-end: 95px;
    }

    .developer-credit {
        display: grid;
        gap: 3px;
    }

    .floating-actions {
        inset-inline-end: 14px;
        inset-block-end: 14px;
    }

    .back-to-top {
        inset-inline-start: 14px;
        inset-block-end: 14px;
    }

    .lightbox {
        width: 96vw;
        height: 84vh;
        padding: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

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