/* ============================================================
   TASTIAGA INTERIOR — Shared Stylesheet
   Single file for all pages. No frameworks, no build step.
   ============================================================ */

/* ─── Google Fonts are loaded via <link> in HTML ─── */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--grey);
  outline-offset: 3px;
}

/* ─── CSS VARIABLES ─── */
:root {
  /* Colors */
  --black: #0B0B0B;
  --ink: #141414;
  --white: #FAFAF8;
  --paper: #F3F1EC;
  --grey: #8C8C88;
  --grey-dark: #5A5A57;
  --line-dark: rgba(250,250,248,0.14);
  --line-light: rgba(11,11,11,0.12);

  /* Layout */
  --max-w: 1280px;
  --side-pad: clamp(1.25rem, 5vw, 4rem);
  --section-py: clamp(5rem, 12vh, 9rem);

  /* Type scale */
  --fs-hero: clamp(2.8rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.4rem, 5vw, 4.5rem);
  --fs-h2: clamp(1.75rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: clamp(0.9375rem, 1.5vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
}

/* ─── TYPOGRAPHY ─── */
.font-display, h1, h2, h3, .pull-quote {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  font-weight: 400;
}

h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

p { font-size: var(--fs-body); }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.pull-quote {
  font-size: clamp(1.4rem, 2.8vw, 2.25rem);
  font-style: normal;
  line-height: 1.2;
}

/* ─── LAYOUT HELPERS ─── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--light {
  background: var(--white);
  color: var(--ink);
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.hairline {
  border: none;
  border-top: 1px solid var(--line-light);
  width: 100%;
}

.section--dark .hairline {
  border-color: var(--line-dark);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 1rem 2rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-radius: 2px;
  min-height: 44px;
  border: 1.5px solid transparent;
}

.btn--primary-dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary-dark:hover {
  background: transparent;
  color: var(--white);
}

.btn--primary-light {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--primary-light:hover {
  background: transparent;
  color: var(--black);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: var(--line-dark);
}
.btn--ghost-dark:hover {
  border-color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-light);
}
.btn--ghost-light:hover {
  border-color: var(--ink);
}

.link-arrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--grey);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.link-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out-expo);
}
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover::after { width: 100%; }

.section--dark .link-arrow { color: var(--grey); }
.section--dark .link-arrow:hover { color: var(--white); }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--side-pad);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(11,11,11,0.96);
  border-bottom-color: var(--line-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.header-nav a {
  font-size: var(--fs-small);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(250,250,248,0.75);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.mobile-nav a:hover { opacity: 1; }
.mobile-nav-wa {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--grey);
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }
  .mobile-nav { display: flex; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,.45) 0%, rgba(11,11,11,.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero .eyebrow { color: rgba(250,250,248,0.6); }

.hero h1 {
  font-size: var(--fs-hero);
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(250,250,248,0.68);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--side-pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,250,248,0.4);
  font-size: 0.6875rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(250,250,248,0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.7; }
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-left .pull-quote {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.25;
}

.about-right {
  padding-top: 0.5rem;
}

.about-right p + p { margin-top: 1.25rem; }

.about-right p { color: var(--grey-dark); }

.about-sig {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ─── SERVICES LIST ─── */
.services-list { margin-top: 3rem; }

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-dark);
  cursor: default;
  transition: padding-left 0.3s ease;
}
.service-row:last-child { border-bottom: 1px solid var(--line-dark); }
.service-row:hover { padding-left: 0.5rem; }

.service-num {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  color: var(--grey);
  letter-spacing: .1em;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  transition: letter-spacing 0.3s ease;
}
.service-row:hover .service-title { letter-spacing: 0.02em; }

.service-desc {
  font-size: var(--fs-small);
  color: var(--grey);
  max-width: 32ch;
  line-height: 1.5;
}

.service-arrow {
  color: var(--grey);
  font-size: 1.25rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.service-row:hover .service-arrow {
  transform: translateX(6px);
  color: var(--white);
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }
  .service-desc { display: none; }
  .service-arrow { display: none; }
}

/* ─── PORTFOLIO GRID ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(180px, 25vw, 340px);
  gap: clamp(0.5rem, 1vw, 1rem);
  margin-top: 3rem;
}

.port-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Asymmetric layout */
.port-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.port-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
.port-item:nth-child(3) { grid-column: 8 / 13; grid-row: 2 / 3; }
.port-item:nth-child(4) { grid-column: 1 / 5; grid-row: 3 / 4; }
.port-item:nth-child(5) { grid-column: 5 / 9; grid-row: 3 / 4; }
.port-item:nth-child(6) { grid-column: 9 / 13; grid-row: 3 / 4; }

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s ease;
}
.port-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0.6);
}

.port-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(to top, rgba(11,11,11,.8) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.port-item:hover .port-caption {
  transform: translateY(0);
  opacity: 1;
}

.port-caption-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  display: block;
}
.port-caption-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(250,250,248,0.6);
  display: block;
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .port-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .port-item:nth-child(1) { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .port-item:nth-child(1) { grid-column: 1; }
  .port-caption { opacity: 1; transform: translateY(0); }
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.85rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--line-dark);
}

