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

:root {
  --ink: #1a1714;
  --paper: #f5f0e8;
  --paper-mid: #ede7d6;
  --paper-dark: #d6ccb4;
  --accent: #7c5c3a;
  --accent-light: #b8926a;
  --accent-pale: #ede0cc;
  --text-muted: #7a6e62;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper-dark);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.25s;
}

.mobile-menu a:hover {
  color: var(--accent-light);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   PAGES
───────────────────────────────────────── */
body.interior-page {
  padding-top: 80px;
}

/* ─────────────────────────────────────────
   HOME — HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.hero-left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 5rem 5rem;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -60px;
  width: 120px;
  height: 120px;
  background: var(--paper);
  border-radius: 50%;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--paper);
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--paper-dark);
  max-width: 360px;
  line-height: 1.8;
  border-left: 1px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 1.75rem;
  transition: all 0.3s;
  width: fit-content;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.hero-cta-arrow {
  transition: transform 0.3s;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

.hero-right {
  background: var(--paper-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-portrait-wrap {
  width: min(320px, 80%);
  aspect-ratio: 3/4;
  position: relative;
}

.hero-portrait-bg {
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--paper-dark);
}

.hero-portrait-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--paper-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--paper-dark) 0%, var(--accent-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.portrait-placeholder svg {
  opacity: 0.35;
}

.portrait-placeholder p {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--accent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
  51%       { transform-origin: bottom; }
}

/* ─────────────────────────────────────────
   HOME — INTRO
───────────────────────────────────────── */
.home-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding: 8rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.5rem;
}

.home-intro-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.home-intro-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────
   HOME — CARDS
───────────────────────────────────────── */
.home-cards {
  background: var(--ink);
  padding: 7rem 5rem;
}

.home-cards h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 4rem;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.card:hover {
  border-color: var(--accent-light);
  transform: translateY(-4px);
}

.card-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.88rem;
  color: var(--paper-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  transition: gap 0.25s;
}

.card-link:hover {
  gap: 0.85rem;
}

/* ─────────────────────────────────────────
   PAGE HEADER (shared)
───────────────────────────────────────── */
.page-header {
  padding: 6rem 5rem 4rem;
  border-bottom: 1px solid var(--paper-dark);
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  color: var(--ink);
}

.page-header h1 em {
  color: var(--accent);
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  padding: 5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img-wrap {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--paper-mid);
  position: relative;
  margin-bottom: 3rem;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--paper-dark);
  z-index: -1;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
}

.about-img-placeholder svg {
  opacity: 0.3;
}

.about-img-placeholder p {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--paper-dark);
  font-size: 0.9rem;
}

.about-fact-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-fact-value {
  color: var(--ink);
  font-weight: 300;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.0rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-content p strong {
  color: var(--ink);
  font-weight: 400;
}

.about-content blockquote {
  border-left: 2px solid var(--accent);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   WORK
───────────────────────────────────────── */
.work-intro {
  padding: 4rem 5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.work-intro p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.9;
}

.work-section {
  padding: 4rem 5rem;
  border-top: 1px solid var(--paper-dark);
}

.work-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.work-section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.work-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.work-item {
  padding: 2rem;
  border: 1px solid var(--paper-dark);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.work-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s;
}

.work-item:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.work-item:hover::before {
  width: 100%;
}

.work-item-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-pale);
  display: inline-block;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}

.work-item h3 {
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.work-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Services */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--paper-dark);
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.25s;
}

.service-row:hover {
  padding-left: 1rem;
}

.service-row h3 {
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.service-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
}

.service-row-arrow {
  text-align: right;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   CONNECT
───────────────────────────────────────── */
.connect-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

.connect-left {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
}

.connect-left h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.connect-left p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--paper-dark);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.social-link svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.connect-right {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connect-right h3 {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2.5rem;
  color: var(--ink);
}

.form-field {
  margin-bottom: 1.75rem;
}

.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--paper-dark);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.submit-btn:hover {
  background: var(--accent);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.3);
}

footer .foot-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.5);
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in              { animation: fadeUp 0.8s ease both; }
.fade-in-delay-1      { animation-delay: 0.15s; }
.fade-in-delay-2      { animation-delay: 0.3s; }
.fade-in-delay-3      { animation-delay: 0.45s; }
.fade-in-delay-4      { animation-delay: 0.6s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 1.25rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 7rem 2rem 5rem;
    min-height: 100vh;
  }

  .hero-left::after {
    display: none;
  }

  /* Home sections */
  .home-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 2rem;
  }

  .home-cards {
    padding: 5rem 2rem;
  }

  /* Page headers */
  .page-header {
    padding: 4rem 2rem 3rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }

  .about-img-wrap {
    aspect-ratio: 4/3;
    max-width: 400px;
  }

  /* Work */
  .work-intro {
    padding: 3rem 2rem 4rem;
  }

  .work-section {
    padding: 3rem 2rem;
  }

  /* Connect */
  .connect-layout {
    grid-template-columns: 1fr;
  }

  .connect-left {
    padding: 4rem 2rem 3rem;
  }

  .connect-right {
    padding: 3rem 2rem 4rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
  }
}
