@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@600;700&family=Lexend:wght@300;400;500&family=Rakkas&display=swap');

:root {
    --bg: #f4f0e8;
    --bg-soft: #efe4d3;
    --paper: rgba(255, 252, 247, 0.82);
    --surface: #fffaf3;
    --surface-strong: #f6ecdf;
    --ink: #13231d;
    --muted: #6b756f;
    --line: rgba(19, 35, 29, 0.1);
    --accent: #be7f38;
    --accent-deep: #8a5821;
    --forest: #173128;
    --shadow: 0 24px 80px rgba(17, 31, 26, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.no-smooth-scroll { scroll-behavior: auto; }

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(190, 127, 56, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(23, 49, 40, 0.14), transparent 24%),
        var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 18px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(10, 21, 17, 0.74);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(6, 14, 11, 0.18);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand img {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.82);
}

.site-nav a {
    position: relative;
    font-size: 0.96rem;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span { width: 18px; height: 2px; background: #fff; display: block; }
.hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-carousel {
    position: relative;
    display: block;
}

.hero-slide {
    display: none;
    position: relative;
    overflow: hidden;
    z-index: 0;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: none;
}

.hero-slide.is-active {
    display: block;
    animation: heroFade 0.45s ease both;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(10, 22, 18, 0.9) 0%, rgba(10, 22, 18, 0.7) 40%, rgba(10, 22, 18, 0.42) 100%),
        linear-gradient(180deg, rgba(10, 22, 18, 0.24) 0%, rgba(10, 22, 18, 0.5) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: clamp(620px, 78svh, 760px);
    padding: 124px 0 118px;
}

.hero-copy {
    max-width: 560px;
    color: #fff;
    padding: 0;
    animation: heroUp 0.6s ease both;
}

.eyebrow, .section-kicker, .panel-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 700;
}

.eyebrow { margin: 0 0 14px; color: rgba(255, 255, 255, 0.74); }

.hero-copy h1,
.section h2 {
    margin: 0;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    max-width: 14ch;
}

.hero-description {
    max-width: 54ch;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.84);
    margin: 20px 0 0;
}

.hero-actions, .hero-controls, .section-head, .footer-wrap, .contact-list, .social-links, .about-points { display: flex; }

.hero-actions { gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-copy .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }

.btn-solid { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }
.btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.05); }
.btn-outline-dark {
    color: var(--forest);
    border-color: rgba(19, 35, 29, 0.14);
    background: rgba(255, 255, 255, 0.74);
}
.btn-full { width: 100%; }

.hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    width: var(--container);
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    z-index: 2;
}

.hero-pagination, .hero-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-dot, .hero-arrow { border: 0; cursor: pointer; }

.hero-dot {
    width: 38px;
    height: 6px;
    border-radius: 999px;
    background: rgba(214, 217, 220, 0.42);
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active { background: var(--accent); transform: scaleX(1.08); }

.hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 32px rgba(10, 22, 18, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 18px 36px rgba(10, 22, 18, 0.2);
}

.section { position: relative; padding: 88px 0; }
.section-intro { padding: 40px 0 12px; }

.intro-grid, .about-grid, .faq-grid, .contact-grid {
    display: grid;
    gap: 34px;
}

.intro-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); align-items: center; }
.intro-card {
    width: 100%;
    margin: 0 auto;
    padding: 34px 40px;
    text-align: center;
    border-radius: 32px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(246, 236, 223, 0.94));
    box-shadow: var(--shadow);
}

.section-kicker { margin: 0 0 14px; color: var(--accent-deep); }
.section h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); max-width: 12ch; }

.intro-card .section-kicker { margin-bottom: 18px; }
.intro-source {
    margin: 18px 0 0;
    letter-spacing: 0.14em;
    color: var(--accent-deep);
}

.intro-arabic {
    margin: 0;
    font-family: 'Rakkas', serif;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.4;
    color: var(--forest);
}

.intro-romaji {
    margin: 10px 0 0;
    font-size: clamp(1rem, 2vw, 1.16rem);
    letter-spacing: 0.04em;
    color: var(--accent-deep);
}

.intro-translation {
    margin: 18px auto 0;
    max-width: 30ch;
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.8;
    font-style: italic;
    color: var(--muted);
}