.process-step {
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  text-align: left;
}

.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--grey-dark);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: var(--fs-small);
  color: var(--grey);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-steps::before { display: none; }
  .process-step {
    padding: 1.75rem 0;
    border-top: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1.25rem;
    align-items: start;
  }
  .process-step-num { margin-bottom: 0; font-size: 1.75rem; }
  .process-step-content { }
}

/* ─── WHY TASTIAGA ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 3rem;
}

.why-item { }

.why-item-icon {
  margin-bottom: 1.25rem;
  color: var(--grey);
}

.why-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.why-item-desc {
  font-size: var(--fs-small);
  color: var(--grey-dark);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: clamp(3rem, 6vh, 5rem) 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--grey);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--line-dark); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--line-dark); border-right: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-top: 1px solid var(--line-dark); }
  .stat-item:first-child { border-top: none; }
}

/* ─── TESTIMONIALS ─── */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.testimonial-item {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.testimonial-item:last-child { border-bottom: 1px solid var(--line-light); }

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
}

.testimonial-attr {
  padding-top: 0.5rem;
  font-size: var(--fs-small);
  font-family: 'Inter', sans-serif;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 768px) {
  .testimonial-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ─── FAQ ─── */
.faq-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line-dark);
}

.faq-item { border-bottom: 1px solid var(--line-dark); }

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--white);
  min-height: 44px;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.3;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  color: var(--grey);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }

.faq-item[open] .faq-icon::after,
.faq-trigger[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-body.is-open { max-height: 300px; }

.faq-answer {
  padding-bottom: 1.5rem;
  font-size: var(--fs-body);
  color: var(--grey);
  line-height: 1.7;
  max-width: 64ch;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.contact-details { margin-bottom: 2.5rem; }

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.contact-detail-item:first-child { border-top: 1px solid var(--line-dark); }

.contact-detail-label {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--grey);
}

.contact-detail-value {
  font-size: var(--fs-body);
  color: var(--white);
}
.contact-detail-value a { color: var(--white); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--grey); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--grey);
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-body);
  padding: 0.75rem 0;
  width: 100%;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--white);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--grey-dark);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Map */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(0.9);
  display: block;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper { min-height: 320px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: clamp(3.5rem, 7vh, 6rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
}

.footer-logo img {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: var(--fs-small);
  color: var(--grey);
  line-height: 1.6;
  margin-top: 0.5rem;
  max-width: 24ch;
}

.footer-col-title {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: var(--fs-small);
  color: rgba(250,250,248,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}
.footer-contact-item span:first-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--grey);
}
.footer-contact-item a,
.footer-contact-item span:last-child {
  font-size: var(--fs-small);
  color: rgba(250,250,248,0.65);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-copy,
.footer-bottom-tag {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: .05em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── PAGE HERO STRIP ─── */
.page-hero {
  background: var(--black);
  padding-top: clamp(8rem, 18vh, 12rem);
  padding-bottom: clamp(3.5rem, 7vh, 6rem);
}

.page-hero h1 {
  font-size: var(--fs-h1);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-intro {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--grey);
  max-width: 60ch;
  line-height: 1.7;
}

/* ─── PORTFOLIO PAGE ─── */
.filter-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--grey);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  min-height: 44px;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.port-full-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.port-full-item.hidden { display: none; }

.port-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s ease;
}
.port-full-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0.5);
}

.port-full-item .port-caption {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.port-full-item:hover .port-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) { .portfolio-full-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .portfolio-full-grid { grid-template-columns: 1fr; } }

/* ─── SERVICES PAGE ─── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3rem, 7vh, 5rem);
  border-top: 1px solid var(--line-light);
}
.service-detail:first-child { border-top: none; }

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(1);
}

.service-detail-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--line-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section--paper .service-detail-num { color: var(--line-light); }

.service-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.service-detail-desc {
  font-size: var(--fs-body);
  color: var(--grey-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-includes-title {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.service-includes-list { border-top: 1px solid var(--line-light); }
.service-includes-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: var(--fs-small);
  color: var(--grey-dark);
  padding-left: 1rem;
  position: relative;
}
.service-includes-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--grey);
}

@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
}

/* ─── ABOUT PAGE ─── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-story-left { }

.about-story-pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 2rem;
  font-style: italic;
}

.about-story-right p {
  color: var(--grey-dark);
  line-height: 1.75;
}
.about-story-right p + p { margin-top: 1.25rem; }

@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
}

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center;
  padding-block: clamp(4rem, 10vh, 7rem);
}
.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 0.75rem;
}
.cta-section p {
  color: var(--grey);
  margin-bottom: 2rem;
  max-width: 48ch;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-scroll-line { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ─── SECTION CTA LINK ROW ─── */
.section-cta-row {
  margin-top: 3rem;
  display: flex;
  justify-content: flex-end;
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── SECTION HEADER ─── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--fs-h2);
  line-height: 1.1;
}

/* Mobile nav open state on body */
body.nav-open { overflow: hidden; }
