:root {
    --page-bg: #ffffff;
    --warm-bg: #f7f4ef;
    --cream: #efe7db;
    --line: #ded6cc;
    --text: #252827;
    --muted: #6f7472;
    --graphite: #4f5554;
    --graphite-dark: #343938;
    --graphite-soft: #626967;
    --sand: #e3c092;
    --sand-dark: #b89563;
    --white: #ffffff;
    --shadow: 0 22px 48px rgba(45, 49, 48, 0.12);
}

/* =========================================================
   RESET & BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body.rtl,
.rtl {
    direction: rtl;
}

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

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

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

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

h1,
h2,
h3 {
    margin: 0;
    color: var(--graphite-dark);
    line-height: 1.12;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(40px, 5.3vw, 72px);
}

h2 {
    font-size: clamp(32px, 3.6vw, 50px);
}

h3 {
    font-size: 22px;
    font-weight: 800;
}

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

.section {
    padding: 92px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--sand-dark);
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
}

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

.btn,
.outline-button,
.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 25px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.outline-button:hover,
.footer-button:hover {
    transform: translateY(-2px);
}

.btn.primary,
.footer-button {
    background: var(--sand);
    color: var(--graphite-dark);
    border: 1px solid var(--sand);
}

.btn.secondary,
.outline-button {
    background: transparent;
    color: var(--graphite-dark);
    border: 1px solid var(--graphite);
}

.section-heading {
    margin-bottom: 42px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--graphite);
}

.section-heading.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
}

.section-heading h2 {
    max-width: 780px;
}

/* =========================================================
   HEADER - CLEAN FINAL VERSION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.site-header .container {
    width: min(1480px, calc(100% - 48px));
    margin: 0 auto;
}

.header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: minmax(250px, 330px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    max-width: 330px;
    overflow: hidden;
}

.brand-mark {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    color: var(--graphite);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.brand-logo-image {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
}

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

.brand-logo-image.logo-fallback-active {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
}

.brand-logo-image.logo-fallback-active::before {
    content: "H";
    color: var(--graphite);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.brand-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    overflow: hidden;
}

.brand-text strong {
    display: block;
    max-width: 100%;
    color: var(--graphite);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.18em;
    font-size: clamp(17px, 1.45vw, 25px);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.brand-text small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

.main-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2vw, 34px);
    color: var(--graphite-dark);
    font-size: 15px;
    font-weight: 800;
}

.main-nav > a,
.main-nav .nav-dropdown-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
}

.main-nav a:hover {
    color: var(--sand-dark);
}

.nav-cta {
    background: var(--sand);
    color: var(--graphite-dark) !important;
    min-height: 54px !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.nav-dropdown-toggle {
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    content: "⌄";
    font-size: 12px;
    color: var(--sand-dark);
    transform: translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 13px 14px;
    color: var(--graphite-dark);
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid rgba(222, 214, 204, 0.65);
    white-space: nowrap;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown-menu a:hover {
    background: var(--warm-bg);
    color: var(--sand-dark);
}

.language-switch,
.language-dropdown,
.language-current,
.language-menu {
    display: none !important;
}

.h2m-lang {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    z-index: 3000;
}

.h2m-lang-btn {
    height: 48px;
    min-width: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--graphite-dark);
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    box-shadow: none;
}

.h2m-lang-btn:hover {
    border-color: var(--sand);
}

.h2m-lang-btn span,
.h2m-lang-btn strong,
.h2m-lang-btn em {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.h2m-lang-btn span {
    font-size: 17px;
}

.h2m-lang-btn strong {
    color: var(--graphite-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.h2m-lang-btn em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.h2m-lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 230px;
    display: none;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 48px rgba(45, 49, 48, 0.14);
    padding: 0;
    margin: 0;
    z-index: 4000;
}

.h2m-lang:hover .h2m-lang-menu,
.h2m-lang:focus-within .h2m-lang-menu {
    display: block;
}

.h2m-lang-menu a {
    width: 100%;
    min-height: 56px;
    display: flex !important;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    margin: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    color: var(--graphite-dark) !important;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
}

.h2m-lang-menu a:last-child {
    border-bottom: 0;
}

.h2m-lang-menu a:hover,
.h2m-lang-menu a.active {
    background: var(--warm-bg);
    color: var(--graphite-dark) !important;
}

.h2m-lang-menu a span {
    display: inline-flex;
    font-size: 18px;
    line-height: 1;
}

.h2m-lang-menu a strong {
    display: inline-flex;
    color: var(--graphite-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--graphite);
    margin: 7px 0;
}

/* =========================================================
   COMMON PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    padding: 92px 0 72px;
    overflow: hidden;
    background: #ffffff;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100% - 42px));
    margin: 0 auto;
    text-align: center;
    padding: 72px 0;
}

.page-hero .eyebrow {
    color: var(--sand);
    justify-content: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 66px);
}

.page-hero p {
    width: min(760px, 100%);
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

/* =========================================================
   HOME
   ========================================================= */

.hero {
    background: var(--page-bg);
    padding-bottom: 54px;
    width: 100%;
}

.hero-inner {
    width: 100%;
    min-height: 620px;
    display: grid;
    align-items: center;
    background: linear-gradient(rgba(45, 49, 48, 0.54), rgba(45, 49, 48, 0.54)), url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2200&q=90") center/cover;
    overflow: hidden;
}