.intro-grid p:last-child,
.about-content p,
.faq-intro p,
.testimonial-card p,
.contact-copy { line-height: 1.85; color: var(--muted); }

.about-grid { grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); align-items: stretch; }
.about-section,
.catalog-section,
.gallery-section,
.faq-section,
.testimonial-section,
.partnership-section,
.contact-section { scroll-margin-top: 66px; }
.about-visual {
    position: relative;
    height: 100%;
    display: flex;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: -28px auto auto -22px;
    width: 76%;
    height: 72%;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(190, 127, 56, 0.2), rgba(23, 49, 40, 0.1));
    z-index: 0;
}

.about-visual img {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    width: 100%;
    border-radius: var(--radius-xl);
    height: 100%;
    min-height: 0;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-content h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
}

.about-points { gap: 16px; flex-wrap: wrap; margin-top: 28px; }

.about-points div,
.testimonial-card,
.contact-map,
.catalog-card,
.faq-item,
.gallery-card {
    border: 1px solid var(--line);
    background: var(--paper);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.about-points div { flex: 1 1 220px; border-radius: var(--radius-md); padding: 20px; }
.about-points strong, .catalog-card h3, .testimonial-card h3 { display: block; margin-bottom: 6px; }
.about-points span, .catalog-specs span, .catalog-topline span, .testimonial-head span, .contact-item span { color: var(--muted); }

.section-head {
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.section-head h2 { max-width: 12ch; }
.section-title-compact {
    max-width: none !important;
    font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
}
.catalog-section .section-title-compact,
.gallery-section .section-title-compact,
.faq-section .section-title-compact,
.testimonial-section .section-title-compact,
.partnership-section .section-title-compact {
    color: var(--accent);
}
.section-head-center {
    justify-content: center;
    text-align: center;
}
.catalog-section .section-head h2 { max-width: none; }
.section-meta { display: flex; gap: 10px; flex-wrap: wrap; }

.catalog-filter-grid,
.catalog-summary,
.catalog-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.catalog-filter-panel {
    margin-bottom: 18px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(19, 35, 29, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.42);
    box-shadow: none;
}

html.catalog-filter-landing .catalog-filter-panel,
html.catalog-filter-landing .catalog-summary,
html.catalog-filter-landing .catalog-grid,
html.catalog-filter-landing .catalog-pagination {
    opacity: 0;
    transform: translateY(18px);
    animation: catalogFilterReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.catalog-filter-landing .catalog-summary { animation-delay: 0.08s; }
html.catalog-filter-landing .catalog-grid { animation-delay: 0.14s; }
html.catalog-filter-landing .catalog-pagination { animation-delay: 0.2s; }

.catalog-filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.filter-field {
    display: grid;
    gap: 6px;
    flex: 1 1 calc((100% - 36px) / 4);
    min-width: 0;
}

.filter-field-search { flex-basis: calc((100% - 36px) / 4); }

.filter-field label {
    padding-left: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(19, 35, 29, 0.54);
}

.filter-field input,
.filter-field select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 13px;
    border: 1px solid rgba(19, 35, 29, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: none;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.filter-field input::placeholder {
    color: rgba(82, 93, 88, 0.62);
}

.filter-field input:focus,
.filter-field select:focus {
    outline: none;
    border-color: rgba(190, 127, 56, 0.3);
    box-shadow: 0 0 0 3px rgba(190, 127, 56, 0.08);
    background: #fff;
}

.filter-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    border-radius: 13px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25L7 9.25L11 5.25' stroke='%23907149' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center / 14px 14px,
        rgba(255, 255, 255, 0.92);
    cursor: pointer;
}

.filter-field select option {
    color: var(--ink);
    background: #fff;
}

.catalog-filter-actions {
    display: flex;
    gap: 12px;
    width: auto;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    padding-top: 0;
}

.catalog-filter-actions .btn {
    width: auto;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--forest);
    box-shadow: 0 12px 28px rgba(17, 31, 26, 0.08);
}

.filter-chip strong { font-size: 0.88rem; }
.filter-chip.is-active { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; }

.meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    color: var(--forest);
    font-size: 0.92rem;
}

.meta-chip-warning { max-width: 360px; color: var(--accent-deep); }
.catalog-summary {
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.catalog-note { color: var(--accent-deep); }

.catalog-grid, .gallery-grid, .testimonial-grid { display: grid; gap: 22px; }
.catalog-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 14px; }

.catalog-card {
    border: 1px solid rgba(190, 127, 56, 0.22);
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: rgba(255, 252, 247, 0.36);
    box-shadow: none;
}

.catalog-media {
    position: relative;
    aspect-ratio: 1 / 1.02;
    overflow: hidden;
    border-bottom: 1px solid rgba(190, 127, 56, 0.16);
}

.catalog-media img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-media-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(190, 127, 56, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(244, 240, 232, 0.98), rgba(239, 228, 211, 0.94));
    color: var(--forest);
}

