@import
  url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Fraunces:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #111118;
  --ink-soft: #2a2a35;
  --surface: #f7f7f8;
  --surface-warm: #efefef;
  --surface-dark: #111118;
  --surface-dark-alt: #1a1a24;
  --text-primary: #111118;
  --text-secondary: #5c5c6d;
  --text-tertiary: #9090a0;
  --text-on-dark: #faf9f7;
  --text-on-dark-muted: rgba(250,249,247,.5);
  --copper: #b87333;
  --copper-light: #d4944d;
  --copper-glow: rgba(184,115,51,.12);
  --teal: #2a9d8f;
  --teal-soft: rgba(42,157,143,.08);
  --white: #ffffff;
  --border-light: rgba(17,17,24,.07);
  --border-dark: rgba(250,249,247,.08);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 2px 20px rgba(17,17,24,.04);
  --shadow-md: 0 8px 40px rgba(17,17,24,.07);
  --shadow-lift: 0 16px 60px rgba(17,17,24,.1);
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

.container { width: 90%; max-width: 1140px; margin: 0 auto; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: all .35s var(--ease);
}
.nav.scrolled {
  background: rgba(250,249,247,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
  padding: 14px 0;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color .35s var(--ease);
}
.nav.scrolled .nav-brand { color: var(--text-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color .35s var(--ease);
}
.nav-links a:hover { color: var(--text-on-dark); }
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(250,249,247,.25);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-on-dark) !important;
  transition: all .35s var(--ease);
}
.nav-cta:hover {
  border-color: var(--copper-light);
  color: var(--copper-light) !important;
}
.nav.scrolled .nav-cta {
  border-color: var(--copper);
  color: var(--copper) !important;
}
.nav.scrolled .nav-cta:hover {
  background: var(--copper);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: all .35s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--text-primary); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,249,247,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,249,247,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-1 {
  top: -20%;
  right: -10%;
  background: rgba(184,115,51,.07);
}
.hero-glow-2 {
  bottom: -30%;
  left: -15%;
  background: rgba(42,157,143,.05);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--copper);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text-on-dark);
  max-width: 800px;
  margin-bottom: 28px;
}
.hero h1 .em {
  font-style: italic;
  color: var(--copper-light);
}
.hero-description {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-on-dark-muted);
  max-width: 580px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--copper);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .35s var(--ease);
}
.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(184,115,51,.25);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform .35s var(--ease);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1.5px solid var(--border-dark);
  border-radius: 50px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .35s var(--ease);
}
.btn-ghost:hover {
  color: var(--text-on-dark);
  border-color: rgba(250,249,247,.3);
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.scroll-line {
  width: 1px;
  height: 48px;
  position: relative;
  overflow: hidden;
  background: rgba(250,249,247,.1);
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--copper);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* ── Ticker ── */
.ticker {
  background: var(--surface-dark);
  border-top: 1px solid var(--border-dark);
  overflow: hidden;
  padding: 20px 0;
}
.ticker-track {
  display: flex;
  animation: tickerSlide 35s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── About ── */
.about { padding: 120px 0; }
.about-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(
    160deg, var(--ink) 0%,
    var(--ink-soft) 100%
  );
  position: relative;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--copper-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}
.about-float-text {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.about-float-sub {
  font-size: .75rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--copper);
}
.about-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 28px;
}
.about-content h2 .em { font-style: italic; color: var(--copper); }
.about-content p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 8px;
}

/* ── Philosophy ── */
.philosophy {
  background: var(--surface-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle, var(--copper-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.philosophy .container { position: relative; z-index: 1; }
.philosophy blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-on-dark);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
}
.philosophy blockquote .highlight {
  color: var(--copper-light);
  font-style: normal;
  font-weight: 500;
}
.philosophy-attr {
  margin-top: 36px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 1px;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  background: var(--surface-warm);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}
.services-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
}
.services-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 420px;
  text-align: right;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 32px 40px;
  border: 1px solid var(--border-light);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg, var(--copper),
    var(--copper-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--surface-warm);
  line-height: 1;
  margin-bottom: 28px;
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.svc-icon.copper {
  background: var(--copper-glow);
  color: var(--copper);
}
.svc-icon.teal { background: var(--teal-soft); color: var(--teal); }
.svc-icon.ink { background: rgba(17,17,24,.06); color: var(--ink); }
.svc-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.svc-card p {
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.svc-tag {
  font-size: .72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--surface-warm);
  color: var(--text-secondary);
}

/* ── Portfolio ── */
.portfolio {
  background: var(--surface-dark);
  padding: 120px 0;
}
.portfolio-header {
  margin-bottom: 64px;
}
.portfolio-header .section-eyebrow { color: var(--copper-light); }
.portfolio-header .section-eyebrow::before {
  background: var(--copper-light);
}
.portfolio-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-on-dark);
}
.portfolio-header p {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin-top: 16px;
}
.portfolio-entry {
  display: grid;
  grid-template-columns: 56px 128px 1fr 48px;
  align-items: center;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.pe-thumb {
  width: 128px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-dark-alt);
  flex-shrink: 0;
}
.pe-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-entry:first-child {
  border-top: 1px solid var(--border-dark);
}
.portfolio-entry:hover {
  padding-left: 16px;
}
.portfolio-entry:hover .pe-title {
  color: var(--copper-light);
}
.portfolio-entry:hover .pe-arrow {
  opacity: 1;
  transform: translateX(0);
}
.pe-num {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--text-on-dark-muted);
}
.pe-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}
.pe-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--text-on-dark);
  transition: color .35s var(--ease);
  margin-bottom: 8px;
}
.pe-desc {
  font-size: .9rem;
  color: var(--text-on-dark-muted);
  max-width: 540px;
}
.pe-arrow {
  color: var(--copper);
  opacity: 0;
  transform: translateX(-8px);
  transition: all .35s var(--ease);
}
.pe-arrow svg { width: 22px; height: 22px; }

