* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #0C0C0B;
  --paper: #F5F2EC;
  --paper-warm: #EDE9E0;
  --line: #C8C3B8;
  --line-strong: #8C8780;
  --accent: #1A3A2A;
  --accent-light: #2D6048;
  --amber: #C4842A;
  --amber-light: #E8A84C;
  --white: #FDFCF9;
  --mono: 'Geist Mono', monospace;
  --serif: 'Instrument Serif', serif;
  --sans: 'Geist', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ── NAV  ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}



.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  transition: border-color 0.4s;
}
footer .nav-logo-mark {
  border-color: var(--white);
}

footer .nav-logo-mark::before {
  background: var(--white);
}

footer .nav-logo span {
  color: var(--white);
}


.nav-logo-mark::before {
  content: '';
  background: var(--ink);
  grid-column: 1;
  grid-row: 1;
  margin: 4px;
  transition: background 0.4s;
}



.nav-logo span {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: color 0.4s;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.4s;
  color: var(--ink);
}



.nav-links a:hover { opacity: 1; }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--ink);
  padding: 10px 20px;
  text-decoration: none;
  opacity: 1 !important;
  transition: background 0.2s;
}



.nav-cta:hover { background: var(--accent); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s, background 0.4s;
}



/* ── HERO ── */
.hero {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0c0c0b;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  opacity: 0.55;

  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;

  filter:
    brightness(0.72)
    contrast(1.08)
    saturate(0.9);

  z-index: 0;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber-light);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(253,252,249,0.72);
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-sub strong { font-weight: 500; color: var(--white); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--white);
  padding: 15px 30px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, gap 0.2s;
}

.btn-primary:hover { background: var(--amber-light); gap: 16px; }

.btn-ghost {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,252,249,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(253,252,249,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-stat-card {
  background: rgba(12,12,11,0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(253,252,249,0.1);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-stat-card:first-child {
  border-bottom: none;
}

.hero-stat-card:last-child {
  border-top: none;
}

.hsc-num {
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  color: var(--amber-light);
  line-height: 1;
}

.hsc-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,252,249,0.5);
  text-align: right;
  line-height: 1.5;
}

.hsc-divider {
  width: 1px;
  height: 32px;
  background: rgba(253,252,249,0.12);
  flex-shrink: 0;
}

/* ── SECTION SHARED ── */
section { position: relative; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--line-strong);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--line-strong);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title em { font-style: italic; color: var(--accent-light); }

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.4);
  padding: 0 32px;
}

.ticker-item strong {
  color: rgba(245,242,236,0.9);
  font-weight: 400;
}

.ticker-dot {
  color: var(--amber);
  margin: 0 8px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.services-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--line-strong);
  max-width: 360px;
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.service-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover { background: var(--paper-warm); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--line);
  margin-bottom: 40px;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--accent-light);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--line-strong);
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--line-strong);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: var(--accent-light);
  flex-shrink: 0;
}

/* ── PROCESS ── */
.process {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
}

.process .section-label { color: rgba(245,242,236,0.35); }
.process .section-label::before { background: rgba(245,242,236,0.25); }
.process .section-title { color: var(--paper); }
.process .section-title em { color: var(--amber-light); }

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}

.process-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,242,236,0.45);
  max-width: 360px;
  align-self: end;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,242,236,0.1);
}

.process-step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid rgba(245,242,236,0.08);
  margin-right: 32px;
  position: relative;
}

.process-step:last-child { border-right: none; margin-right: 0; }

.process-step-num {
  font-family: var(--serif);
  font-size: 64px;
  font-style: italic;
  color: rgba(245,242,236,0.06);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245,242,236,0.45);
}

.process-step-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 8px;
  display: block;
}

/* ── PORTFOLIO ── */
.portfolio {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.portfolio-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--line-strong);
  letter-spacing: 0.06em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  background: var(--line);
}

.portfolio-item {
  background: var(--paper);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item:first-child {
  grid-row: span 2;
}

.portfolio-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.portfolio-item:first-child .portfolio-photo {
  aspect-ratio: unset;
  height: 100%;
  min-height: 420px;
}

.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.portfolio-item:hover .portfolio-photo img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,42,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
}

.portfolio-info {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.portfolio-type {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  display: block;
}

.portfolio-info h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}

.portfolio-info p {
  font-size: 12px;
  color: var(--line-strong);
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 0;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
}

.testimonial-stars {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  display: block;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.author-initial {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.author-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--line-strong);
}

/* ── UK CALLOUT ── */
.uk-callout {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.uk-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.uk-callout h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.uk-callout h2 em { font-style: italic; color: var(--accent-light); }

.uk-callout-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--line-strong);
}

.uk-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
}

.uk-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.uk-step:last-child { border-bottom: none; }
.uk-step:hover { background: var(--paper-warm); }

.uk-step-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding: 24px 0 24px 20px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.uk-step-text {
  padding: 24px 28px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
}

/* ── FAQ ── */
.faq {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

details.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

details.faq-item summary {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

details.faq-item summary:hover { color: var(--accent-light); }

details.faq-item summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 300;
  color: var(--line-strong);
  flex-shrink: 0;
  transition: transform 0.3s;
}

details[open].faq-item summary::after { transform: rotate(45deg); }

details.faq-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--line-strong);
  padding: 0 0 24px;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact .section-label { color: rgba(245,242,236,0.35); }
.contact .section-label::before { background: rgba(245,242,236,0.25); }

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--paper);
}

.contact h2 em { font-style: italic; color: var(--amber-light); }

.contact-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,242,236,0.5);
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(245,242,236,0.1);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,242,236,0.07);
}

.contact-detail svg {
  width: 16px;
  height: 16px;
  color: var(--amber-light);
  flex-shrink: 0;
}

.contact-detail a,
.contact-detail span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(245,242,236,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--amber-light); }

.contact-form {
  background: rgba(245,242,236,0.04);
  border: 1px solid rgba(245,242,236,0.1);
  padding: 48px;
}

.form-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.35);
  display: block;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(245,242,236,0.06);
  border: 1px solid rgba(245,242,236,0.1);
  color: var(--paper);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245,242,236,0.2); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber-light);
}

.form-select option { background: var(--ink); color: var(--paper); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-group { margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-submit {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: none;
  padding: 16px 32px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--amber-light); color: var(--ink); }

.form-note {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(245,242,236,0.25);
  text-align: center;
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  color: var(--paper);
  padding: 64px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,242,236,0.07);
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.404);
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand address {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 236, 0.678);
  margin-top: 24px;
  line-height: 2;
}

.footer-brand address a {
  color: rgba(245, 242, 236, 0.637);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-brand address a:hover { color: var(--amber-light); }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(218, 218, 218, 0.965);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.626);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(245, 242, 236, 0.734);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 64px; }
  .hero-right { display: none; }
  .container { padding: 0 24px; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-header { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: span 2; grid-row: span 1; }
  .testimonials-header { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .uk-callout-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu ul a {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  color: var(--paper);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.mobile-menu ul a:hover { opacity: 1; }