.catalog-media-placeholder span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(19, 35, 29, 0.56);
}

.catalog-media-placeholder strong {
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--accent-deep);
}

.catalog-card:hover .catalog-media img,
.gallery-card:hover img { transform: scale(1.06); }

.status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    color: #fff;
    background: rgba(27, 122, 71, 0.92);
}

.status-badge.is-sold { background: rgba(142, 41, 41, 0.92); }
.status-badge.is-booked { background: rgba(190, 127, 56, 0.94); color: #fff; }
.status-badge.is-shipped { background: rgba(41, 92, 142, 0.94); }
.catalog-body {
    padding: 12px 12px 14px;
    display: grid;
    gap: 8px;
    flex: 1;
}

.catalog-specs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.catalog-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(19, 35, 29, 0.12);
    font-size: 0.74rem;
}

.catalog-specs li strong {
    font-size: 0.78rem;
    text-align: right;
}

.catalog-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
}

.catalog-empty {
    padding: 26px 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    color: var(--muted);
    text-align: center;
}

.catalog-empty p { margin: 0; }

.catalog-pagination {
    justify-content: center;
    margin-top: 22px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    color: var(--forest);
    box-shadow: 0 12px 28px rgba(17, 31, 26, 0.08);
}

.page-link.is-disabled {
    opacity: 0.46;
    pointer-events: none;
}

.page-link.is-current {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    border-color: transparent;
}

.pagination-info {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.54);
}

.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gallery-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 24px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(8, 17, 14, 0.75) 100%);
}

.gallery-card span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    color: #fff;
    text-align: left;
    font-weight: 700;
}

.gallery-actions {
    display: none;
    justify-content: center;
    margin-top: 22px;
}

.gallery-toggle[hidden] {
    display: none !important;
}

.faq-grid { grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr); align-items: start; }
.faq-list { display: grid; gap: 14px; width: 100%; max-width: none; margin: 0; }
.faq-item { border-radius: 22px; overflow: hidden; }

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
}

.faq-question i { transition: transform 0.25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: var(--muted); line-height: 1.75; }
.faq-item.is-open .faq-question i { transform: rotate(45deg); }
.faq-item.is-open .faq-answer { max-height: 320px; }

.testimonial-section-head h2 { max-width: 16ch; }

.testimonial-carousel {
    --testimonial-columns: 3;
    --testimonial-gap: 22px;
    display: grid;
    gap: 20px;
}

.testimonial-carousel-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-arrow {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(19, 35, 29, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--forest);
    box-shadow: 0 16px 32px rgba(10, 22, 18, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(19, 35, 29, 0.28);
    box-shadow: 0 18px 36px rgba(10, 22, 18, 0.12);
    color: var(--forest);
}

.testimonial-viewport {
    overflow: hidden;
    padding: 4px 2px 10px;
}

.testimonial-track {
    display: flex;
    gap: var(--testimonial-gap);
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
    position: relative;
    flex: 0 0 calc((100% - (var(--testimonial-columns) - 1) * var(--testimonial-gap)) / var(--testimonial-columns));
    min-width: 0;
    padding: 28px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(190, 127, 56, 0.2);
    font-family: Georgia, serif;
}

.testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(23, 49, 40, 0.08);
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    font-size: 0.82rem;
}

.testimonial-copy {
    margin: 0;
    min-height: 168px;
    padding-right: 20px;
    color: var(--ink);
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed rgba(19, 35, 29, 0.12);
}