.hero-content {
    width: min(950px, calc(100% - 60px));
    margin: 0 auto;
    text-align: center;
    padding: 86px 20px;
}

.hero-content .eyebrow {
    color: var(--sand);
    justify-content: center;
}

.hero-content h1 {
    color: #ffffff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.hero-content p {
    width: min(830px, 100%);
    margin: 24px auto 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn.secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.hero-card {
    width: min(980px, calc(100% - 42px));
    margin: -50px auto 0;
    position: relative;
    z-index: 5;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ffffff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    overflow: hidden;
}

.hero-mini-grid > div {
    min-height: 132px;
    padding: 32px 28px;
    background: #ffffff;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-mini-grid > div:last-child {
    border-right: 0;
}

.hero-mini-grid strong {
    display: block;
    color: var(--graphite-dark);
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px;
    font-weight: 900;
}

.hero-mini-grid span {
    display: block;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.hero-image-panel,
.floating-label,
.hero-tags,
.hero-tag-list,
.hero-highlights,
.hero-badges {
    display: none !important;
}

.service-grid,
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 285px;
    position: relative;
    background: var(--graphite);
    color: #ffffff;
    padding: 36px 32px;
    transition: all 0.28s ease;
    overflow: hidden;
}

.service-card:hover {
    background: var(--graphite-dark);
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(40, 44, 43, 0.16);
}

.service-card::before {
    content: "";
    position: absolute;
    right: 26px;
    top: 26px;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(227, 192, 146, 0.55);
    border-radius: 50%;
}

.service-number {
    display: block;
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    margin-bottom: 30px;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 260px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.learn-more {
    position: absolute;
    left: 32px;
    bottom: 28px;
    color: var(--sand);
    font-size: 14px;
    font-weight: 800;
}

.match-section {
    background: #ffffff;
    padding: 38px 0 80px;
}

.match-box {
    min-height: 330px;
    padding: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    background: linear-gradient(rgba(40, 44, 43, 0.72), rgba(40, 44, 43, 0.72)), url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.match-box h2 {
    color: #ffffff;
    max-width: 760px;
}

.match-box p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
}

.process-section {
    padding: 82px 0;
    background: linear-gradient(rgba(79, 85, 84, 0.84), rgba(79, 85, 84, 0.84)), url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.process-item {
    min-height: 310px;
    padding: 42px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    overflow: hidden;
}

.process-item:last-child {
    border-right: 0;
}

.process-item span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sand);
    color: var(--sand);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    margin-bottom: 72px;
}

.process-item h3 {
    color: #ffffff;
    margin-bottom: 14px;
}

.process-item p {
    color: rgba(255, 255, 255, 0.76);
}

.brand-section {
    background: var(--warm-bg);
}

.brand-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.brand-card,
.insight-card,
.project-card,
.partner-card,
.brand-value-card {
    min-width: 0;
    overflow: hidden;
}

.brand-card {
    min-height: 270px;
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 32px;
    transition: all 0.28s ease;
}

.brand-card:hover,
.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.brand-logo-placeholder {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    background: var(--graphite);
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
}

.brand-card h3,
.insight-card h3 {
    margin-bottom: 14px;
    overflow-wrap: break-word;
}

.brand-card p,
.insight-card p {
    font-size: 14px;
}

.stats-section {
    background: #ffffff;
    padding: 86px 0;
}

.stats-grid {
    gap: 0;
    background: var(--sand);
    margin-top: 38px;
}

.stats-grid div {
    min-height: 160px;
    padding: 34px 28px;
    border-right: 1px solid rgba(79, 85, 84, 0.28);
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid strong {
    display: block;
    color: var(--graphite-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    margin-bottom: 12px;
}

.stats-grid span {
    color: var(--graphite-dark);
    font-weight: 800;
}

.insights-section {
    background: #ffffff;
}

.insight-card {
    background: #ffffff;
    border: 1px solid var(--line);
    transition: all 0.28s ease;
}

.insight-image {
    height: 190px;
    background: linear-gradient(rgba(79, 85, 84, 0.08), rgba(79, 85, 84, 0.18)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80") center/cover;
}

.insight-card div:last-child {
    padding: 30px;
}

.insight-card span {
    display: inline-block;
    color: var(--sand-dark);
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* =========================================================
   ABOUT / COMMON CONTENT GRIDS
   ========================================================= */

.about-hero::before {
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.about-core-section,
.single-statement-section,
.vm-intro-section,
.vm-principles-section,
.hd-intro-section,
.hd-process-section,
.hd-design-fields-section,
.insights-intro-section,
.insights-editorial-section,
.brand-detail-intro,
.brand-detail-gallery,
.contact-intro-section,
.contact-evaluation-section,
.insight-article-section,
.service-detail-intro {
    background: #ffffff;
    padding: 96px 0;
}

.about-core-grid,
.vm-intro-grid,
.vm-belief-grid,
.hd-intro-grid,
.hd-signature-grid,
.hd-perspective-grid,
.hd-closing-grid,
.insights-intro-grid,
.contact-intro-grid,
.brand-detail-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 72px;
    align-items: start;
    overflow: hidden;
}

.about-core-title h2,
.vm-intro-title h2,
.hd-intro-title h2,
.insights-intro-title h2,
.contact-intro-content h2 {
    max-width: 680px;
}

.about-core-text,
.vm-intro-text,
.vm-belief-content,
.hd-intro-text,
.hd-signature-content,
.hd-closing-content,
.insights-intro-text,
.contact-intro-panel {
    background: var(--warm-bg);
    border: 1px solid var(--line);
    padding: 42px;
}

.about-core-text p,
.vm-intro-text p,
.vm-belief-content p,
.hd-intro-text p,
.hd-signature-content p,
.hd-closing-content p,
.insights-intro-text p,
.contact-intro-panel p {
    font-size: 17px;
    line-height: 1.78;
    margin: 0 0 22px;
}

.about-core-text p:last-child,
.vm-intro-text p:last-child,
.vm-belief-content p:last-child,
.hd-intro-text p:last-child,
.hd-signature-content p:last-child,
.hd-closing-content p:last-child,
.insights-intro-text p:last-child,
.contact-intro-panel p:last-child {
    margin-bottom: 0;
}

.about-signature-statement,
.about-team-direct-section,
.vm-statement-section,
.vm-belief-section,
.hd-signature-section,
.hd-perspective-section,
.hd-closing-section,
.featured-insight-section,
.insights-focus-section,
.brand-detail-value,
.services-overview,
.service-capabilities,
.contact-main-section {
    background: var(--warm-bg);
    padding: 96px 0;
}

.signature-statement-grid,
.featured-insight-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    border: 1px solid var(--line);
    background: #ffffff;
    min-height: 520px;
}

.signature-visual,
.hd-signature-visual,
.vm-belief-visual,
.contact-side-visual {
    background: linear-gradient(rgba(45, 49, 48, 0.72), rgba(45, 49, 48, 0.72)), url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1400&q=85") center/cover;
    display: grid;
    place-items: center;
}

.signature-visual span,
.hd-signature-visual span,
.vm-belief-visual span,
.contact-side-visual span {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sand);
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 110px;
    line-height: 1;
}

.signature-content {
    padding: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signature-content h2 {
    margin-bottom: 26px;
}

.signature-content p {
    font-size: 17px;
    line-height: 1.78;
}

/* =========================================================
   TEAM
   ========================================================= */

.team-direct-heading,
.brand-spotlights-heading {
    width: min(980px, calc(100% - 42px));
    margin: 0 auto 56px;
    text-align: center;
}

.team-direct-heading .eyebrow,
.brand-spotlights-heading .eyebrow {
    justify-content: center;
}

.team-direct-heading h2,
.brand-spotlights-heading h2 {
    margin-bottom: 22px;
}

.team-direct-heading p,
.brand-spotlights-heading p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.75;
}

.team-direct-grid,
.team-db-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.team-person-feature,
.team-person-card,
.team-db-card {
    background: #ffffff;
    border: 1px solid var(--line);
    transition: all 0.28s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.team-person-feature:hover,
.team-person-card:hover {
    transform: translateY(-7px);
    border-color: var(--sand);
    box-shadow: var(--shadow);
}

.team-person-photo,
.team-person-mini-photo,
.team-empty-photo {
    width: 100%;
    height: 380px;
    min-height: 380px;
    max-height: 380px;
    background-color: #f7f4ef;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.team-person-photo,
.team-person-mini-photo {
    filter: grayscale(100%) contrast(92%) brightness(105%);
    -webkit-filter: grayscale(100%) contrast(92%) brightness(105%);
}

.team-person-photo::after,
.team-person-mini-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 49, 48, 0.05);
}

.team-empty-photo {
    display: grid;
    place-items: center;
    background: var(--graphite);
}

.team-empty-photo span {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sand);
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    line-height: 1;
}

.team-person-content,
.team-person-mini-content {
    flex: 1;
    padding: 34px;
}

.team-person-content span,
.team-person-mini-content span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sand-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.team-person-content h3,
.team-person-mini-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-person-content h3 {
    font-size: clamp(36px, 4vw, 52px);
}

.team-person-mini-content h3 {
    font-size: 34px;
}

.team-person-content strong,
.team-person-mini-content strong {
    display: block;
    color: var(--graphite-dark);
    margin-bottom: 18px;
}

.team-person-content p,
.team-person-mini-content p {
    font-size: 15px;
    line-height: 1.7;
}

.team-person-content a,
.team-person-mini-content a,
.team-contact-links a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--sand-dark);
    font-weight: 900;
}

