/* ===== Jordi Rendell — beige, grey & nude theme ===== */

:root {
  --ink-900: #4a4038;
  --taupe-900: #6f5f4e;
  --taupe-700: #96805f;
  --taupe-500: #c9a988;
  --taupe-300: #e3d2bd;
  --cream-100: #f3ede2;
  --white: #fffdf9;
  --ink: #4a4038;
  --muted: #8a8073;
  --border: #e6dccb;
  --success: #6f8c5f;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(111, 95, 78, 0.1);
  --shadow-lg: 0 16px 40px rgba(111, 95, 78, 0.16);
  --max-width: 1120px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--taupe-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0 0 12px;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--muted); }

.section {
  padding: 72px 0;
}

.section-tight { padding: 48px 0; }
.section-alt { background: var(--cream-100); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-700);
  background: var(--cream-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Profile intro (name, photo, socials) */
.profile-intro {
  margin-bottom: 20px;
}
.profile-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  background: linear-gradient(160deg, var(--taupe-300), var(--taupe-700));
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-photo-initials {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.9);
}
.profile-greeting {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2px;
}
.profile-name {
  font-family: 'Pinyon Script', cursive;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--taupe-700);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-700);
  font-size: 1.15rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social-icon svg {
  width: 20px;
  height: 20px;
}
.social-icon:hover {
  background: var(--taupe-700);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.lede {
  font-size: 1.15rem;
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--taupe-700);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(111, 95, 78, 0.28);
}
.btn-primary:hover {
  background: var(--taupe-900);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink-900);
}
.btn-ghost:hover {
  border-color: var(--taupe-500);
  background: var(--cream-100);
}
.btn-block { width: 100%; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--taupe-500), var(--taupe-900));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
}
.brand-logo {
  height: 68px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 74px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 32px;
}
.nav-links a {
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  text-decoration: none;
  border-bottom-color: var(--taupe-500);
}
.nav-links a.active {
  color: var(--taupe-700);
  border-bottom-color: var(--taupe-700);
}
.nav-mobile-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    gap: 14px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta .btn-primary.header-only { display: none; }
  .nav-links a.nav-mobile-cta {
    display: inline-flex;
    margin-top: 6px;
    padding: 13px 26px;
    border-bottom: none;
    color: white;
  }
  .nav-links a.nav-mobile-cta:hover {
    border-bottom: none;
    text-decoration: none;
  }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--white) 100%);
  padding: 88px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-visual-arch {
  display: flex;
  justify-content: center;
}
.photo-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-right: 30px;
}
.photo-stack-main {
  width: 78%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--taupe-300), var(--taupe-900));
}
.photo-stack-secondary {
  position: absolute;
  width: 46%;
  aspect-ratio: 4 / 5;
  bottom: 0;
  right: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  background: linear-gradient(160deg, var(--taupe-500), var(--ink-900));
  transform: rotate(3deg);
}
.photo-stack-main img,
.photo-stack-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-stack-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pinyon Script', cursive;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.85);
}
.arch-photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--taupe-300), var(--taupe-900));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.arch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 38%;
}
.arch-photo-initials {
  font-family: 'Pinyon Script', cursive;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.9);
}
.reel-card {
  aspect-ratio: 9 / 19.5;
  border-radius: 48px;
  background: linear-gradient(125deg, #6a6b6f 0%, #2c2d30 18%, #0a0a0b 45%, #2c2d30 78%, #6a6b6f 100%);
  box-shadow:
    0 30px 55px -14px rgba(20, 15, 10, 0.45),
    0 10px 22px -10px rgba(20, 15, 10, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.reel-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 38px 65px -14px rgba(20, 15, 10, 0.5),
    0 14px 26px -10px rgba(20, 15, 10, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.reel-card:nth-child(2) { margin-top: 30px; }
.reel-card .phone-screen {
  background:
    linear-gradient(to top, rgba(10, 8, 6, 0.6), rgba(10, 8, 6, 0) 45%),
    linear-gradient(160deg, var(--taupe-500), var(--taupe-900));
}
.reel-card:nth-child(2) .phone-screen {
  background:
    linear-gradient(to top, rgba(10, 8, 6, 0.6), rgba(10, 8, 6, 0) 45%),
    linear-gradient(160deg, var(--taupe-300), var(--taupe-700));
}
.play-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  z-index: 3;
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--taupe-700);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-100);
  color: var(--taupe-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
.portfolio-item {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--taupe-300), var(--taupe-900));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px;
}
.portfolio-item:nth-child(2n) { background: linear-gradient(160deg, var(--taupe-500), var(--ink-900)); }
.portfolio-item:nth-child(3n) { background: linear-gradient(160deg, var(--taupe-700), var(--taupe-300)); }

/* Video banner: bubbles row + video row */
.video-bubbles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 40px;
}
.video-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.video-bubble:hover {
  text-decoration: none;
}
.video-bubble:hover .bubble-inner {
  transform: scale(1.06);
}
.bubble-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--taupe-500), var(--taupe-900));
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease;
}
.bubble-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.video-bubble:nth-child(2n) .bubble-inner { background: linear-gradient(160deg, var(--taupe-300), var(--taupe-700)); }
.video-bubble:nth-child(3n) .bubble-inner { background: linear-gradient(160deg, var(--taupe-700), var(--ink-900)); }
.bubble-play {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.bubble-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-900);
}

