@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Variables ── */
:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --navy: #0c1e33;
  --navy-mid: #163352;
  --accent: #b85c35;
  --accent-light: #d97a52;
  --gold: #9f7c30;
  --text: #1a1a1a;
  --text-muted: #686460;
  --border: #ddd8cf;
  --max: 1080px;
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garant', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'DM Sans', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
p { max-width: 65ch; }

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span {
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 1px solid var(--accent-light); padding-bottom: 2px; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 6rem;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(184,92,53,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(22,51,82,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-accent-line {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-light);
}
.hero h1 {
  color: #fff;
  max-width: 13ch;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}
.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.market-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}

/* ── Section Wrapper ── */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.section-head {
  margin-bottom: 3rem;
}
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Home Feature Cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.feature-card {
  background: var(--surface);
  padding: 2.5rem;
  transition: background 0.2s;
}
.feature-card:hover { background: #fdf9f5; }
.feature-card .card-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent);
  opacity: 0.85;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.card-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.feature-card:hover .card-link { gap: 0.7rem; }

/* ── Testimonial ── */
.testimonial-section {
  background: var(--navy);
  padding: 5rem 2rem;
}
.testimonial-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.testimonial-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.testimonial-label-left h3 {
  font-size: 2rem;
  color: #fff;
  font-style: italic;
  line-height: 1.2;
}
blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}
blockquote p {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.55rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: none;
}
blockquote cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ── Services List ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
.service-block h4 {
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.service-block ul {
  list-style: none;
  padding: 0;
}
.service-block ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0.25rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.service-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}

/* ── Media Rep ── */
.media-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.media-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  border-radius: 2px;
}
.media-card h4 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.media-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.media-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(12,30,51,0.06);
  color: var(--navy-mid);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-top: 0.6rem;
}

/* ── Clients ── */
.client-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.client-category h4 {
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.client-list {
  list-style: none;
  padding: 0;
}
.client-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px dotted rgba(0,0,0,0.06);
}
.client-list li:last-child { border-bottom: none; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-body p {
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.85;
  font-size: 1.05rem;
}
.about-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-fact-card {
  background: var(--navy);
  color: #fff;
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.about-fact-card h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.about-fact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: none;
}
.lang-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.lang-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  border-radius: 2px;
}
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0077b5;
  color: #fff;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  margin-top: 1.5rem;
  transition: background 0.2s;
}
.linkedin-btn:hover { background: #005f91; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
}
.contact-detail-item .icon {
  width: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}
.contact-detail-item strong { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact-detail-item span { color: var(--text); }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--navy-mid); background: #fff; }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--navy-mid); }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 3.5rem 2rem;
  border-top: 3px solid var(--accent);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  max-width: 32ch;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── Divider ── */
.rule { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,92,53,0.12) 0%, transparent 70%);
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.page-hero .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,0.55); margin-top: 0.75rem; font-size: 1.05rem; }

/* ── Alt bg section ── */
.section-alt { background: var(--surface); }
.section-muted { background: #f0ede7; }

/* ── Responsive ── */
@media (max-width: 820px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
  .feature-grid, .services-grid, .client-categories, .contact-grid, .media-cards { grid-template-columns: 1fr; }
  .testimonial-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 4rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.22s; }
.fade-up-d3 { animation-delay: 0.34s; }
