/* =============================================
   KAIZEN DINING GROUP — DESIGN SYSTEM
   Aesthetic: Editorial Luxury / Japanese Minimalism
   Inspired by HAND Hospitality's restraint
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ---- TOKENS ---- */
:root {
  --ink:        #0f0e0c;
  --paper:      #f5f2ec;
  --cream:      #ede9e0;
  --stone:      #c8c2b5;
  --accent:     #C8102E;
  --white:      #ffffff;

  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;

  --nav-h:      72px;
  --transition: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- CURSOR ---- */
body { cursor: none; }
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(200,16,46,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 15px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marqueeScroll 24s linear infinite;
}
.marquee-track span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.marquee-track em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--transition), backdrop-filter var(--transition), color var(--transition);
}
nav.scrolled {
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
nav.scrolled .nav-logo { color: var(--ink); }
.nav-logo span {
  font-weight: 300;
  font-style: italic;
  color: #C8102E;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}
nav.scrolled .nav-toggle span { background: var(--ink); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.nav-overlay a:hover { color: var(--accent); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://kaizendining.com/assets/img/kaizen/photo/splash1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

/* Per-word stagger */
.ht-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  animation: htWordUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: calc(0.4s + var(--wi) * 0.11s);
}
@keyframes htWordUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Dynamic shimmer */
.ht-dynamic {
  background: linear-gradient(90deg, var(--accent) 0%, #ff7070 40%, var(--accent) 60%, #8b0000 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    htWordUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) calc(0.4s + 4 * 0.11s) forwards,
    htShimmer 2.8s linear 1.6s infinite;
}
@keyframes htShimmer {
  0%   { background-position: 100% center; }
  100% { background-position: -200% center; }
}
.hero-sub {
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s 1.5s infinite;
}

/* ---- SECTIONS ---- */
section { padding: 120px 48px; }
.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
}
.section-title em { font-style: italic; }

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.about-strip-image {
  height: 540px;
  overflow: hidden;
}
.about-strip-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.about-strip-image:hover img { transform: scale(1.04); }
.about-strip-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-text .section-title { color: var(--white); }
.about-strip-text p {
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
}
.about-strip-text .btn { margin-top: 40px; }

/* ---- PILLARS ---- */
.pillars {
  background: var(--cream);
  padding: 100px 48px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--stone);
}
.pillar {
  background: var(--cream);
  padding: 48px 40px;
}
.pillar-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.pillar p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #5a5650;
}

/* ---- CONCEPTS ---- */
.concepts { background: var(--paper); }
.concepts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.concepts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.concept-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--ink);
}
.concept-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.6s ease;
  opacity: 0.85;
}
.concept-card:hover img {
  transform: scale(1.06);
  opacity: 0.55;
}
.concept-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(15,14,12,0.85));
  transform: translateY(12px);
  transition: transform var(--transition);
}
.concept-card:hover .concept-card-info { transform: translateY(0); }
.concept-card-info h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
}
.concept-card-info p {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}
.concept-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  transition-delay: 0.05s;
}
.concept-card:hover .concept-links { opacity: 1; transform: translateY(0); }
.concept-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.concept-links a:hover { color: var(--accent); border-color: var(--accent); }

/* Logo-style concept card */
.concept-card--logo {
  background: var(--ink) url('../assets/gebang-bg.webp') center / cover no-repeat;
}
.concept-card--logo > img { display: none; }
.concept-card-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.concept-card-logo-wrap img { display: none; }
.concept-card--logo .concept-card-logo-wrap::after {
  content: '';
  display: block;
  width: 48%;
  padding-bottom: 48%;
  border-radius: 50%;
  background: var(--white) url('../assets/gebang-sikdang.png') no-repeat;
  background-size: 90%;
  background-position: center 248%;
  transition: transform 0.8s ease;
}
.concept-card--logo:hover .concept-card-logo-wrap::after {
  transform: scale(1.04);
}

/* Gabin homepage card */
.concept-card--gabin-home {
  background: var(--ink) url('../assets/gabin-bg.avif') center / cover no-repeat;
}
.concept-card--gabin-home .concept-card-logo-wrap::after {
  content: '';
  display: block;
  width: 48%;
  padding-bottom: 48%;
  border-radius: 50%;
  background: var(--white) url('../assets/gabin-kor-logo.png') no-repeat center center;
  background-size: 80%;
  transition: transform 0.8s ease;
}
.concept-card--gabin-home:hover .concept-card-logo-wrap::after {
  transform: scale(1.04);
}