.testimonial-avatar {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(190, 127, 56, 0.96), rgba(138, 88, 33, 0.82));
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 22px rgba(17, 31, 26, 0.12);
}

.testimonial-head h3 { margin: 0 0 4px; }

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(19, 35, 29, 0.16);
    transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.testimonial-dot.is-active {
    width: 34px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.partnership-head h2 { max-width: 14ch; }

.partnership-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 1.04fr) minmax(0, 0.96fr);
    gap: 30px;
    align-items: center;
}

.partnership-visual-shell {
    position: relative;
    padding: 26px 22px 22px;
    border-radius: 34px;
    border: 1px solid rgba(19, 35, 29, 0.08);
    background:
        radial-gradient(circle at top left, rgba(190, 127, 56, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 236, 226, 0.88));
    box-shadow: none;
    overflow: hidden;
}

.partnership-visual-shell::before {
    content: '';
    position: absolute;
    inset: 22px auto auto 22px;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    border: 1px solid rgba(190, 127, 56, 0.2);
    background: rgba(255, 255, 255, 0.34);
}

.partnership-visual-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(19, 35, 29, 0.1);
    box-shadow: none;
}

.partnership-visual-card img {
    display: block;
    width: 100%;
    min-height: 460px;
    object-fit: cover;
}

.partnership-content {
    display: grid;
    gap: 18px;
}

.partnership-intro {
    display: grid;
    gap: 10px;
    padding-left: 18px;
    border-left: 3px solid rgba(190, 127, 56, 0.34);
}

.partnership-intro-label {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.partnership-intro p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--ink);
}

.partnership-intro strong {
    color: var(--forest);
}

.partnership-panel,
.partnership-points div {
    border: 1px solid var(--line);
    background: transparent;
    backdrop-filter: none;
}

.partnership-panel {
    padding: 28px;
    border-radius: 28px;
    box-shadow: none;
}

.partnership-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(23, 49, 40, 0.08);
    color: var(--forest);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partnership-panel h3 {
    margin: 16px 0 10px;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.1;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--forest);
}

.partnership-panel p {
    margin: 0;
    line-height: 1.85;
    color: var(--muted);
}

.partnership-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.partnership-points div {
    padding: 20px;
    border-radius: 24px;
    box-shadow: none;
}

.partnership-points strong {
    display: block;
    margin-bottom: 8px;
    color: var(--forest);
}

.partnership-points span {
    color: var(--muted);
    line-height: 1.75;
}

.team-head {
    justify-content: center;
    text-align: center;
    margin-bottom: 34px;
}

.team-head h2 {
    max-width: none;
}

.team-layout {
    display: grid;
    gap: 40px;
}

.team-row {
    display: grid;
    gap: 28px;
    width: 100%;
}

.team-row-leads {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
}

.team-row-field {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.team-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 18px;
    margin-bottom: -8px;
}

.team-divider span {
    display: inline-block;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 2px solid rgba(190, 127, 56, 0.28);
    background: transparent;
    color: var(--accent-deep);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.team-card {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 16px;
    text-align: center;
}

.team-card-body {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    box-shadow: none;
}

.team-photo {
    position: relative;
    width: 214px;
    height: 214px;
    padding: 5px;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(190, 127, 56, 0.96), rgba(138, 88, 33, 0.82));
    box-shadow: 0 18px 34px rgba(17, 31, 26, 0.1);
}

.team-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 252, 247, 0.96);
}

.team-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.45;
    color: var(--forest);
}

.team-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.team-card-field {
    gap: 0;
}

.team-card-body-field {
    display: none;
}

.team-card-field .team-photo {
    width: 220px;
    height: 220px;
}

.contact-grid { grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr); align-items: stretch; }

.contact-copy {
    padding: 0;
}

.contact-copy h2 {
    max-width: 13ch;
    color: var(--forest);
}
.contact-list { flex-direction: column; gap: 16px; margin: 34px 0 28px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 20px 20px;
    border-radius: 24px;
    border: 1px solid rgba(190, 127, 56, 0.28);
    background: transparent;
    box-shadow: none;
}

.contact-item i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-deep);
    background: #dbdbd3;
    font-size: 1.12rem;
    flex: 0 0 auto;
    border: 2px solid rgba(190, 127, 56, 0.86);
    box-shadow:
        inset 0 0 0 1px rgba(244, 240, 232, 0.92),
        0 14px 26px rgba(17, 31, 26, 0.08);
}

