/* ============================================
   GULF RETAIL ADVISORY — STYLESHEET
   Editorial minimalism, refined typography
   ============================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Colors — refined neutral palette */
  --bg: #f5f1ea;          /* warm cream */
  --bg-paper: #ffffff;     /* pure white for cards */
  --bg-dark: #1a1814;      /* near-black with warmth */
  --ink: #1a1814;          /* primary text */
  --ink-soft: #4a4640;     /* secondary text */
  --muted: #807a70;        /* tertiary / labels */
  --line: #d8d2c5;         /* subtle borders */
  --line-soft: #e8e3d8;    /* even softer borders */
  --accent: #8a6d3a;       /* muted gold */
  --accent-deep: #6b5429;  /* deeper gold for hover */

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;
  --space-2xl: 180px;

  /* Container */
  --container: 1280px;
  --container-narrow: 960px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
.serif { font-family: var(--font-serif); }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.eyebrow.no-line::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 6.5vw, 88px); }
h2 { font-size: clamp(36px, 4.5vw, 56px); }
h3 { font-size: clamp(24px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 1.8vw, 22px); }

p { color: var(--ink-soft); line-height: 1.7; }

em { font-style: italic; color: var(--accent); }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: var(--space-xl) 0; }
section.hero { padding: 0; }
section.compact { padding: var(--space-lg) 0; }

/* ---- NAVIGATION ---- */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
nav.site-nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 24px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-sans);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
}
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-text { animation: fadeInUp 1s var(--ease-out) 0.2s both; }
.hero-eyebrow { margin-bottom: 32px; }
.hero h1 { margin-bottom: 32px; }
.hero-lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-dark);
  overflow: hidden;
  animation: fadeIn 1.4s var(--ease-out) 0.4s both;
}
.hero-visual img.portrait-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%) brightness(0.5) contrast(1.15);
  z-index: 1;
  display: block;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(138, 109, 58, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(138, 109, 58, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26, 24, 20, 0.4) 0%, rgba(26, 24, 20, 0.85) 100%);
  z-index: 2;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px);
  z-index: 3;
}
.hero-stat {
  position: absolute;
  left: 48px;
  bottom: 48px;
  color: var(--bg);
  z-index: 4;
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-stat .num em { font-style: italic; }
.hero-stat .label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.7;
  max-width: 200px;
  line-height: 1.6;
}
.hero-mark {
  position: absolute;
  top: 48px;
  right: 48px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.5;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 4;
}

