/* Turner Carpentry — design system */

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

:root {
  --wood: #3d2b1f;
  --wood-mid: #5c4033;
  --wood-soft: #7a5c44;
  --ink: #2a2118;
  --slate: #6b5d52;
  --slate-light: #9a8b7e;
  --line: #e8dfd4;
  --bg: #f7f2ea;
  --bg-warm: #faf7f2;
  --white: #ffffff;
  --amber: #c4a35a;
  --amber-light: #dbc088;
  --sage: #4a6741;
  --sage-light: #e8efe6;
  --warn-bg: #fef3c7;
  --warn-border: #fcd34d;
  --warn-text: #78350f;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
  --wrap: 1140px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(42,33,24,0.08);
  --shadow-lg: 0 20px 50px rgba(42,33,24,0.12);
  --ease: 0.2s ease;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 6rem; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--ease), border-color var(--ease), background var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--wood);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}
.skip:focus { top: 0.75rem; }

.demo-notice {
  background: var(--warn-bg);
  border-bottom: 1px solid var(--warn-border);
  color: var(--warn-text);
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.625rem 1.25rem;
  text-align: center;
}
.demo-notice strong { font-weight: 700; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.brand__mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--wood);
  letter-spacing: 0.01em;
}
.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.1rem;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--wood);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
}
.nav.is-open { display: block; }
.nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav a {
  display: block;
  padding: 0.625rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius);
}
.nav a:hover, .nav a.is-active { color: var(--wood); background: var(--bg); }
.nav a.is-active { font-weight: 600; }

.header__phone {
  display: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wood-mid);
  white-space: nowrap;
}
.header__phone:hover { color: var(--amber); }
.header__cta { display: none; }

@media (min-width: 960px) {
  .menu-btn { display: none; }
  .header__inner { gap: 2rem; }
  .nav {
    display: block !important;
    position: static;
    border: none;
    padding: 0;
    box-shadow: none;
    margin-left: auto;
  }
  .nav ul { flex-direction: row; gap: 0.125rem; }
  .nav a { padding: 0.5rem 0.875rem; font-size: 0.875rem; }
  .nav a.is-active { background: transparent; box-shadow: inset 0 -2px 0 var(--amber); border-radius: 0; }
  .header__phone { display: block; margin-right: 0.5rem; }
  .header__cta { display: inline-flex; flex-shrink: 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--wood); color: var(--white); border-color: var(--wood); }
.btn--primary:hover { background: var(--wood-mid); border-color: var(--wood-mid); color: var(--white); }
.btn--amber { background: var(--amber); color: var(--wood); border-color: var(--amber); }
.btn--amber:hover { background: var(--amber-light); border-color: var(--amber-light); color: var(--wood); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--wood); border-color: var(--line); }
.btn--outline-dark:hover { border-color: var(--wood); background: var(--bg); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  background: var(--wood);
  color: var(--white);
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(38,28,20,0.82) 0%, rgba(38,28,20,0.9) 45%, rgba(38,28,20,0.85) 100%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(196,163,90,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,163,90,0.18);
  border: 1px solid rgba(196,163,90,0.45);
  color: var(--amber-light);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.125rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  margin-bottom: 0.75rem;
}
.hero__note { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
}
.hero__panel-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1rem;
}
.hero__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.metric {
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.metric strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--amber-light);
}
.metric span { font-size: 0.75rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* Trust strip */
.trust {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) {
  .trust__item:not(:last-child) { border-right: 1px solid var(--line); }
}
.trust__item { text-align: center; padding: 0.5rem; }
.trust__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--wood);
  margin-bottom: 0.15rem;
}
.trust__item span { font-size: 0.75rem; color: var(--slate); line-height: 1.35; }

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5rem) 0; }
.section--bg { background: var(--bg); }
.section--warm { background: var(--bg-warm); }

.section-head { margin-bottom: 2.5rem; max-width: 640px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--wood);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--slate); font-size: 1rem; line-height: 1.65; }

.section-actions { text-align: center; margin-top: 1.75rem; }
.section-note {
  margin-top: 2rem;
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.section-note a { color: var(--wood-mid); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) { .split { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.split__text p { color: var(--slate); margin-bottom: 1rem; line-height: 1.75; }
.split__text p:last-of-type { margin-bottom: 0; }
.split__text .btn { margin-top: 1.5rem; }

.about__highlight {
  background: var(--wood);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
}
.about__highlight-year {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.875rem;
}
.about__highlight-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.92);
}
.about__highlight-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.125rem;
}
.about__highlight-list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.about__highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.about__highlight-list li:last-child { margin-bottom: 0; }

