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

:root {
  --background: #F5F1EB;
  --foreground: #1B1815;
  --card: #EDE9E0;
  --muted: #E0DBD2;
  --muted-foreground: #7A7268;
  --border: rgba(27, 24, 21, 0.12);
  --font-sans: 'Jost', system-ui, sans-serif;
  --font-serif: 'Spectral', Georgia, serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 56px; }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s;
}

header.scrolled {
  background: rgba(245, 241, 235, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  nav { padding: 0 56px; }
}

.nav-logo {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  transition: color 0.5s;
  user-select: none;
}

header.scrolled .nav-logo { color: var(--foreground); }

.nav-links {
  display: none;
  list-style: none;
  gap: 40px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; align-items: center; }
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.5s;
}

.nav-links a:hover { color: white; }

header.scrolled .nav-links a { color: var(--muted-foreground); }
header.scrolled .nav-links a:hover { color: var(--foreground); }

.menu-toggle {
  display: block;
  padding: 4px;
  margin-right: -4px;
  color: white;
  transition: color 0.5s;
  line-height: 0;
}

header.scrolled .menu-toggle { color: var(--foreground); }

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 24px 24px 40px;
  flex-direction: column;
  gap: 28px;
}

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

.mobile-menu a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--muted);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 24, 21, 0.62);
}

.hero-content {
  position: relative;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .hero-content { padding: 0 56px 112px; }
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  color: white;
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  line-height: 1.06;
  max-width: 840px;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ── SHARED COMPONENTS ──────────────────────────────────────── */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 6px;
  color: white;
  transition: border-color 0.3s;
}

.link-underline:hover { border-color: white; }

.link-underline.dark {
  color: var(--foreground);
  border-color: rgba(27, 24, 21, 0.3);
}

.link-underline.dark:hover { border-color: var(--foreground); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.section-header {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

/* ── ABOUT / STATEMENT ──────────────────────────────────────── */
.statement { padding: 96px 0; }

@media (min-width: 768px) {
  .statement { padding: 160px 0; }
}

.two-col { display: grid; gap: 48px; }

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
}

.statement-body p:first-child {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  line-height: 1.5;
}

.statement-body p:last-of-type {
  margin-top: 32px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--muted-foreground);
  max-width: 480px;
}

/* ── SELECTED WORK ──────────────────────────────────────────── */
.work { padding-bottom: 96px; }

@media (min-width: 768px) {
  .work { padding-bottom: 144px; }
}

.project-item { border-top: 1px solid var(--border); }
.project-item:last-child { border-bottom: 1px solid var(--border); }

.project-image-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.project-image-wrap.open { max-height: 560px; opacity: 1; }

.project-image-wrap img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: clamp(280px, 45vw, 520px);
}

.project-row {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .project-row {
    padding: 36px 0;
    grid-template-columns: 56px 1fr auto auto;
    gap: 32px;
  }
}

.project-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  padding-top: 2px;
}

.project-name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  transition: transform 0.3s;
}

.project-item:hover .project-name { transform: translateX(6px); }

.project-cat {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  margin-top: 4px;
  display: block;
}

.project-visit {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  display: inline-block;
  margin-top: 6px;
  transition: color 0.3s;
}

.project-visit:hover { color: var(--foreground); }

.project-arrow {
  color: var(--muted-foreground);
  transition: all 0.3s;
  line-height: 0;
}

.project-item:hover .project-arrow { color: var(--foreground); transform: translate(2px, -2px); }
.project-arrow.rotated { transform: rotate(90deg); color: var(--foreground); }

/* ── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--card); }

.services-inner { padding: 96px 0; }

@media (min-width: 768px) {
  .services-inner { padding: 144px 0; }
}

.services-grid { display: grid; }

@media (min-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-item {
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

@media (min-width: 768px) {
  .service-item { padding: 48px 80px 48px 0; }
}

.service-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.service-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.service-item:hover .service-name { transform: translateX(4px); }

.service-desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--muted-foreground);
  max-width: 340px;
}

/* ── WE WORK WITH ───────────────────────────────────────────── */
.brands { padding: 96px 0; }

@media (min-width: 768px) {
  .brands { padding: 128px 0; }
}

.brands-inner { border-top: 1px solid var(--border); padding-top: 40px; }

.brands-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 40px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
}

.brand-item {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 300;
  line-height: 1.4;
}

.brand-dot {
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  margin: 0 12px;
}

/* ── TESTIMONIAL ────────────────────────────────────────────── */
.testimonial {
  background: var(--foreground);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--background);
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 24, 21, 0.72);
}

.testimonial-inner { position: relative; }

.testimonial-inner {
  padding: 96px 0;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-inner { padding: 160px 0; }
}

.testimonial-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .testimonial-content { padding: 0 56px; }
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.6;
  color: var(--background);
}

.testimonial-author {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--background);
}

.testimonial-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.45);
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact { padding: 96px 0; }

@media (min-width: 768px) {
  .contact { padding: 160px 0; }
}

.contact-grid {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: grid;
  gap: 64px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 96px; }
}

.contact-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 28px;
}

.contact-text {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--muted-foreground);
  max-width: 340px;
}

.contact-email-wrap { margin-top: 48px; }

.contact-email-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.contact-email {
  font-size: 13px;
  border-bottom: 1px solid rgba(27, 24, 21, 0.25);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.3s;
}

.contact-email:hover { border-color: var(--foreground); }

form { display: flex; flex-direction: column; gap: 36px; }

.field { display: flex; flex-direction: column; gap: 10px; }

.field label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 400;
}

.field input,
.field textarea {
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 12px 0;
  font-size: 13.5px;
  font-family: var(--font-sans);
  font-weight: 400;
  outline: none;
  color: var(--foreground);
  transition: border-color 0.3s;
  resize: none;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(122, 114, 104, 0.4);
}

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

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--foreground);
  color: var(--background);
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-weight: 400;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}

.submit-btn:hover { opacity: 0.8; }
.submit-btn:disabled { opacity: 0.5; cursor: default; }

.thank-you { display: flex; align-items: center; }

.thank-you-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.thank-you-text {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--muted-foreground);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); }

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 36px 56px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-logo {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-green {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}