.contact-item > div {
    display: grid;
    justify-items: start;
    gap: 4px;
    width: 100%;
}

.contact-item span,
.contact-item strong {
    text-align: left;
}

.contact-item strong {
    display: block;
    margin-top: 0;
    font-size: 1.05rem;
    color: var(--forest);
}
.social-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 35, 29, 0.08);
    box-shadow: 0 12px 26px rgba(17, 31, 26, 0.05);
    font-size: 0.82rem;
}

.contact-map {
    overflow: hidden;
    min-height: 0;
    height: auto;
    margin-top: 96px;
    padding: 0;
    border-radius: 34px;
    border: 1px solid rgba(190, 127, 56, 0.28);
    background: transparent;
    box-shadow: none;
    align-self: stretch;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 34px;
}
.site-footer { padding: 28px 0 42px; }

.footer-wrap {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    border-top: 1px solid rgba(19, 35, 29, 0.1);
    padding-top: 28px;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(7, 16, 13, 0.82);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 80;
}

.gallery-modal.is-open { opacity: 1; visibility: visible; }

.gallery-modal-dialog {
    width: min(920px, 100%);
    max-height: calc(100vh - 60px);
    display: grid;
    gap: 14px;
    justify-items: center;
}

.gallery-modal-dialog img {
    width: 100%;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: 24px;
}

