/* ================================================
   DESIGN SYSTEM — Premium Editorial · Light
   ================================================ */
:root {
  --paper:       #FAFAF7;
  --paper-2:     #F3EDE6;
  --white:       #FFFFFF;
  --ink:         #0D0B09;
  --ink-2:       #3A3630;
  --ink-3:       #7A736B;
  --ink-4:       #B2AA9F;
  --rule:        #DDD6CC;
  --rule-2:      #CCC5BC;
  --gold:        #B8915A;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --nav-h:       64px;
  --section-pad: 96px;
  --container:   1140px;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.25s ease;
}

/* ================================================
   RESET
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

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

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

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
[data-reveal] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal="up"]    { transform: translateY(22px); }
[data-reveal="left"]  { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal-delay="80"].revealed  { transition-delay: 80ms; }
[data-reveal-delay="100"].revealed { transition-delay: 100ms; }
[data-reveal-delay="160"].revealed { transition-delay: 160ms; }
[data-reveal-delay="200"].revealed { transition-delay: 200ms; }
[data-reveal-delay="240"].revealed { transition-delay: 240ms; }
[data-reveal-delay="250"].revealed { transition-delay: 250ms; }
[data-reveal-delay="300"].revealed { transition-delay: 300ms; }
[data-reveal-delay="350"].revealed { transition-delay: 350ms; }
[data-reveal-delay="360"].revealed { transition-delay: 360ms; }

/* ================================================
   NAVBAR — desktop only
   ================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 1px 10px rgba(0,0,0,0.06); }

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

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-tl  { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.logo-rule{ display: block; width: 1px; height: 17px; background: var(--rule-2); }
.logo-sub { font-size: 0.68rem; color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase; transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-contact { color: var(--ink) !important; font-weight: 600 !important; }

/* ================================================
   SHARED — Section Headers & Buttons
   ================================================ */
.sec-label {
  display: block; font-size: 0.68rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px;
}
.sec-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--ink-2); }
.sec-rule { width: 44px; height: 1px; background: var(--gold); display: block; }
.sec-header { margin-bottom: 52px; }
.sec-desc { font-size: 0.88rem; color: var(--ink-3); margin-top: 14px; }

.btn-primary-cta {
  display: inline-block;
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 40px; border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-primary-cta:hover {
  background: transparent; color: var(--ink); transform: translateY(-2px);
}

.btn-outline-cta {
  display: inline-block;
  background: transparent; color: var(--ink);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 40px; border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline-cta:hover {
  background: var(--ink); color: var(--paper); transform: translateY(-2px);
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-outline {
  display: inline-block; color: var(--ink);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 28px; border: 1px solid var(--ink); border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  margin-top: 32px;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }

.btn-send {
  align-self: flex-start; background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-send:hover { background: var(--ink-2); transform: translateY(-1px); }

/* ================================================
   1. LANDING — Split layout: text left, portrait right
   ================================================ */
#landing {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Vertical background rules (decorative) */
.landing-bg-lines {
  position: absolute; inset: 0; z-index: 0;
  display: flex; justify-content: space-around; pointer-events: none;
}
.landing-bg-lines span {
  display: block; width: 1px;
  height: 100%; background: var(--rule);
  opacity: 0.6;
}

/* Split container: text left, photo right */
.landing-split {
  flex: 1;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: stretch;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

/* LEFT text column */
.landing-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px 0 0;
  text-align: left;
}

/* Eyebrow pill row */
.landing-eyebrow-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}

.l-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--rule); border-radius: 999px;
  padding: 5px 14px; background: var(--white);
}
.l-pill::before {
  content: ''; display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #4A7045;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.l-dot { display: none; }

.eyebrow-text {
  font-size: 0.72rem; color: var(--ink-4);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Hero name */
.landing-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 400; line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}

.l-firstname { font-weight: 400; color: var(--ink); }
.l-lastname  { font-style: italic; color: var(--ink-2); }

/* Tagline */
.landing-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic; color: var(--ink-3);
  margin-bottom: 24px;
  max-width: 380px;
}

/* Thin horizontal rule */
.landing-rule {
  width: 56px; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* Stats */
.landing-stats {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 32px;
  padding: 14px 22px;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--white);
  width: fit-content;
}
.l-stat { display: flex; align-items: baseline; gap: 9px; }
.l-num {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink);
}
.l-num sup { font-size: 0.62em; font-family: var(--sans); font-weight: 500; }
.l-label { font-size: 0.66rem; color: var(--ink-3); line-height: 1.4; letter-spacing: 0.04em; text-align: left; }
.l-divider { width: 1px; height: 30px; background: var(--rule); }