.team-empty-state {
    background: var(--warm-bg);
    border: 1px solid var(--line);
    padding: 34px;
    text-align: center;
}

.team-empty-state p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.team-contact-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-overview-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
}

.services-overview-text h2 {
    max-width: 560px;
}

.services-overview-points {
    display: grid;
    gap: 18px;
}

.services-overview-points div {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 26px;
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 22px;
}

.services-overview-points strong {
    grid-row: span 2;
    color: var(--sand-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
}

.services-overview-points span {
    color: var(--graphite-dark);
    font-weight: 800;
    font-size: 18px;
}

.services-overview-points p {
    margin: 8px 0 0;
    font-size: 14px;
}

.services-showcase-section {
    background: #ffffff;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-service-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: var(--graphite-dark);
    border: 1px solid var(--line);
    padding: 34px;
    overflow: hidden;
    transition: all 0.28s ease;
}

.showcase-service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -95px;
    top: -95px;
    border-radius: 50%;
    background: rgba(227, 192, 146, 0.20);
}

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

.showcase-service-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, #f7f1e8 100%);
    border-color: var(--sand);
}

.showcase-service-card:nth-child(4n) {
    background: var(--warm-bg);
}

.showcase-card-top,
.showcase-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.showcase-card-top {
    justify-content: flex-end;
    margin-bottom: 36px;
}