/* ---- TEAM PREVIEW ---- */
.team-preview { background: var(--ink); color: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a1917;
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
  filter: grayscale(20%);
}
.team-card:hover img { transform: scale(1.05); }
.team-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.team-card-info h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
}
.team-card-info span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- CONTACT STRIP ---- */
.contact-strip {
  background: var(--accent);
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-strip .section-title { color: var(--white); }
.contact-strip p { color: rgba(255,255,255,0.8); margin-top: 16px; font-size: 0.9rem; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail .label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.contact-detail .value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
}
.contact-detail a:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-logo span { font-weight: 300; font-style: italic; color: #C8102E; }
.footer-center {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.footer-social {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
.footer-social a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--accent); }

/* ---- BUTTON ---- */
.btn {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid currentColor;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* ---- INNER PAGE HERO ---- */
.page-hero {
  height: 45vh;
  min-height: 320px;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding: 0 48px 60px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ---- ABOUT PAGE ---- */
.about-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 800px;
  margin-bottom: 60px;
  border-left: 2px solid var(--accent);
  padding-left: 32px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}
.about-block h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--accent);
}
.about-block p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #4a4740;
}
.principles-list {
  list-style: none;
  margin-top: 16px;
}
.principles-list li {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #4a4740;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone);
  display: flex;
  gap: 12px;
}
.principles-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ---- TEAM PAGE ---- */
.team-page { padding: 100px 48px; }
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.team-full-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team-full-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  transition: transform 0.7s ease, filter 0.5s ease;
}
.team-full-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.team-full-info {
  padding: 20px 0 0;
}
.team-full-info h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}
.team-full-info .role {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* Team modal */
.team-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.team-modal-overlay.open { display: flex; }
.team-modal {
  background: var(--paper);
  max-width: 720px;
  width: 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}
.team-modal img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-modal-body { padding: 48px 40px; }
.team-modal-body h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
}
.team-modal-body .role {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 8px 0 24px;
}
.team-modal-body blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.team-modal-body p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #4a4740;
}
.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---- CONCEPTS PAGE ---- */
.concepts-page { padding: 100px 48px; }
.concepts-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 64px;
}
.concept-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink);
  overflow: hidden;
}
.concept-row:nth-child(even) { direction: rtl; }
.concept-row:nth-child(even) > * { direction: ltr; }
.concept-row-image {
  overflow: hidden;
  height: 480px;
}
.concept-row-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.concept-row:hover .concept-row-image img { transform: scale(1.04); }
.concept-row-text {
  background: var(--ink);
  color: var(--white);
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concept-row-text h2 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}
.concept-row-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
  margin-bottom: 32px;
}
.concept-row-links { display: flex; gap: 20px; flex-wrap: wrap; }
.concept-row-links a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.concept-row-links a:hover { color: var(--accent); border-color: var(--accent); }

/* Gabin concept row — circle logo over photo background */
.concept-row--gabin .concept-row-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gabin-bg-img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0;
}
.gabin-logo-circle {
  position: relative;
  z-index: 2;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.9s ease;
}
.gabin-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-row--gabin:hover .gabin-logo-circle {
  transform: scale(1.04);
}

/* ---- CONTACT PAGE ---- */
.contact-page {
  padding: 100px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-intro {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 64px;
  color: var(--ink);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone);
  margin-bottom: 80px;
}
.contact-info-block {
  background: var(--paper);
  padding: 40px 32px;
}
.contact-info-block .label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-info-block .value {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
}
.contact-info-block a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 24px; margin-top: 40px; }
.contact-social a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.contact-social a:hover { color: var(--accent); border-color: var(--accent); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .team-full-grid, .team-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 80px 24px; }
  .hero { padding: 0 24px 64px; }
  .hero-scroll { display: none; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-image { height: 300px; }
  .about-strip-text { padding: 48px 24px; }
  .concepts-grid { grid-template-columns: 1fr; }
  .team-grid, .team-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .concept-row { grid-template-columns: 1fr; }
  .concept-row-image { height: 280px; }
  .concept-row-text { padding: 40px 24px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .team-modal { grid-template-columns: 1fr; }
  .team-modal img { height: 300px; }
  .concepts-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .page-hero { padding: 0 24px 48px; padding-top: var(--nav-h); }
}