/* RIGHT photo column */
.landing-photo-col {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(160deg, #EDE6DC 0%, #E8DDD0 60%, #DDD3C4 100%);
  border-left: 3px solid var(--gold);
  overflow: hidden;
}


/* The portrait itself */
.hero-photo {
  width: 100%;
  max-width: 420px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(13,11,9,0.22))
          drop-shadow(-6px 0 16px rgba(13,11,9,0.1));
}

/* Warm glow rising from bottom of photo col */
.hero-photo-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(184,145,90,0.28) 0%,
    rgba(184,145,90,0.10) 50%,
    transparent 72%
  );
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

/* Floating editorial tag, bottom-left of photo col */
.hero-photo-tag {
  position: absolute;
  bottom: 28px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 7px 14px;
  z-index: 4;
}
.hpt-role { font-size: 0.64rem; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.hpt-sep  { color: var(--rule-2); }
.hpt-exp  { font-size: 0.64rem; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }

/* Scroll cue */
.scroll-cue {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 16px; border-top: 1px solid var(--rule); background: var(--white);
}
.scroll-text { font-size: 0.64rem; color: var(--ink-4); letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-bar  { width: 40px; height: 1px; background: var(--rule-2); position: relative; overflow: hidden; }
.scroll-bar::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-100%);
  animation: scroll-slide 2.5s ease-in-out infinite;
}
@keyframes scroll-slide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* ================================================
   2. WORK
   ================================================ */
#work {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
}