.gallery-modal-dialog p { margin: 0; color: #fff; font-weight: 700; }

.gallery-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

@keyframes heroUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes catalogFilterReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes catalogFilterSheen {
    0% {
        opacity: 0;
        transform: translateX(-16%);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(18%);
    }
}

@media (max-width: 1100px) {
    .catalog-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .testimonial-carousel { --testimonial-columns: 2; }
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero-grid, .about-grid, .faq-grid, .contact-grid, .intro-grid, .partnership-showcase { grid-template-columns: 1fr; }
    .filter-field { flex-basis: calc((100% - 24px) / 3); }
    .hero-slide { background-position: 60% center; }
    .hero-grid { min-height: clamp(560px, 72svh, 680px); padding: 116px 0 108px; }
    .hero-copy { max-width: 500px; padding: 0; }
    .hero-copy h1 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); max-width: 100%; }
    .hero-description { max-width: 100%; font-size: 1rem; line-height: 1.64; }
    .partnership-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-row-leads { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .team-row-field { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1100px) and (max-height: 820px) {
    .hero-copy h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
    .hero-description { font-size: 0.96rem; }
    .hero-grid { min-height: clamp(520px, 68svh, 620px); }
}

@media (max-width: 1100px) and (max-height: 720px) {
    .hero-slide { background-position: 64% center; }
    .hero-grid { min-height: 500px; padding: 108px 0 98px; }
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 20px;
        left: 20px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(12, 24, 20, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 24px 60px rgba(4, 12, 9, 0.28);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .site-nav.is-open { display: flex; }
    .nav-cta { text-align: center; }
    .hero-slide { background-position: 66% center; }
    .hero-slide::before {
        background:
            linear-gradient(180deg, rgba(10, 22, 18, 0.74) 0%, rgba(10, 22, 18, 0.56) 38%, rgba(10, 22, 18, 0.82) 100%);
    }
    .hero-grid { min-height: 540px; padding: 108px 0 104px; }
    .hero-copy { max-width: 100%; }
    .hero-copy h1 { max-width: 100%; font-size: clamp(1.85rem, 6vw, 2.8rem); }
    .hero-description { max-width: 100%; font-size: 0.98rem; line-height: 1.6; }
    .hero-controls {
        bottom: 22px;
        justify-content: space-between;
        gap: 14px;
    }
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .filter-field { flex-basis: calc((100% - 12px) / 2); }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .testimonial-carousel { --testimonial-columns: 1; --testimonial-gap: 18px; }
    .testimonial-section-head {
        align-items: stretch;
        flex-direction: column;
    }
    .testimonial-carousel-controls { justify-content: flex-start; }
    .partnership-head {
        align-items: stretch;
        flex-direction: column;
    }
    .partnership-points { grid-template-columns: 1fr; }
    .team-head {
        align-items: center;
        flex-direction: column;
    }
    .team-layout { gap: 28px; }
    .team-row-leads {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 22px;
    }
    .team-row-field { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .team-photo {
        width: 186px;
        height: 186px;
    }
    .team-card-field .team-photo {
        width: 178px;
        height: 178px;
    }
    .contact-map {
        padding: 22px;
        border-radius: 28px;
    }
    .gallery-grid .gallery-card.is-mobile-hidden { display: none; }
    .gallery-actions { display: flex; }
    .gallery-toggle { width: min(100%, 280px); }
    .section { padding: 60px 0; }
    .section h2 { max-width: 100%; }
}

@media (max-width: 640px) {
    :root { --container: min(100% - 24px, 100%); }
    .site-header { padding: 14px 0; }
    .brand span { font-size: 0.95rem; }
    .brand img { width: 150px; }
    .section-intro { padding: 22px 0 6px; }
    .intro-card { padding: 24px 20px; border-radius: 24px; }
    .intro-arabic { font-size: clamp(2.2rem, 11vw, 3.2rem); }
    .intro-translation { margin-top: 14px; font-size: 0.98rem; }
    .intro-source { margin-top: 16px; font-size: 0.7rem; }
    .hero-slide { background-position: 70% center; }
    .hero-grid { min-height: 500px; padding: 98px 0 126px; gap: 18px; }
    .hero-copy { padding: 0; }
    .hero-copy h1 { font-size: clamp(1.65rem, 7.2vw, 2.3rem); }
    .hero-description { font-size: 0.95rem; }
    .hero-actions, .footer-wrap { flex-direction: column; align-items: stretch; }
    .hero-controls {
        bottom: 18px;
        flex-direction: column;
        align-items: stretch;
    }
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-filter-panel {
        gap: 12px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 252, 247, 0.42);
        box-shadow: none;
    }
    .catalog-filter-grid { gap: 10px; }
    .filter-field {
        gap: 6px;
        padding: 0;
        flex-basis: calc((100% - 10px) / 2);
    }
    .filter-field-search { flex-basis: 100%; }
    .filter-field label {
        font-size: 0.7rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }
    .filter-field input,
    .filter-field select {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.94);
    }
    .filter-field select {
        padding-right: 38px;
        border-radius: 14px;
        background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25L7 9.25L11 5.25' stroke='%23907149' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center / 13px 13px,
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.95));
    }
    .catalog-filter-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 12px;
        width: 100%;
    }
    .catalog-filter-actions .btn {
        width: 100%;
        min-height: 44px;
        padding: 0 12px;
        font-size: 0.88rem;
    }
    .catalog-summary, .catalog-pagination { justify-content: center; }
    .hero-arrows, .hero-pagination { justify-content: center; }
    .panel-card, .catalog-body, .testimonial-card, .about-points div { padding: 20px; }
    .about-visual img {
        height: auto;
        min-height: 0;
        max-height: 260px;
    }
    .contact-item {
        padding: 16px;
        border-radius: 20px;
    }
    .contact-map {
        min-height: 360px;
        margin-top: 0;
        padding: 0;
        border-radius: 24px;
    }
    .contact-map iframe { border-radius: 24px; }
    .social-links {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
    .social-links a {
        width: auto;
        min-height: 72px;
        padding: 10px 4px;
        border-radius: 18px;
        flex-direction: column;
        gap: 6px;
        font-size: 0.68rem;
        line-height: 1.2;
    }
    .gallery-grid { gap: 12px; }
    .gallery-card { border-radius: 18px; }
    .testimonial-copy { min-height: 0; padding-right: 0; }
    .testimonial-arrow { width: 52px; height: 52px; }
    .partnership-visual-shell { padding: 18px; border-radius: 26px; }
    .partnership-visual-card { border-radius: 22px; }
    .partnership-visual-card img { min-height: 320px; }
    .partnership-panel, .partnership-points div { padding: 20px; }
    .team-row-leads { grid-template-columns: 1fr; gap: 28px; }
    .team-row-field {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .team-photo {
        width: 172px;
        height: 172px;
    }
    .team-card-field .team-photo {
        width: 168px;
        height: 168px;
    }
    .site-footer { padding: 22px 0 30px; }
}
