/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #070c16;
  --bg-soft: #0c1428;
  --bg-card: #101c38;
  --fg: #f3f5fa;
  --muted: #93a0c2;
  --muted-2: #5c6690;
  --accent: #ff3d81;
  --accent-soft: #ff7bab;
  --cyan: #2dd4e8;
  --line: rgba(243, 245, 250, 0.12);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Bricolage Grotesque", "Inter", sans-serif;
  --body-font: "Inter", -apple-system, sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.section-label.light { color: rgba(245,242,236,0.65); }
.section-label .num {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.section-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.section-title.light { color: var(--fg); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-solid { background: var(--accent); color: #0a0f1e; }
.btn-solid:hover { transform: translateY(-2px); background: var(--accent-soft); }
.btn-outline { border: 1px solid var(--line); color: var(--fg); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-solid-light { background: var(--fg); color: #171313; }
.btn-solid-light:hover { transform: translateY(-2px); background: var(--accent); color: #0a0f1e; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
  mix-blend-mode: difference;
}
.nav-mark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--fg);
}
.nav-links a { opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--fg);
  color: var(--fg);
  padding: 10px 22px;
  border-radius: 100px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--fg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateY(0); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(20px, 5vw, 64px) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 78% 10%, rgba(255,61,129,0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(45,212,232,0.10), transparent 60%),
    var(--bg);
}

.hero-bg-text {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(6rem, 26vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,242,236,0.06);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; padding-bottom: 70px; }

.hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.badge-pill {
  background: var(--accent);
  color: #0a0f1e;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 100px;
}
.badge-loc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero-title {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.88;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
}
.hero-title .line { display: block; }
.hero-title .accent-line em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-role {
  margin-top: 28px;
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--muted);
  line-height: 1.5;
}
.hero-role .script { font-size: 1.05em; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.hero-photo {
  position: absolute;
  right: clamp(0px, 4vw, 60px);
  bottom: 0;
  top: 88px;
  width: clamp(300px, 40vw, 640px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.hero-photo::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: 92%;
  height: 78%;
  background: radial-gradient(ellipse at center, rgba(255,61,129,0.35), transparent 68%);
  filter: blur(30px);
  z-index: -1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%), linear-gradient(to right, transparent 0%, black 6%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%), linear-gradient(to right, transparent 0%, black 6%);
  mask-composite: intersect;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.6));
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 5vw, 64px);
  width: 26px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-soft);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: marquee 32s linear infinite;
}
.marquee-track span:nth-child(2n) { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about {
  padding: 130px clamp(20px, 5vw, 64px);
  max-width: 1360px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}
.about-sketch {
  position: absolute;
  left: -10px;
  bottom: -60px;
  width: 360px;
  max-width: 46%;
  height: auto;
  opacity: 0.07;
  filter: grayscale(1) contrast(1.35) brightness(1.3);
  mix-blend-mode: luminosity;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.about-lead {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.about-body p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body strong { color: var(--fg); font-weight: 600; }
.about-facts {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.about-facts div {
  font-size: 1.05rem;
  color: var(--fg);
}
.about-facts a:hover { color: var(--accent); }
.fact-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 4px;
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 56px 32px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.stat-num span { font-size: 0.55em; vertical-align: super; }
.stat-label {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 220px;
}

/* ============ VENTURES ============ */
.ventures {
  padding: 130px clamp(20px, 5vw, 64px);
  max-width: 1360px;
  margin: 0 auto;
}
.venture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.venture-card {
  background: var(--bg);
  padding: 48px 44px;
  transition: background 0.3s ease;
}
.venture-card:hover { background: var(--bg-card); }
.venture-index {
  font-family: var(--sans);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.venture-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.venture-role {
  color: var(--accent-soft);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.venture-card p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

/* ============ SERVICES ============ */
.services {
  padding: 130px clamp(20px, 5vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
}
.services-intro {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 640px;
  line-height: 1.7;
  margin-top: -20px;
  margin-bottom: 48px;
}
.svc-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 36px;
}
.svc-tab {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  background: none;
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.svc-tab.active {
  background: var(--accent);
  color: #0a0f1e;
}
.svc-panel.hidden { display: none; }

.svc-item {
  border-top: 1px solid var(--line);
}
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 4px;
  cursor: pointer;
}
.svc-item summary::-webkit-details-marker { display: none; }
.svc-num {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 24px;
}
.svc-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fg);
  flex: 1;
}
.svc-plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.svc-plus::before, .svc-plus::after {
  content: "";
  position: absolute;
  background: var(--muted);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}
.svc-plus::before { width: 14px; height: 2px; }
.svc-plus::after { width: 2px; height: 14px; }
.svc-item[open] .svc-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.svc-item[open] .svc-plus::before { background: var(--accent); }
.svc-body {
  padding: 0 4px 30px 46px;
  max-width: 720px;
}
.svc-body p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 100px;
}

/* ============ CLIENTS ============ */
.clients {
  padding: 60px clamp(20px, 5vw, 64px) 0;
  max-width: 1200px;
  margin: 0 auto;
}
.clients-banner { margin-bottom: -1px; }
.clients-intro {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ---- clients gradient marquee banner ---- */
.clients-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 46px;
  overflow: hidden;
  background: linear-gradient(100deg, #c2126b 0%, #ff2f7e 42%, #ff6fa8 75%, #ff9dc4 100%);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 30px 70px -20px rgba(255, 47, 126, 0.45);
}
.cb-row {
  overflow: hidden;
  width: 100%;
}
.cb-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cb-scroll 38s linear infinite;
}
.cb-track-reverse {
  animation-name: cb-scroll-reverse;
  animation-duration: 34s;
}
.clients-banner:hover .cb-track { animation-play-state: paused; }
.cb-track { align-items: baseline; }
.cb-item {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.95rem);
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 10px 0;
}
/* aviation & hospitality: elegant italic serif */
.cb-item.cb-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: #fff2f6;
  font-size: 1.18em;
  letter-spacing: 0;
}
/* universities & institutes: academic display serif */
.cb-item.cb-academic {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  text-transform: none;
  color: #e7e0d3;
  letter-spacing: 0.01em;
}
/* news, finance & corporate authority: bold condensed impact */
.cb-item.cb-impact {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.015em;
  font-size: 1.06em;
}
/* tech, telecom & logistics: monospace */
.cb-item.cb-mono {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  color: #dff3ee;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.92em;
}
/* lifestyle, fashion & wellness: editorial serif italic */
.cb-item.cb-editorial {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: #ffd9e8;
}
.cb-sep {
  color: rgba(255,255,255,0.65);
  font-size: 0.8em;
  margin: 0 28px;
  flex-shrink: 0;
}
@keyframes cb-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes cb-scroll-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============ RICE & CURRY ============ */
.riceandcurry {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 0;
}
.rc-media {
  padding: 80px clamp(20px, 4vw, 64px);
  position: relative;
}
.rc-title-img {
  border-radius: 18px;
  width: 100%;
}
.rc-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.rc-thumbs img {
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.rc-copy {
  padding: 60px clamp(20px, 5vw, 80px) 60px 0;
}
.riceandcurry .section-title { margin-bottom: 26px; }
.rc-copy p {
  color: rgba(245,242,236,0.7);
  font-size: 1.14rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

/* ============ SPEAKING ============ */
.speaking {
  padding: 130px clamp(20px, 5vw, 64px) 56px;
  max-width: 1360px;
  margin: 0 auto;
}
.speaking-intro {
  color: var(--muted);
  max-width: 660px;
  line-height: 1.7;
  font-size: 1.14rem;
}

/* ---- gallery marquee (auto-scrolling strip) ---- */
.gallery-marquee {
  overflow: hidden;
  padding: 10px 0 46px;
}
.gm-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: gm-scroll 42s linear infinite;
}
.gallery-marquee:hover .gm-track { animation-play-state: paused; }
.gm-item {
  position: relative;
  width: 300px;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.gm-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 0.6s ease;
}
.gm-item:hover img { transform: scale(1.08); }
.gm-item span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(to top, rgba(4,7,16,0.92), transparent);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
}
@keyframes gm-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- bento grid ---- */
.bento {
  padding: 0 clamp(20px, 5vw, 64px) 130px;
  max-width: 1360px;
  margin: 0 auto;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  grid-column: span 1;
  grid-row: span 1;
}
.bento-item.big { grid-column: span 2; grid-row: span 2; }
.bento-item.tall { grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform 0.7s ease;
}
.bento-item.tall img {
  object-position: 42% 50%;
}
.bento-item:hover img { transform: scale(1.07); }
.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,7,16,0.85) 0%, rgba(4,7,16,0.15) 45%, transparent 70%);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.bento-item:hover::after { opacity: 0.92; }
.bento-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(6px);
  transition: transform 0.35s ease;
}
.bento-item:hover .bento-cap { transform: translateY(0); }
.bc-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
}
.bento-item.big .bc-title { font-size: 1.35rem; }
.bc-sub {
  font-size: 13px;
  color: var(--accent-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 130px clamp(20px, 5vw, 64px);
  max-width: 1360px;
  margin: 0 auto;
}
.t-grid {
  columns: 3 320px;
  column-gap: 22px;
}
.t-card {
  break-inside: avoid;
  margin: 0 0 22px;
  padding: 36px 30px 30px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
}
.t-mark {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
}
.t-card blockquote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--fg);
  margin: 0 0 26px;
}
.t-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.t-role {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.t-context {
  font-size: 0.78rem;
  color: var(--accent-soft);
  font-weight: 600;
  margin-top: 4px;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg-soft);
  padding: 140px clamp(20px, 5vw, 64px) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  align-items: end;
  padding-bottom: 90px;
}
.contact-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.contact-blurb {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.contact-email {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--fg);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  transition: color 0.25s ease;
}
.contact-email:hover { color: var(--accent); }
.contact-chips {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.chip:hover { border-color: var(--accent); transform: translateX(6px); }
.chip-label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.chip-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0f1e;
}
.chip-solid .chip-label { color: rgba(10,15,30,0.6); }
.chip-solid:hover { background: var(--accent-soft); border-color: var(--accent-soft); transform: translateX(6px); }