.tab-row {
  display: flex; gap: 0; margin-bottom: 36px;
  border: 1px solid var(--rule); border-radius: var(--radius);
  overflow: hidden; width: fit-content;
}
.w-tab {
  font-size: 0.75rem; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 22px; border-right: 1px solid var(--rule);
  background: var(--white); font-family: inherit;
  transition: background var(--transition), color var(--transition);
}
.w-tab:last-child { border-right: none; }
.w-tab:hover  { background: var(--paper-2, #F3EDE6); color: var(--ink); }
.w-tab.active { background: var(--ink); color: var(--paper); }

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.work-card { background: var(--white); cursor: pointer; overflow: hidden; transition: background var(--transition); }
.work-card:hover { background: #F3EDE6; }
.work-card.hidden { display: none; }

.wc-visual {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.v-burgundy   { background: #3D1C24; }
.v-forest     { background: #1E2E22; }
.v-navy       { background: #1A2235; }
.v-slate      { background: #2A3040; }
.v-terracotta { background: #5C2E1A; }
.v-umber      { background: #3A2512; }
.v-indigo     { background: #22204A; }
.v-deep-violet{ background: #2D1A4A; }
.v-midnight   { background: #0F0F2A; }

.wc-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px,
    transparent 1px, transparent 14px
  ); z-index: 0;
}

.wc-play {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1A1714; font-size: 1.3rem;
  padding-left: 5px; z-index: 1;
  opacity: 1; transform: scale(1);
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.work-card:hover .wc-play {
  transform: scale(1.12);
  background: #fff;
}

.wc-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); padding: 3px 10px;
}
.wc-dur {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
}
.wc-body { padding: 18px 20px 20px; border-top: 1px solid var(--rule); }
.wc-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 500;
  color: var(--ink); margin-bottom: 5px; line-height: 1.3;
}
.wc-desc { font-size: 0.8rem; color: var(--ink-3); }

/* ================================================
   3. ABOUT
   ================================================ */
#about {
  padding: var(--section-pad) 0;
  background: var(--paper); border-top: 1px solid var(--rule);
}
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}
.about-para  { font-size: 0.975rem; color: var(--ink-2); line-height: 1.85; margin-bottom: 18px; }
.about-image-wrap { position: relative; border: 1px solid var(--rule); background: #F3EDE6; }
.about-photo {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  filter: saturate(0.7) contrast(1.05);
}
.about-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,11,9,0.82); padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.ail-num { font-size: 0.68rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.ail-sep { color: rgba(255,255,255,0.3); }
.ail-txt { font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }

/* ================================================
   4. WHY ME
   ================================================ */
#why {
  padding: var(--section-pad) 0;
  background: #F3EDE6; border-top: 1px solid var(--rule);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.why-card {
  background: var(--white); padding: 32px 28px;
  transition: background var(--transition);
}
.why-card:hover { background: var(--paper); }
.why-num {
  display: block; font-family: var(--serif);
  font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 14px;
}
.why-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  color: var(--ink); line-height: 1.3; margin-bottom: 10px;
}
.why-desc { font-size: 0.84rem; color: var(--ink-3); line-height: 1.75; }

/* ================================================
   5. CONTACT
   ================================================ */
#contact { padding: var(--section-pad) 0; background: var(--white); }
.contact-header { text-align: center; }
.contact-title  { font-size: clamp(2rem, 4vw, 3.2rem) !important; margin-bottom: 20px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start; margin-top: 56px;
}
.contact-intro { font-size: 0.975rem; color: var(--ink-2); line-height: 1.8; margin-bottom: 36px; }
.contact-links { display: flex; flex-direction: column; }
.c-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; border-bottom: 1px solid var(--rule);
  transition: padding-left var(--transition);
}
.c-link:hover { padding-left: 4px; }
.c-link-label { font-size: 0.68rem; color: var(--ink-4); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.c-link-val   { font-size: 0.88rem; color: var(--ink-2); transition: color var(--transition); }
.c-link:hover .c-link-val { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 18px; scroll-margin-top: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.68rem; font-weight: 600; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--radius); color: var(--ink);
  font-family: var(--sans); font-size: 0.88rem;
  padding: 12px 14px; outline: none;
  transition: border-color var(--transition); resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-4); }
.form-field select { color: var(--ink-3); cursor: pointer; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--ink-2); }

.form-success {
  display: none; font-size: 0.82rem; color: #4A7045;
  border-left: 2px solid #4A7045; padding: 10px 14px;
  background: rgba(74,112,69,0.06);
}
.form-success.show { display: block; }

.form-error {
  display: none; font-size: 0.82rem; color: #8B3A3A;
  border-left: 2px solid #8B3A3A; padding: 10px 14px;
  background: rgba(139,58,58,0.06);
}
.form-error.show { display: block; }

/* ================================================
   FOOTER
   ================================================ */
#footer { border-top: 1px solid var(--rule); background: #F3EDE6; padding: 26px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-name  { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); font-style: italic; }
.footer-mid,
.footer-role  { font-size: 0.72rem; color: var(--ink-4); letter-spacing: 0.06em; }

/* ================================================
   MODAL
   ================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,11,9,0.9);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-panel {
  position: relative; width: 100%; max-width: 880px;
  background: var(--ink); border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; transform: scale(0.94); transition: transform 0.3s ease;
}
.modal-overlay.open .modal-panel { transform: scale(1); }
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 32px; height: 32px; background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-video { position: relative; padding-bottom: 56.25%; height: 0; }
.modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ================================================
   MOBILE BOTTOM NAV — App-like
   ================================================ */
.mobile-bottom-nav {
  display: none; /* shown only on mobile */
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--rule);
  padding-bottom: env(safe-area-inset-bottom, 0px); /* iPhone notch support */
}

.mbn-inner {
  display: flex;
  align-items: stretch;
}

.mbn-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; padding: 10px 8px 12px;
  font-family: var(--sans);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.mbn-item:hover,
.mbn-item:active { background: var(--paper); }

.mbn-icon {
  font-size: 1.1rem;
  color: var(--ink-4);
  transition: color var(--transition), transform 0.2s ease;
  display: block; line-height: 1;
}

.mbn-label {
  font-size: 0.62rem; font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.mbn-item.active .mbn-icon,
.mbn-item.active .mbn-label { color: var(--ink); }

.mbn-item.active .mbn-icon { transform: translateY(-1px); }

/* Hire Me tab — gold accent */
.mbn-hire .mbn-icon { color: var(--gold); }
.mbn-hire .mbn-label { color: var(--gold); font-weight: 600; }
.mbn-hire:hover .mbn-icon,
.mbn-hire:hover .mbn-label { color: var(--ink); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  /* Hide desktop nav links, show mobile bottom nav */
  .nav-links { display: none; }
  .mobile-bottom-nav { display: block; }

  /* Bottom nav needs inner flex wrapper for safe area */
  .mobile-bottom-nav { display: flex; flex-direction: column; }

  /* Section spacing: account for bottom nav height */
  body { padding-bottom: 64px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-side { max-width: 380px; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Landing simplifications on tablet */
  .eyebrow-text { display: none; }
  .landing-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 360px;
    padding: 0 20px;
  }
  .landing-text-col {
    padding: 48px 0 32px;
    text-align: center;
    align-items: center;
  }
  .landing-name { align-items: center; }
  .landing-rule { margin: 0 auto 24px; }
  .landing-stats { margin: 0 auto 32px; }
  .landing-actions { justify-content: center; }
  .landing-photo-col {
    border-left: none;
    border-top: 1px solid var(--rule);
  }
  .hero-photo {
    width: 280px;
    height: 100%;
    object-fit: cover;
  }
  .hero-photo-tag { bottom: 16px; left: 50%; transform: translateX(-50%); white-space: nowrap; }

  /* Container padding */
  .container { padding: 0 20px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px; --nav-h: 56px; }
  .container { padding: 0 16px; }

  /* Landing — mobile: stacked, text on top */
  .landing-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 280px;
    padding: 0 16px;
  }
  .landing-text-col {
    padding: 40px 0 24px;
    text-align: center;
    align-items: center;
  }
  .landing-name { align-items: center; font-size: 3.4rem; margin-bottom: 14px; }
  .landing-rule { margin: 0 auto 20px; }
  .landing-tagline { max-width: 100%; font-size: 1rem; margin-bottom: 20px; }
  .landing-eyebrow-row { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .landing-stats { margin: 0 auto 28px; width: 100%; }
  .landing-actions { justify-content: center; width: 100%; flex-direction: column; gap: 12px; }
  .btn-primary-cta, .btn-outline-cta { width: 100%; text-align: center; padding: 16px 24px; }

  .landing-photo-col {
    border-left: none;
    border-top: 1px solid var(--rule);
  }
  .hero-photo {
    width: 200px;
    height: 100%;
    object-fit: cover;
  }
  .hero-photo-glow { display: none; }
  .hero-photo-tag { bottom: 12px; left: 50%; transform: translateX(-50%); white-space: nowrap; }

  .landing-name { font-size: 3.6rem; margin-bottom: 16px; }
  .landing-tagline { font-size: 1rem; margin-bottom: 24px; }
  .landing-rule { margin-bottom: 24px; }

  .landing-stats {
    width: 100%; padding: 16px 20px; gap: 0;
    display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
  }
  .l-stat { flex-direction: column; align-items: center; gap: 4px; }
  .l-num  { font-size: 1.35rem; }
  .l-label { text-align: center; font-size: 0.62rem; }
  .l-divider { height: 28px; width: 1px; justify-self: center; }

  .landing-action { flex-direction: column; width: 100%; }
  .landing-actions { width: 100%; flex-direction: column; gap: 12px; }
  .btn-primary-cta, .btn-outline-cta { width: 100%; text-align: center; padding: 16px 24px; }

  .landing-eyebrow-row { flex-wrap: wrap; justify-content: center; gap: 8px; }

  /* Work cards — single column, larger tap area */
  .work-grid { grid-template-columns: 1fr; }
  .wc-visual { height: 180px; }

  /* Work cards: slightly rounded on mobile for app feel */
  .work-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .work-card:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .wc-play { opacity: 1; transform: scale(1); }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* Tab row full width */
  .tab-row { width: 100%; border-radius: var(--radius-lg); overflow: hidden; }
  .w-tab { flex: 1; text-align: center; padding: 12px 8px; border-radius: 0; }

  /* Buttons full width on mobile */
  .btn-send { width: 100%; text-align: center; padding: 15px; }

  /* Contact section rule centered */
  .contact-header .sec-rule { margin: 0 auto; }

  /* Work section */
  .sec-header { margin-bottom: 36px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 6px; }

  /* Bottom nav height */
  body { padding-bottom: 70px; }
  #footer { padding-bottom: 16px; }
}