.showcase-card-footer {
    align-items: center;
    margin-top: auto;
    padding-top: 52px;
    color: var(--graphite-dark);
    font-weight: 800;
}

.showcase-number,
.showcase-service-title {
    display: none !important;
}

.showcase-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 12px;
    background: var(--warm-bg);
    color: var(--graphite-dark);
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.showcase-card-body {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 0;
}

.showcase-card-body h3 {
    color: var(--graphite-dark);
    margin: 0 0 22px;
    max-width: 420px;
    font-size: 42px;
    line-height: 1.05;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.showcase-card-body p {
    color: var(--muted);
    margin: 0;
    max-width: 420px;
    font-size: 17px;
    line-height: 1.65;
}

.showcase-card-footer strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--graphite);
    border-radius: 50%;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 22px;
}

.capability-panel {
    min-height: 260px;
    padding: 34px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.capability-panel.dark {
    grid-row: span 2;
    background: linear-gradient(rgba(45, 49, 48, 0.78), rgba(45, 49, 48, 0.78)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1200&q=85") center/cover;
}

.capability-panel.dark h2 {
    color: #ffffff;
}

.capability-panel.sand {
    background: var(--sand);
}

.capability-panel.sand h3,
.capability-panel.sand p {
    color: var(--graphite-dark);
}

.service-cta-panel {
    padding: 86px 0;
    background: linear-gradient(rgba(45, 49, 48, 0.80), rgba(45, 49, 48, 0.80)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.service-cta-inner h2 {
    color: #ffffff;
    max-width: 760px;
}

.service-cta-inner p {
    color: rgba(255, 255, 255, 0.76);
    max-width: 680px;
}

/* =========================================================
   BRANDS LIST / DETAIL
   ========================================================= */

.brands-hero::before {
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.brands-intro {
    background: var(--warm-bg);
    padding: 82px 0;
}

.brands-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.brands-intro-text {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 36px;
}

.brands-intro-text p {
    margin: 0 0 18px;
    font-size: 16px;
}

.brand-spotlights-section {
    background: #ffffff;
    padding: 90px 0;
}

.brand-spotlight {
    min-height: auto;
    padding: 0;
    margin: 0;
    background: #ffffff !important;
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.brand-spotlight::before,
.brand-spotlight::after,
.brand-spotlight-content::before,
.brand-spotlight-content::after {
    display: none !important;
    content: none !important;
}

.brand-spotlight-inner,
.brand-spotlight-inner.reverse {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
    padding: 70px 0;
}

.brand-spotlight-inner.reverse .brand-spotlight-logo {
    order: 2;
}

.brand-spotlight-inner.reverse .brand-spotlight-content {
    order: 1;
}

.brand-spotlight-logo {
    width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    display: grid;
    place-items: center;
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 48px;
    overflow: hidden;
    backdrop-filter: none;
}

.brand-spotlight-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 1;
    filter: none;
}

.brand-spotlight-logo span {
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(72px, 8vw, 120px);
}

.brand-spotlight-content {
    max-width: 720px;
}

.brand-kicker,
.brand-positioning {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--sand-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.brand-spotlight-content h3 {
    color: var(--graphite-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 22px;
}

.brand-spotlight-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
    max-width: 680px;
}

.brand-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 36px;
}

.brand-pill-list span {
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid currentColor;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.08);
}

.brand-link {
    display: inline-flex;
    margin-top: 30px;
    color: var(--sand-dark);
    border-bottom: 1px solid currentColor;
    padding-bottom: 8px;
    font-weight: 900;
}

.brand-detail-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(45, 49, 48, 0.74), rgba(45, 49, 48, 0.74)), var(--brandHero) center/cover;
}

.brand-detail-hero-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 72px;
    align-items: center;
    padding: 96px 0;
}

.brand-detail-logo {
    min-height: 390px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(227, 192, 146, 0.78);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.brand-detail-logo span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(90px, 12vw, 170px);
    line-height: 1;
    color: var(--sand);
    letter-spacing: -0.06em;
}

.brand-detail-logo img {
    width: 78%;
    max-height: 240px;
    object-fit: contain;
}

.brand-detail-title h1 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 7vw, 98px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-bottom: 28px;
}

.brand-detail-title p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
    font-size: 18px;
    line-height: 1.7;
}

.brand-fit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.brand-fit-list div {
    min-height: 150px;
    background: var(--warm-bg);
    border: 1px solid var(--line);
    padding: 28px;
}

.brand-fit-list strong,
.brand-value-card strong {
    display: block;
    color: var(--sand-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    margin-bottom: 18px;
}

.brand-fit-list span {
    color: var(--graphite-dark);
    font-weight: 800;
}

.brand-value-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 22px;
}