.portfolio-more {
  margin-top: 40px;
  text-align: center;
}
.portfolio-more a {
  font-size: .92rem;
  color: var(--copper-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease);
}
.portfolio-more a:hover {
  border-bottom-color: var(--copper-light);
}

/* ── Portfolio page (full grid) ── */
.portfolio-page-hero {
  position: relative;
  background: var(--surface-dark);
  padding: 140px 0 56px;
  overflow: hidden;
}
.portfolio-page-hero .hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
}
.portfolio-page-hero .section-eyebrow {
  color: var(--copper-light);
}
.portfolio-page-hero .section-eyebrow::before {
  background: var(--copper-light);
}
.portfolio-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-on-dark);
  margin-top: 12px;
  max-width: 640px;
}
.portfolio-page-hero .page-lead {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  line-height: 1.75;
}
.portfolio-page-body {
  background: var(--surface);
  padding: 72px 0 100px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
@media (min-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.portfolio-card:hover .pc-title {
  color: var(--copper);
}
.pc-thumb {
  aspect-ratio: 16 / 9;
  background: var(--surface-warm);
  overflow: hidden;
}
.pc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-inner {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.pc-num {
  font-family: 'Fraunces', serif;
  font-size: .95rem;
  color: var(--text-tertiary);
}
.pc-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--copper);
}
.pc-title {
  font-family: 'Fraunces', serif;
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color .35s var(--ease);
}
.pc-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.pc-cta {
  margin-top: 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.portfolio-card:hover .pc-cta {
  color: var(--ink-soft);
}
.portfolio-page-cta {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
}
.portfolio-page-cta p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1rem;
}

@media (max-width: 820px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonials ── */
.testimonials {
  padding: 120px 0;
  background: var(--surface);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
}
.testi-carousel {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: opacity .5s var(--ease);
}
.testi-card.hidden { display: none; }
.testi-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
  color: var(--copper);
}
.testi-text {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.testi-author-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-primary);
}
.testi-author-role {
  font-size: .82rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--copper);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .35s var(--ease);
}
.testi-dot.active { background: var(--copper); }

/* ── Big Statement Ticker ── */
.statement-band {
  background: var(--surface-dark);
  padding: 48px 0;
  overflow: hidden;
}
.statement-track {
  display: flex;
  animation: tickerSlide 28s linear infinite;
  width: max-content;
}
.statement-word {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
}
.statement-word .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(250,249,247,.15);
}
.statement-word .solid { color: var(--text-on-dark); }
.statement-word .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--surface);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 20px;
}
.contact-text h2 .em { font-style: italic; color: var(--copper); }
.contact-text > p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 40px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.channel:first-child { border-top: 1px solid var(--border-light); }
.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--copper-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
}
.channel-svg {
  display: block;
}
.channel-icon--linkedin .channel-svg--fill {
  width: 20px;
  height: 20px;
}
.channel-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.channel-value {
  font-size: .92rem;
  color: var(--text-secondary);
  margin-top: 2px;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-primary);
  background: var(--surface);
  transition: all .3s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-glow);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.btn-form {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  background: var(--ink);
  color: var(--white);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .35s var(--ease);
}
.btn-form:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,115,51,.2);
}

/* ── Footer ── */
footer {
  background: var(--surface-dark);
  padding: 52px 0 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-on-dark);
}
.footer-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-nav a {
  font-size: .82rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color .35s var(--ease);
}
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
.footer-copy {
  font-size: .78rem;
  color: var(--text-on-dark-muted);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a,
.footer-socials .footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: all .35s var(--ease);
}
.footer-social-svg {
  display: block;
}
.footer-social-link--linkedin .footer-social-svg--fill {
  width: 16px;
  height: 16px;
}
.footer-socials a:hover,
.footer-socials .footer-social-link:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-frame { max-height: 420px; }
  .about-float-card { bottom: -16px; right: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header p { text-align: left; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(250,249,247,.98);
    backdrop-filter: blur(16px);
    padding: 20px 5%;
    box-shadow: var(--shadow-md);
    gap: 12px;
  }
  .nav-links.open a { color: var(--text-primary) !important; }
  .nav-links.open .nav-cta {
    border-color: var(--copper);
    color: var(--copper) !important;
  }
  .hero .container {
    padding: 140px 0 100px;
  }
  .about,
  .philosophy,
  .services,
  .portfolio,
  .testimonials,
  .contact {
    padding: 80px 0;
  }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-entry {
    grid-template-columns: 40px 88px 1fr 32px;
    gap: 12px;
  }
  .pe-thumb {
    width: 88px;
    height: 50px;
  }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .testi-card { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .about-float-card { display: none; }
  .pe-title { font-size: 1.15rem; }
  .pe-desc { display: none; }
  .statement-word { font-size: 2rem; padding: 0 24px; gap: 24px; }
}