.footer {
  display: flex;
  justify-content: space-between;
  padding: 32px 4px;
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 0;
  border-top: 1px solid var(--line);
}

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-photo {
    position: relative;
    top: auto; right: auto; bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 40px 0 0;
    align-items: stretch;
  }
  .hero-photo::before { display: none; }
  .hero-photo img {
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
    filter: none;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,61,129,0.14), transparent 70%);
    border-radius: 20px;
  }
  .hero { padding-bottom: 60px; }
  .hero-inner { padding-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-sketch { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(odd) { }
  .venture-grid { grid-template-columns: 1fr; }
  .riceandcurry { grid-template-columns: 1fr; }
  .rc-copy { padding: 0 clamp(20px, 5vw, 64px) 80px; }
  .svc-tabs { flex-wrap: wrap; width: 100%; }
  .svc-tab { flex: 1; text-align: center; }
  .svc-item summary { gap: 14px; }
  .svc-title { font-size: 1.02rem; }
  .svc-body { padding-left: 4px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .bento-item.big { grid-column: span 2; grid-row: span 2; }
  .bento-item.wide { grid-column: span 2; }
  .bento-item.tall { grid-row: span 1; }
  .gm-item { width: 220px; height: 160px; }
  .contact-inner { grid-template-columns: 1fr; align-items: start; padding-bottom: 60px; }
  .t-grid { columns: 1; }
  .footer { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  .hero { padding-top: 120px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none !important; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: none; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .bento-item.big, .bento-item.wide, .bento-item.tall { grid-column: span 1; grid-row: span 1; }
}