.brand-value-card {
    min-height: 310px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.brand-value-card.dark {
    background: linear-gradient(rgba(45, 49, 48, 0.80), rgba(45, 49, 48, 0.80)), var(--brandHero) center/cover;
}

.brand-value-card.dark h2 {
    color: #ffffff;
}

.brand-value-card.sand {
    background: var(--sand);
}

.brand-value-card.sand h3,
.brand-value-card.sand p,
.brand-value-card.sand strong {
    color: var(--graphite-dark);
}

.brand-gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 22px;
}

.gallery-tile {
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.gallery-tile.large {
    min-height: 520px;
}

/* =========================================================
   VISION / HOSPITALITY DESIGN / INSIGHTS
   ========================================================= */

.vision-hero::before,
.visionmission-hero::before {
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.mission-hero::before {
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hospitalitydesign-hero::before {
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.insights-hero::before {
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.vm-statement-grid,
.single-statement-grid,
.hd-perspective-grid,
.hd-closing-grid,
.insights-focus-grid,
.service-detail-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card,
.single-statement-main,
.single-statement-side {
    border: 1px solid var(--line);
    padding: 44px;
    min-height: 430px;
}

.single-statement-main,
.vm-card.vision-card {
    background: var(--warm-bg);
}

.single-statement-main.dark,
.vm-card.mission-card-vm {
    background: var(--graphite);
}

.single-statement-main.dark h2,
.vm-card.mission-card-vm h2,
.vm-card.mission-card-vm p {
    color: #ffffff;
}

.single-statement-side {
    background: #ffffff;
}

.single-statement-side h3 {
    margin-bottom: 22px;
}

.single-statement-side p {
    font-size: 17px;
    line-height: 1.75;
}

.vm-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vm-card p {
    font-size: 20px;
    line-height: 1.72;
    color: var(--graphite-dark);
}

.vm-principles-grid,
.hd-process-grid,
.hd-fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
}

.hd-fields-grid {
    gap: 24px;
    border: 0;
}

.vm-principle,
.hd-process-card,
.hd-field-card {
    min-height: 340px;
    padding: 34px;
    background: #ffffff;
    border-right: 1px solid var(--line);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hd-field-card {
    min-height: 290px;
    border: 1px solid var(--line);
}

.vm-principle:last-child,
.hd-process-card:last-child {
    border-right: 0;
}

.vm-principle:hover,
.hd-process-card:hover,
.hd-field-card:hover {
    background: var(--warm-bg);
    transform: translateY(-4px);
    border-color: var(--sand);
    box-shadow: var(--shadow);
}

.vm-principle span,
.hd-process-card span {
    display: block;
    color: var(--sand-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    margin-bottom: 38px;
}

.hd-process-card h3,
.hd-field-card h3,
.vm-principle h3 {
    margin-bottom: 16px;
}

.hd-process-card p,
.hd-field-card p,
.vm-principle p {
    margin: 0;
    font-size: 15px;
    line-height: 1.68;
}

.hd-perspective-main,
.insights-focus-main,
.service-value-main {
    min-height: 560px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(rgba(45, 49, 48, 0.76), rgba(45, 49, 48, 0.76)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1400&q=85") center/cover;
}

.hd-perspective-main h2,
.insights-focus-main h2,
.service-value-main h2 {
    color: #ffffff;
    margin-bottom: 24px;
}

.hd-perspective-main p,
.insights-focus-main p,
.service-value-main p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 17px;
    line-height: 1.75;
}

.hd-perspective-side,
.insights-focus-side,
.service-value-side {
    display: grid;
    gap: 22px;
}

.hd-perspective-side div,
.insights-focus-side div,
.service-value-side div {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 30px;
}

.hd-perspective-side span,
.insights-focus-side span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sand-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hd-perspective-side h3,
.insights-focus-side h3,
.service-value-side h3 {
    margin-bottom: 12px;
}

.hd-perspective-side p,
.insights-focus-side p,
.service-value-side p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.hd-closing-note {
    background: var(--graphite);
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
}

.hd-closing-note span {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sand);
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.hd-closing-note h3 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.08;
}

.featured-insight-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.featured-insight-image {
    background-size: cover;
    background-position: center;
    min-height: 560px;
}

.featured-insight-content {
    padding: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-insight-content small {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--sand-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.featured-insight-content h2 {
    margin-bottom: 24px;
}

.featured-insight-content p {
    font-size: 17px;
    line-height: 1.76;
    margin-bottom: 28px;
}

.editorial-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.editorial-insight-card {
    min-height: 430px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.editorial-insight-card:hover {
    transform: translateY(-7px);
    border-color: var(--sand);
    box-shadow: var(--shadow);
}

.editorial-insight-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 42px;
}

.editorial-insight-top span {
    color: var(--sand-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1;
}

.editorial-insight-top small {
    color: var(--graphite-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: right;
}

.editorial-insight-body h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 18px;
}

.editorial-insight-body p {
    font-size: 15px;
    line-height: 1.68;
    margin: 0;
}

.editorial-insight-card a {
    margin-top: auto;
    padding-top: 28px;
    color: var(--sand-dark);
    font-weight: 900;
}

/* =========================================================
   DETAIL PAGES
   ========================================================= */

.insight-detail-hero,
.service-detail-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(45, 49, 48, 0.70), rgba(45, 49, 48, 0.70)), var(--insightHero) center/cover;
}

.service-detail-hero {
    background: linear-gradient(rgba(45, 49, 48, 0.70), rgba(45, 49, 48, 0.70)), var(--serviceHero) center/cover;
}

.insight-detail-hero-inner,
.service-detail-hero-inner {
    width: min(900px, calc(100% - 42px));
    padding: 96px 0;
}

.insight-detail-hero h1,
.service-detail-hero h1 {
    color: #ffffff;
    font-size: clamp(44px, 6vw, 82px);
    max-width: 920px;
}

.insight-detail-hero p,
.service-detail-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
    font-size: 18px;
    line-height: 1.75;
    margin-top: 26px;
}

.insight-article-grid,
.service-detail-grid {
    display: grid;
    grid-template-columns: 0.36fr 0.64fr;
    gap: 60px;
    align-items: start;
}

.insight-article-side,
.service-detail-side {
    position: sticky;
    top: 130px;
    background: var(--warm-bg);
    border: 1px solid var(--line);
    padding: 34px;
}

.insight-article-side span,
.service-detail-side span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--sand-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.insight-article-side h3,
.service-detail-side h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 18px;
}

.insight-article-side p,
.service-detail-side p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.insight-article-content,
.service-detail-content {
    max-width: 820px;
}

.insight-content-block,
.service-content-block {
    padding-bottom: 46px;
    margin-bottom: 46px;
    border-bottom: 1px solid var(--line);
}

.insight-content-block:last-child,
.service-content-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.insight-content-block h2,
.service-content-block h2 {
    margin-bottom: 22px;
    font-size: clamp(32px, 3vw, 46px);
}

.insight-content-block p,
.service-content-block p {
    font-size: 18px;
    line-height: 1.82;
}

.service-value-side span {
    display: block;
    color: var(--sand-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    margin-bottom: 20px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-hero::before {
    background: linear-gradient(rgba(45, 49, 48, 0.58), rgba(45, 49, 48, 0.58)), url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.contact-form-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 42px;
}

.contact-form-panel h2 {
    margin-bottom: 28px;
}

.contact-form {
    margin-top: 30px;
}

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

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--graphite-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--graphite-dark);
    padding: 14px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--sand-dark);
    box-shadow: 0 0 0 3px rgba(227, 192, 146, 0.22);
}

.form-message {
    margin: 22px 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    font-weight: 800;
}

.form-message.success {
    background: #f2f8f2;
    color: #2f5f38;
    border-color: #cfe4d1;
}

.form-message.error {
    background: #fff3f0;
    color: #9a3d2f;
    border-color: #edc9c0;
}

.contact-side-panel {
    background: var(--graphite);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 720px;
}

.contact-side-visual {
    min-height: 270px;
}

.contact-side-content {
    padding: 38px;
}

.contact-side-content h2 {
    color: #ffffff;
    margin-bottom: 18px;
}

.contact-side-content p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.72;
}

.contact-info-cards {
    margin-top: auto;
    padding: 0 38px 38px;
    display: grid;
    gap: 14px;
}

.contact-info-cards div {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
}

.contact-info-cards span {
    display: block;
    margin-bottom: 8px;
    color: var(--sand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.contact-info-cards strong {
    color: #ffffff;
    font-size: 15px;
}

.contact-info-cards a {
    color: #ffffff;
}

.contact-info-cards a:hover {
    color: var(--sand);
}

.contact-social-links,
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-evaluation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-evaluation-card {
    min-height: 300px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--line);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-evaluation-card:hover {
    transform: translateY(-7px);
    border-color: var(--sand);
    box-shadow: var(--shadow);
}

.contact-evaluation-card span {
    display: block;
    margin-bottom: 36px;
    color: var(--sand-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1;
}

.contact-evaluation-card h3 {
    margin-bottom: 16px;
}

.contact-evaluation-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.68;
}

/* =========================================================
   PROJECTS / PARTNERS
   ========================================================= */

.projects-grid,
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card,
.partner-card {
    background: #fff;
    border: 1px solid var(--line);
    transition: all 0.28s ease;
}

.project-card:hover,
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--sand);
}

.project-card-image,
.partner-card-image {
    min-height: 260px;
    display: grid;
    place-items: center;
    background: var(--graphite);
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.project-card-image img,
.partner-card-image img {
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
    background: rgba(255,255,255,.86);
    padding: 18px;
}

.project-card-content,
.partner-card-content {
    padding: 28px;
}

.project-card-content h3,
.partner-card-content h3 {
    margin: 14px 0 12px;
    font-size: 34px;
    line-height: 1.05;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.project-card-content p,
.partner-card-content p {
    color: var(--muted);
    line-height: 1.65;
}

.partner-filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.partner-filter-bar button,
.partner-filter-bar a {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--graphite-dark);
    font-weight: 800;
    cursor: pointer;
}

.partner-filter-bar .active,
.partner-filter-bar button:hover,
.partner-filter-bar a:hover {
    background: var(--graphite-dark);
    color: #ffffff;
    border-color: var(--graphite-dark);
}

/* =========================================================
   TEAM PROFILE DETAIL PAGE
   ========================================================= */

.team-profile-hero {
    padding: 110px 0 90px;
    background: var(--warm-bg);
    border-bottom: 1px solid var(--line);
}

.team-profile-hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.team-profile-photo {
    width: 100%;
    height: 560px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.team-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(92%) brightness(105%);
}

.team-profile-photo span {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sand);
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 96px;
    background: var(--graphite);
}

.team-profile-heading h1 {
    margin: 18px 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7vw, 112px);
    line-height: 0.95;
    color: var(--graphite-dark);
}

.team-profile-heading strong {
    display: block;
    margin-bottom: 26px;
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.25;
    color: var(--graphite-dark);
}

.team-profile-heading p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.team-profile-body {
    padding: 90px 0;
    background: #fff;
}

.team-profile-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 70px;
    align-items: start;
}