/* ---- MARQUEE ---- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg-paper);
}
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 80px;
}
.marquee-item::after {
  content: '◆';
  color: var(--accent);
  font-size: 8px;
}

/* ---- SECTION HEADER ---- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: var(--space-lg);
  align-items: end;
}
.section-head .label-block .eyebrow { margin-bottom: 24px; }
.section-head h2 { max-width: 700px; }
.section-head h2 em { font-style: italic; color: var(--accent); }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
}
.service-card:hover { background: var(--bg-paper); }
.service-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.service-card h3 {
  font-size: 26px;
  line-height: 1.2;
}
.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.service-card .read-more {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover .read-more {
  color: var(--accent);
  border-top-color: var(--line-soft);
}
.service-card .read-more .arrow { transition: transform 0.3s var(--ease); }
.service-card:hover .read-more .arrow { transform: translateX(4px); }

/* ---- LOGO WALL ---- */
.logos-section {
  background: var(--bg-paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-block { margin-bottom: 64px; }
.logos-block:last-child { margin-bottom: 0; }
.logos-block-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logos-block-label span:last-child {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: none;
}
.logos-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.logo-item {
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
  min-height: 100px;
  opacity: 0.65;
  background: var(--bg-paper);
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.logo-item:hover {
  opacity: 1;
  background: var(--bg);
}
.logo-item img {
  max-width: 160px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.logos-row .logo-item:last-child { border-right: none; }

/* ---- ABOUT TEASE / SPLIT SECTIONS ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.split-image {
  aspect-ratio: 4/5;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(40%) contrast(1.05);
  transition: transform 1.5s var(--ease-out), filter 0.8s var(--ease);
}
.split:hover .split-image img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.05);
}
.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0.05) 0%, rgba(26,24,20,0.7) 100%);
  z-index: 2;
  pointer-events: none;
}
.split-image .quote-mark {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  z-index: 3;
}
.split-image .image-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: var(--bg);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  z-index: 3;
}
.split-content .eyebrow { margin-bottom: 24px; }
.split-content h2 { margin-bottom: 32px; }
.split-content p {
  font-size: 17px;
  margin-bottom: 24px;
}
.split-content .signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.split-content .signature .name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.split-content .signature .title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- APPROACH PILLARS ---- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.pillar {
  border-top: 1px solid var(--ink);
  padding-top: 32px;
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: 32px;
  margin-bottom: 16px;
}
.pillar p {
  font-size: 16px;
  line-height: 1.7;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--bg-dark);
  color: var(--bg);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(138, 109, 58, 0.15) 0%, transparent 60%);
}
.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: end;
}
.cta-band .eyebrow { color: var(--accent); margin-bottom: 32px; }
.cta-band h2 {
  color: var(--bg);
  font-size: clamp(36px, 5vw, 64px);
  max-width: 700px;
}
.cta-band h2 em { color: var(--accent); }
.cta-band .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.cta-band .btn-primary:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ---- FOOTER ---- */
footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
footer .logo { color: var(--bg); margin-bottom: 24px; }
footer .logo-mark { border-color: var(--accent); color: var(--accent); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 241, 234, 0.6);
  max-width: 320px;
  line-height: 1.5;
}
.footer-col h4 {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.7);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(245, 241, 234, 0.5);
  letter-spacing: 0.05em;
}
.footer-bottom .legal { display: flex; gap: 32px; }

/* ---- SKYLINE BAND ---- */
.skyline-band {
  position: relative;
  height: 240px;
  background: var(--bg-dark);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.skyline-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.skyline-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.skyline-text {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 32px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.7;
}
.skyline-text span:nth-child(even) { color: var(--accent); font-size: 8px; opacity: 0.8; }

/* ---- PAGE HEADERS (interior pages) ---- */
.page-header {
  padding: 200px 0 100px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.page-header .eyebrow { margin-bottom: 32px; }
.page-header h1 {
  font-size: clamp(48px, 7vw, 96px);
  max-width: 900px;
}
.page-header .lead {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 32px;
  line-height: 1.6;
}

/* ---- SERVICES PAGE — DETAILED LIST ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .num-block {
  position: sticky;
  top: 120px;
}
.service-detail .num-block .num {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}
.service-detail .num-block .small-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-detail .body h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
.service-detail .body p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-detail .body ul {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.service-detail .body li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 10px 0;
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.service-detail .body li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ---- ABOUT PAGE ---- */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.about-portrait {
  aspect-ratio: 3/4;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02) saturate(0.95);
  transition: transform 1.2s var(--ease-out);
}
.about-portrait:hover img {
  transform: scale(1.03);
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 24, 20, 0.4) 100%);
  pointer-events: none;
}
.about-portrait .portrait-frame {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--font-serif);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.about-portrait .portrait-frame .left { font-style: italic; text-transform: none; letter-spacing: 0.05em; font-size: 15px; }
.about-bio-text h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 32px;
}
.about-bio-text p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.75;
}
.about-credentials {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.credential .num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.credential .label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 32px;
}
.contact-method {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-method:last-of-type { border-bottom: none; }
.contact-method .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-method .value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.contact-method a.value:hover { color: var(--accent); }

.contact-location {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-paper);
  border-left: 2px solid var(--accent);
}
.contact-location .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-location .text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

.contact-form {
  background: var(--bg-paper);
  padding: 56px 48px;
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-form .form-intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.form-group {
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.3s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3e%3cpath d='M1 1l5 5 5-5' stroke='%238a6d3a' fill='none' stroke-width='1.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
  cursor: pointer;
}
.form-submit {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.form-success {
  display: none;
  padding: 24px;
  background: var(--bg);
  border-left: 2px solid var(--accent);
  margin-top: 24px;
}
.form-success.show { display: block; animation: fadeInUp 0.5s var(--ease-out); }
.form-success p { color: var(--ink); font-size: 15px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { aspect-ratio: 16/10; max-height: 500px; }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 60px; }
  .about-bio { grid-template-columns: 1fr; gap: 60px; }
  .about-portrait { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail .num-block { position: static; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .container, .container-narrow { padding: 0 24px; }
  section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-stat { left: 24px; bottom: 24px; }
  .hero-mark { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 32px; min-height: auto; }

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

  .page-header { padding: 140px 0 60px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-bottom .legal { flex-wrap: wrap; gap: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }

  .about-credentials { grid-template-columns: 1fr; gap: 24px; }

  .btn { padding: 16px 24px; font-size: 12px; }
}