/* Category tiles */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .tile-grid { grid-template-columns: repeat(4, 1fr); } }
.tile-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .tile-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .tile-grid--2 { grid-template-columns: repeat(3, 1fr); } }

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
a.tile:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: inherit;
}
.tile--photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
a.tile--photo:hover img { transform: scale(1.05); }
.tile__body { padding: 1.125rem 1.25rem 1.375rem; }
.tile__body h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.375rem;
}
.tile__body p { font-size: 0.8125rem; color: var(--slate); line-height: 1.55; }

/* Process */
.process {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; padding: 1rem; }
.step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sage-light);
  color: var(--wood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--wood); margin-bottom: 0.375rem; }
.step p { font-size: 0.875rem; color: var(--slate); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--wood);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(61,43,31,0.9) 0%, transparent 55%);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }
.gallery-item strong {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 700;
}

.gallery-section { margin-bottom: 3.5rem; }
.gallery-section:last-child { margin-bottom: 0; }
.gallery-section h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--wood);
  margin-bottom: 0.5rem;
}
.gallery-section > p {
  color: var(--slate);
  font-size: 0.9375rem;
  max-width: 58ch;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Recent projects */
.project-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .project-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--ease), transform var(--ease);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.project-card__body { padding: 1.25rem; }
.project-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--wood);
  margin-bottom: 0.25rem;
}
.project-card__body p { font-size: 0.8125rem; color: var(--slate); }

/* CTA */
.cta {
  position: relative;
  background: var(--wood);
  color: var(--white);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 120%, rgba(196,163,90,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta .wrap { position: relative; }
.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.75rem;
}
.cta p {
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Page hero */
.page-hero {
  background: var(--wood);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}
.page-hero .breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: var(--amber-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.page-hero p { color: rgba(255,255,255,0.75); max-width: 58ch; font-size: 1rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .map { grid-column: 1 / -1; }
}
.contact-info h2, .form-box h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--wood);
  margin-bottom: 1rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-row__icon svg { width: 20px; height: 20px; }
.contact-row h3 { font-size: 0.8125rem; font-weight: 700; color: var(--wood); margin-bottom: 0.2rem; }
.contact-row p, .contact-row a { font-size: 0.9375rem; color: var(--slate); }
.contact-row a:hover { color: var(--wood); }
.contact-info__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.contact-team {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 480px) { .contact-team { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.team-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--wood); margin-bottom: 0.25rem; }
.team-card p { font-size: 0.8125rem; color: var(--slate); margin-bottom: 0.75rem; }
.team-card a { font-size: 0.875rem; font-weight: 600; color: var(--wood-mid); }
.team-card a:hover { color: var(--amber); }

.form-box {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-box > p { color: var(--slate); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.form-demo-note {
  font-size: 0.8125rem;
  color: var(--warn-text);
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 0.375rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--amber);
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}
.form-success.is-visible { display: block; }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/6;
}
.map iframe { width: 100%; height: 100%; border: 0; }

.email-banner {
  background: var(--sage-light);
  border: 1px solid #c5d4c0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}
.email-banner p { color: var(--slate); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.email-banner a { font-weight: 700; color: var(--wood); }

/* Footer */
.footer {
  background: var(--wood);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }
.footer__brand .brand__name { color: var(--white); font-size: 1rem; }
.footer__brand .brand__sub { color: rgba(255,255,255,0.45); }
.footer__desc { font-size: 0.875rem; line-height: 1.65; margin: 0.75rem 0 1rem; color: rgba(255,255,255,0.6); }
.footer__links { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.footer__links a {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
}
.footer__links a:hover { border-color: var(--amber); color: var(--white); }
.footer h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.875rem;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer ul a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer__demo { color: rgba(255,255,255,0.55); font-size: 0.8125rem; }

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(42,33,24,0.1);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
}
.mobile-bar a:first-child { background: var(--wood); color: var(--white); }
.mobile-bar a:last-child { background: var(--amber); color: var(--wood); }
body.has-mobile-bar { padding-bottom: 52px; }
@media (min-width: 960px) {
  .mobile-bar { display: none; }
  body.has-mobile-bar { padding-bottom: 0; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, a.tile:hover, .project-card:hover { transform: none; }
  .tile--photo img, .gallery-item img { transition: none; }
}