.team-profile-sidebar {
    position: sticky;
    top: 110px;
    background: var(--warm-bg);
    border: 1px solid var(--line);
    padding: 34px;
}

.team-profile-sidebar h3 {
    margin: 0 0 22px;
    color: var(--graphite-dark);
}

.team-profile-sidebar a {
    display: block;
    padding: 12px 0;
    color: var(--graphite);
    font-weight: 800;
    border-bottom: 1px solid var(--line);
    word-break: break-word;
}

.team-profile-download,
.team-profile-link {
    margin-top: 18px;
    color: var(--sand-dark) !important;
}

.team-profile-content {
    display: grid;
    gap: 48px;
}

.team-profile-content section {
    border-bottom: 1px solid var(--line);
    padding-bottom: 44px;
}

.team-profile-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.86;
    max-width: 900px;
}

.team-contact-links .team-profile-link {
    width: 100%;
    margin-top: 10px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 6px;
    font-weight: 900 !important;
}

/* =========================================================
   HOME BRANDS SECTION
   ========================================================= */

.home-brands-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

.home-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.home-brand-card {
    background: #ffffff;
    border: 1px solid var(--line);
    display: grid;
    grid-template-rows: 210px 1fr;
    min-height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0,0,0,.08);
    border-color: var(--sand);
}