.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .video-row { grid-template-columns: repeat(2, 1fr); }
}
.video-card {
  aspect-ratio: 9 / 19.5;
  border-radius: 48px;
  background: linear-gradient(125deg, #6a6b6f 0%, #2c2d30 18%, #0a0a0b 45%, #2c2d30 78%, #6a6b6f 100%);
  box-shadow:
    0 30px 55px -14px rgba(20, 15, 10, 0.45),
    0 10px 22px -10px rgba(20, 15, 10, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.video-card:hover {
  text-decoration: none;
  transform: translateY(-6px);
  box-shadow:
    0 38px 65px -14px rgba(20, 15, 10, 0.5),
    0 14px 26px -10px rgba(20, 15, 10, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.phone-btn {
  position: absolute;
  width: 3px;
  background: #161618;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.2);
}
.phone-btn-mute { left: -3px; top: 13%; height: 3.5%; border-radius: 2px 0 0 2px; }
.phone-btn-vol-up { left: -3px; top: 20%; height: 6.5%; border-radius: 2px 0 0 2px; }
.phone-btn-vol-down { left: -3px; top: 29%; height: 6.5%; border-radius: 2px 0 0 2px; }
.phone-btn-power { right: -3px; top: 19%; height: 9%; border-radius: 0 2px 2px 0; }

.phone-screen {
  flex: 1;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px 14px 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(to top, rgba(10, 8, 6, 0.6), rgba(10, 8, 6, 0) 45%),
    linear-gradient(160deg, var(--taupe-300), var(--taupe-900));
  background-size: cover;
  background-position: center;
}
.video-card:nth-child(2n) .phone-screen {
  background:
    linear-gradient(to top, rgba(10, 8, 6, 0.6), rgba(10, 8, 6, 0) 45%),
    linear-gradient(160deg, var(--taupe-500), var(--ink-900));
}
.video-card:nth-child(3n) .phone-screen {
  background:
    linear-gradient(to top, rgba(10, 8, 6, 0.6), rgba(10, 8, 6, 0) 45%),
    linear-gradient(160deg, var(--taupe-700), var(--taupe-300));
}
.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 22%, transparent 42%);
  pointer-events: none;
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3f6478, #05080a 70%);
  display: block;
}
.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 4px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 3px;
  z-index: 3;
}
.video-controls {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.video-btn:hover {
  background: rgba(255, 255, 255, 0.45);
}
.video-volume {
  width: 72px;
  accent-color: white;
  cursor: pointer;
  outline: none;
}
.video-volume:focus,
.video-volume:focus-visible {
  outline: none;
}
.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-label {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

/* Brand badges ("worked with") */
.brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.brand-badge {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--cream-100);
  border: 1px solid var(--border);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.band {
  background: var(--ink-900);
  color: white;
}
.band h2, .band h3 { color: white; }
.band p { color: #d8cbba; }

.cta-band {
  background: linear-gradient(135deg, var(--taupe-900), var(--taupe-500));
  border-radius: 24px;
  padding: 56px;
  color: white;
  text-align: center;
}
.cta-band h2 { color: white; }
.cta-band p { color: #f3e8da; }

/* Pricing */
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--taupe-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.featured-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--taupe-700);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink-900);
  margin: 8px 0 4px;
}
.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  flex-grow: 1;
}
.plan-features li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: 0.94rem;
}
.plan-features li:last-child { border-bottom: none; }
.check {
  color: var(--success);
  font-weight: 800;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.addon-row:last-child { border-bottom: none; }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .chev {
  transition: transform 0.2s ease;
  color: var(--taupe-500);
  flex-shrink: 0;
}
.faq-item.open .faq-question .chev { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  padding-top: 4px;
  padding-bottom: 18px;
}
.faq-answer p { margin: 0; color: var(--muted); }

/* About page */
.timeline {
  border-left: 2px solid var(--border);
  padding-left: 24px;
  margin-left: 6px;
}
.timeline-item { margin-bottom: 28px; position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--taupe-500);
  border: 3px solid var(--cream-100);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-900);
}
input, textarea, select {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--taupe-500);
  box-shadow: 0 0 0 3px var(--cream-100);
}
textarea { resize: vertical; min-height: 120px; }
.field-error {
  color: #a6432f;
  font-size: 0.82rem;
  min-height: 1.1em;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-status.success {
  display: block;
  background: #eef2ea;
  color: var(--success);
  border: 1px solid #cfdcc5;
}
.form-status.error {
  display: block;
  background: #fbeae6;
  color: #a6432f;
  border: 1px solid #f0cabf;
}
.note-box {
  background: var(--cream-100);
  border: 1px solid var(--taupe-300);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--taupe-900);
  margin-top: 16px;
}

/* Footer */
.site-footer {
  background: var(--ink-900);
  color: #d8cbba;
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.footer-grid a {
  color: #d8cbba;
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-grid a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #b3a58f;
}
.footer-brand-mark {
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

/* Page header (non-home pages) */
.page-header {
  background: var(--cream-100);
  padding: 64px 0 48px;
  text-align: center;
}
.page-header p { max-width: 560px; margin: 0 auto; }