.home-brand-logo {
    display: grid;
    place-items: center;
    padding: 34px;
    background: #f7f4ef;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}

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

.home-brand-logo span {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sand);
    color: var(--sand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    background: var(--graphite);
}

.home-brand-content {
    padding: 28px;
}

.home-brand-content span {
    display: block;
    margin-bottom: 14px;
    color: var(--sand-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.35;
}

.home-brand-content h3 {
    margin: 0 0 14px;
    color: var(--graphite-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.05;
}

.home-brand-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

.home-brands-action {
    margin-top: 44px;
    text-align: center;
}

/* =========================================================
   FINAL CTA & FOOTER
   ========================================================= */

.final-cta {
    background: var(--graphite);
    text-align: center;
    padding: 86px 0;
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.76);
    max-width: 680px;
    margin: 0 auto 28px;
}

.site-footer {
    background: #2f3332;
    color: #ffffff;
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.9fr 1.1fr;
    gap: 46px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-footer .brand-mark {
    color: var(--sand);
}

.site-footer strong,
.site-footer h4 {
    color: #ffffff;
}

.site-footer p,
.site-footer a,
.site-footer small {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer a:not(.footer-brand):not(.footer-button) {
    display: block;
    margin: 9px 0;
}

.site-footer .footer-social a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-footer .footer-social a:hover {
    color: var(--sand);
    border-color: rgba(227, 192, 146, 0.55);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
}

/* =========================================================
   ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1320px) {
    .site-header .container {
        width: min(100% - 34px, 1380px);
    }

    .header-inner {
        grid-template-columns: minmax(220px, 285px) minmax(0, 1fr) auto;
        gap: 20px;
    }

    .brand {
        max-width: 285px;
    }

    .brand-logo-image {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .brand-text strong {
        font-size: 20px;
        letter-spacing: 0.14em;
    }

    .main-nav {
        gap: 18px;
        font-size: 14px;
    }

    .nav-cta {
        min-height: 50px !important;
        padding: 0 20px !important;
    }

    .h2m-lang-btn {
        min-width: 86px;
    }
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: minmax(190px, 245px) minmax(0, 1fr) auto;
        gap: 16px;
    }

    .brand {
        max-width: 245px;
        gap: 10px;
    }

    .brand-logo-image {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .brand-text strong {
        font-size: 17px;
        letter-spacing: 0.11em;
    }

    .main-nav {
        gap: 14px;
        font-size: 13px;
    }

    .nav-cta {
        min-height: 48px !important;
        padding: 0 17px !important;
    }

    .h2m-lang-btn {
        height: 46px;
        min-width: 82px;
        padding: 0 11px;
    }
}

@media (max-width: 1100px) {
    .services-showcase-grid,
    .capabilities-grid,
    .brand-detail-hero-inner,
    .brand-detail-intro-grid,
    .brand-value-grid,
    .brand-gallery-grid,
    .single-statement-grid,
    .about-core-grid,
    .signature-statement-grid,
    .team-direct-grid,
    .team-db-grid,
    .contact-main-grid,
    .contact-intro-grid,
    .vm-intro-grid,
    .vm-statement-grid,
    .vm-belief-grid,
    .hd-intro-grid,
    .hd-signature-grid,
    .hd-perspective-grid,
    .hd-closing-grid,
    .insights-intro-grid,
    .featured-insight-grid,
    .insights-focus-grid,
    .insight-article-grid,
    .service-detail-grid,
    .service-detail-value-grid,
    .team-profile-hero-grid,
    .team-profile-layout {
        grid-template-columns: 1fr;
    }

    .brand-spotlight-inner,
    .brand-spotlight-inner.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px 0;
    }

    .brand-spotlight-inner.reverse .brand-spotlight-logo,
    .brand-spotlight-inner.reverse .brand-spotlight-content {
        order: initial;
    }

    .brand-spotlight-logo {
        height: 260px;
        min-height: 260px;
        max-height: 260px;
    }

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

    .hd-process-grid,
    .hd-fields-grid,
    .vm-principles-grid,
    .editorial-insights-grid,
    .team-db-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-panel.dark {
        grid-row: auto;
    }

    .team-profile-sidebar {
        position: static;
    }

    .team-profile-photo {
        height: 460px;
    }

    .projects-grid,
    .partners-grid,
    .home-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .header-inner {
        min-height: 76px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 14px;
    }

    .brand {
        max-width: 260px;
    }

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

    .brand-text strong {
        font-size: 16px;
        letter-spacing: 0.12em;
    }

    .brand-text small {
        font-size: 8px;
    }

    .mobile-toggle {
        display: block;
        order: 3;
    }

    .h2m-lang {
        order: 2;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
        background: #ffffff;
        border: 1px solid var(--line);
        padding: 22px;
        box-shadow: var(--shadow);
        z-index: 2000;
        font-size: 15px;
    }

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

    .main-nav > a,
    .main-nav .nav-dropdown-toggle {
        width: 100%;
        min-height: 40px;
        white-space: normal;
    }

    .nav-cta {
        width: 100%;
        min-height: 50px !important;
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 10px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 1px solid var(--line);
        background: var(--warm-bg);
    }

    .nav-dropdown-menu a {
        padding: 12px 14px;
        background: #ffffff;
        white-space: normal;
    }
}

@media (max-width: 900px) {
    .service-grid,
    .insights-grid,
    .process-grid,
    .brand-grid,
    .stats-grid,
    .hero-mini-grid,
    .brands-intro-grid,
    .services-overview-grid,
    .contact-evaluation-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .service-cta-inner,
    .section-heading.split,
    .match-box,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-grid.two {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

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

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-inner {
        min-height: 560px;
    }

    .hero-content {
        width: calc(100% - 28px);
        padding: 50px 0;
    }

    .hero-card {
        margin: 20px auto 0;
        width: min(100% - 28px, 980px);
    }

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

    .hero-mini-grid > div {
        min-height: 120px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-mini-grid > div:last-child {
        border-bottom: 0;
    }

    .match-box,
    .about-core-text,
    .signature-content,
    .team-person-content,
    .team-person-mini-content,
    .capability-panel,
    .showcase-service-card,
    .brand-value-card,
    .single-statement-main,
    .single-statement-side,
    .contact-form-panel,
    .contact-intro-panel,
    .contact-side-content,
    .contact-info-cards,
    .contact-evaluation-card,
    .vm-intro-text,
    .vm-card,
    .vm-principle,
    .vm-belief-content,
    .hd-intro-text,
    .hd-signature-content,
    .hd-process-card,
    .hd-perspective-main,
    .hd-perspective-side div,
    .hd-field-card,
    .hd-closing-content,
    .hd-closing-note,
    .insights-intro-text,
    .featured-insight-content,
    .editorial-insight-card,
    .insights-focus-main,
    .insights-focus-side div,
    .insight-article-side,
    .service-detail-side,
    .service-value-main,
    .service-value-side div {
        padding: 30px;
    }

    .signature-visual,
    .team-person-photo,
    .team-person-mini-photo,
    .hd-signature-visual,
    .vm-belief-visual,
    .contact-side-visual {
        min-height: 300px;
    }

    .brand-fit-list,
    .hd-process-grid,
    .hd-fields-grid,
    .vm-principles-grid,
    .editorial-insights-grid,
    .team-db-grid,
    .projects-grid,
    .partners-grid,
    .home-brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-spotlight,
    .brand-detail-hero,
    .insight-detail-hero,
    .service-detail-hero {
        min-height: auto;
    }

    .brand-spotlight-inner,
    .brand-detail-hero-inner,
    .insight-detail-hero-inner,
    .service-detail-hero-inner {
        padding: 68px 0;
    }

    .brand-spotlight-logo,
    .brand-detail-logo {
        min-height: 220px;
    }

    .brand-spotlight-logo {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
        padding: 32px;
    }

    .brand-spotlight-content h3 {
        font-size: 40px;
    }

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

    .team-person-photo,
    .team-person-mini-photo,
    .team-empty-photo {
        height: 330px;
        min-height: 330px;
        max-height: 330px;
    }

    .team-profile-hero {
        padding: 76px 0 60px;
    }

    .team-profile-photo {
        height: 360px;
    }

    .team-profile-body {
        padding: 60px 0;
    }

    .home-brands-section {
        padding: 70px 0;
    }

    .home-brand-card {
        grid-template-rows: 190px 1fr;
    }
}

@media (max-width: 560px) {
    .site-header .container {
        width: min(100% - 24px, 1380px);
    }

    .brand {
        max-width: 210px;
    }

    .brand-logo-image {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand-text strong {
        font-size: 13px;
        letter-spacing: 0.09em;
    }

    .brand-text small {
        display: none;
    }

    .h2m-lang-btn {
        min-width: 76px;
        height: 42px;
    }

    .h2m-lang-btn strong {
        font-size: 13px;
    }
}
