*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: #0b0b0b;
  --bg-2: #141414;
  --ink: #f4f1ea;
  --muted: #8a857a;
  --line: #2a2724;
  --gold: #e9b75c;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --max: 1320px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; letter-spacing: -0.012em; margin: 0; }
h1 { font-size: clamp(2.6rem, 6.8vw, 5.8rem); line-height: 1.02; }
h2 { font-size: clamp(2.0rem, 4.4vw, 3.4rem); line-height: 1.08; }
h3 { font-size: 1.4rem; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 36px; }

.announce-strip {
  background: linear-gradient(90deg, rgba(233,183,92,0.18), rgba(233,183,92,0.08));
  border-bottom: 1px solid rgba(233,183,92,0.3);
  color: var(--ink);
  font-size: 0.86rem;
  padding: 10px 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  text-align: center;
}
.announce-strip .pulse-dot {
  flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}
.announce-strip strong { color: var(--gold); font-weight: 600; }
.announce-strip a.announce-cta {
  background: var(--gold); color: var(--bg);
  padding: 5px 14px; border-radius: 999px;
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s;
}
.announce-strip a.announce-cta:hover { background: #f3c97c; transform: translateY(-1px); }

nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 11, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
nav.scrolled { border-bottom-color: var(--line); background: rgba(11, 11, 11, 0.9); }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 36px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { width: 38px; height: 38px; object-fit: contain; }
.logo-text { font-family: 'Fraunces', serif; font-size: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.logo-text span { color: var(--gold); font-style: italic; text-transform: none; font-size: 0.95rem; letter-spacing: 0; margin-left: 4px; }
.nav-links { display: flex; gap: 32px; font-size: 0.88rem; }
.nav-links a { padding: 4px 0; color: var(--ink); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.menu-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.6rem; cursor: pointer; }

.hero { padding: 70px 0 70px; position: relative; }
.hero-head { max-width: 950px; }
.hero-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 18px; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.hero-lede { margin-top: 28px; font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink); max-width: 60ch; line-height: 1.45; }
.hero-meta-line { margin-top: 18px; font-size: 1rem; color: var(--muted); }
.hero-meta-line strong { color: var(--ink); font-weight: 500; }
.hero-price { margin-top: 14px; font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--gold); }
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: #f3c97c; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); color: #fff; }
.btn .icon { width: 18px; height: 18px; }

.hero-image-wrap { margin-top: 60px; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; position: relative; }
.hero-image-wrap img, .hero-image-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(11,11,11,0.4)); pointer-events: none; }

section { padding: 110px 0; border-top: 1px solid var(--line); }
.section-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 18px; }
.section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 56px; align-items: end; }
.section-head p { color: var(--muted); max-width: 56ch; font-size: 1.05rem; }

.cover-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cover-card {
  display: block;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 32px 28px;
  color: var(--ink);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.cover-card:hover { border-color: var(--gold); transform: translateY(-3px); background: linear-gradient(180deg, rgba(233,183,92,0.04), transparent); }
.cover-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cover-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; margin-bottom: 16px; }
.cover-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gold); letter-spacing: 0.04em; transition: gap 0.25s; }
.cover-card:hover .cover-card-link { gap: 10px; }

.intro-pricing { font-size: 0.85rem; color: var(--gold); margin-top: 14px; font-style: italic; letter-spacing: 0.02em; }

.promo-feature {
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(233,183,92,0.08), rgba(233,183,92,0.02) 60%, transparent);
  margin-bottom: 44px;
  box-shadow: 0 0 60px rgba(233,183,92,0.18);
  overflow: hidden;
  position: relative;
}
.promo-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; }
.promo-content { padding: 44px 48px; }
.promo-visual { position: relative; min-height: 100%; background: var(--bg-2); overflow: hidden; }
.promo-visual .carousel-clip {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0;
  animation: carousel-fade 24s infinite;
}
.promo-visual .carousel-clip:nth-of-type(1) { animation-delay: 0s; }
.promo-visual .carousel-clip:nth-of-type(2) { animation-delay: 12s; }
@keyframes carousel-fade {
  0%, 3% { opacity: 0; }
  7%, 47% { opacity: 1; }
  51%, 97% { opacity: 0; }
  100% { opacity: 0; }
}
.promo-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(11,11,11,0.4)); pointer-events: none; z-index: 2; }
.promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--bg);
  padding: 7px 14px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.promo-badge .pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bg); animation: pulse 1.8s infinite; }
.promo-eyebrow { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 10px; }
.promo-title { font-size: clamp(1.9rem, 3vw, 2.7rem); margin-bottom: 18px; line-height: 1.1; }
.promo-price { font-family: 'Fraunces', serif; font-size: 3.2rem; line-height: 1; color: var(--gold); font-weight: 400; margin-bottom: 8px; }
.promo-price-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.promo-desc { color: var(--ink); margin-bottom: 24px; max-width: 52ch; font-size: 1rem; }
.promo-includes { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.promo-includes li { font-size: 0.92rem; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.promo-includes li::before { content: "✓"; color: var(--gold); flex: 0 0 auto; font-weight: 600; }
.promo-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--bg);
  padding: 16px 32px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 0 0 rgba(233,183,92,0.4);
}
.promo-cta:hover { background: #f3c97c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,183,92,0.3); }
.promo-fineprint { display: block; margin-top: 18px; font-size: 0.8rem; color: var(--muted); font-style: italic; }

.bigger-panel {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 40px;
  display: flex; gap: 32px; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  background: var(--bg-2);
}
.bigger-content h3 { font-size: 1.5rem; margin-bottom: 6px; }
.bigger-content p { color: var(--muted); max-width: 60ch; margin: 0; font-size: 0.98rem; }
.bigger-panel .btn { white-space: nowrap; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  border: 1px solid var(--line); border-radius: 6px;
  padding: 34px 28px;
  background: var(--bg-2);
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-card.featured { background: linear-gradient(180deg, rgba(233,183,92,0.06), transparent); border-color: var(--gold); }
.service-card.featured .badge { display: inline-block; }
.badge {
  display: none; background: var(--gold); color: var(--bg);
  padding: 5px 12px; border-radius: 999px;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
  width: fit-content; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.price { font-family: 'Fraunces', serif; font-size: 2.2rem; line-height: 1; margin: 18px 0 8px; color: var(--gold); }
.price-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.service-card p.body { color: var(--muted); font-size: 0.92rem; margin-bottom: 28px; flex: 1; line-height: 1.55; }

.filter-row { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
  padding: 9px 20px; border-radius: 999px;
  font-family: inherit; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; background: var(--bg-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); color: var(--ink); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .caption { opacity: 1; }
.caption .tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); }
.caption h4 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin-top: 4px; font-weight: 400; }
.gallery-item.span-8 { grid-column: span 8; aspect-ratio: 16/10; }
.gallery-item.span-4 { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-item.span-12 { grid-column: span 12; aspect-ratio: 21/9; }
.gallery-item.span-6 { grid-column: span 6; aspect-ratio: 4/3; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 60px; max-width: 980px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-tick {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(233,183,92,0.1); border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; line-height: 1;
}
.why-item div { font-size: 1.02rem; color: var(--ink); }

.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about-text p.lede { color: var(--ink); font-size: 1.4rem; font-family: 'Fraunces', serif; line-height: 1.4; margin-bottom: 24px; font-weight: 300; }
.about-text p.lede em { color: var(--gold); font-style: italic; }
.about-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.stat-num { font-family: 'Fraunces', serif; font-size: 2.4rem; line-height: 1; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 8px; }
.building-note { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-top: 18px; max-width: 50ch; }
.about-image { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--ink);
  font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 400;
  text-align: left; padding: 24px 0;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus { flex: 0 0 auto; width: 24px; height: 24px; position: relative; transition: transform 0.3s; color: var(--gold); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; top: 50%; left: 50%; background: currentColor; transform: translate(-50%, -50%); }
.faq-q .plus::before { width: 14px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 24px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h2 { margin-bottom: 22px; }
.contact-info p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 42ch; }
.contact-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; max-width: 340px; }
.contact-buttons .btn { justify-content: center; }
.btn-instagram { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-instagram:hover { border-color: var(--gold); color: var(--gold); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 16px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.contact-list li span:first-child { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.contact-list li span:last-child { font-family: 'Fraunces', serif; font-size: 1.02rem; text-align: right; }

form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.field input, .field textarea, .field select {
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 10px 0; font-family: inherit; font-size: 1rem;
  color: var(--ink); outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  justify-self: start;
  background: var(--gold); color: var(--bg);
  border: none; padding: 16px 36px; border-radius: 999px;
  font-family: inherit; font-size: 0.95rem; font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 8px;
}
.submit-btn:hover { background: #f3c97c; transform: translateY(-2px); }
.form-success {
  display: none; padding: 16px 20px;
  background: rgba(233,183,92,0.08); border: 1px solid var(--gold); color: var(--gold);
  border-radius: 4px; font-size: 0.95rem;
}
.form-success.show { display: block; }

.float-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s, background 0.25s;
}
.float-wa:hover { transform: scale(1.06); background: var(--whatsapp-hover); color: #fff; }
.float-wa svg { width: 28px; height: 28px; }

footer { padding: 50px 0 40px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-inner p { font-size: 0.85rem; color: var(--muted); }
.socials { display: flex; gap: 28px; font-size: 0.85rem; flex-wrap: wrap; }
.socials a:hover { color: var(--gold); }

/* SUB-PAGE SPECIFICS */
.subpage-hero { padding: 70px 0 50px; }
.subpage-hero .crumb { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 14px; }
.subpage-hero .crumb a { color: var(--muted); }
.subpage-hero .crumb a:hover { color: var(--gold); }
.subpage-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 16px; }
.subpage-hero .lede { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }
.subpage-cta { padding: 80px 0; border-top: 1px solid var(--line); }
.subpage-cta-inner { text-align: center; }
.subpage-cta h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.subpage-cta p { color: var(--muted); margin-bottom: 26px; }
.subpage-cta .btn { display: inline-flex; }

@media (max-width: 1024px) {
  .cover-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-visual { aspect-ratio: 16/10; min-height: auto; order: -1; }
  .promo-content { padding: 36px 32px; }
  .promo-includes { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 24px 36px; background: var(--bg); border-bottom: 1px solid var(--line); }
  .hero { padding: 50px 0 50px; }
  .about-grid, .contact-grid, .section-head { grid-template-columns: 1fr; gap: 36px; }
  .hero-image-wrap { margin-top: 36px; }
  .cover-grid, .services-grid, .why-grid { grid-template-columns: 1fr; }
  .gallery-item.span-8, .gallery-item.span-4, .gallery-item.span-6 { grid-column: span 12; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; }
  .float-wa { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .float-wa svg { width: 26px; height: 26px; }
  .promo-content { padding: 28px 22px; }
  .promo-price { font-size: 2.6rem; }
  .promo-cta { width: 100%; justify-content: center; }
  .bigger-panel { padding: 24px 24px; flex-direction: column; align-items: flex-start; }
  .bigger-panel .btn { width: 100%; justify-content: center; }
  .announce-strip { font-size: 0.8rem; padding: 9px 18px; gap: 12px; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================
   v9 ADDITIONS — landing pages, iMessage form,
   working-with strip, trust signals
   ============================================ */

/* WORKING WITH STRIP (real social proof — not fake quotes) */
.working-with {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.working-with .container {
  display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center;
}
.working-with .label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold);
}
.working-with .names {
  display: flex; gap: 36px 56px; flex-wrap: wrap; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--ink);
}
.working-with .names span { opacity: 0.85; }
.working-with .names span:hover { opacity: 1; color: var(--gold); }

/* IMESSAGE-STYLE CONTACT FORM */
.imsg-form { display: flex; flex-direction: column; gap: 16px; }
.imsg-bubble {
  background: #f4f1ea;
  color: #0b0b0b;
  padding: 12px 20px;
  border-radius: 22px 22px 22px 6px;
  font-size: 0.96rem;
  font-family: 'Inter', sans-serif;
  align-self: flex-start;
  max-width: 80%;
  line-height: 1.4;
  animation: imsg-pop 0.5s ease-out;
}
.imsg-input-wrap {
  align-self: flex-end;
  width: 92%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.imsg-input, .imsg-textarea, .imsg-select {
  background: #ebe7dd;
  color: #0b0b0b;
  border: 2px solid transparent;
  border-radius: 22px 22px 6px 22px;
  padding: 13px 22px;
  font-size: 0.98rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  outline: none;
  transition: border-color 0.25s, background 0.2s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.imsg-input::placeholder, .imsg-textarea::placeholder { color: #6b6b6b; }
.imsg-input:focus, .imsg-textarea:focus, .imsg-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(233,183,92,0.18);
  background: #f4f1ea;
}
.imsg-textarea { resize: vertical; min-height: 96px; border-radius: 22px 22px 6px 22px; }
.imsg-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b0b0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 22px center;
  padding-right: 50px;
}
.imsg-submit {
  align-self: flex-end;
  background: var(--gold); color: var(--bg);
  padding: 15px 34px; border-radius: 999px;
  border: none; font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.imsg-submit:hover { background: #f3c97c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,183,92,0.3); }
@keyframes imsg-pop {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* LANDING PAGE STRUCTURE */
.lp-hero { padding: 80px 0 60px; border-bottom: 1px solid var(--line); }
.lp-crumb { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 18px; }
.lp-crumb a { color: var(--muted); }
.lp-crumb a:hover { color: var(--gold); }
.lp-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.05; margin-bottom: 22px; max-width: 22ch; }
.lp-hero h1 em { color: var(--gold); font-style: italic; font-weight: 300; }
.lp-hero .lede { font-size: clamp(1.1rem, 1.4vw, 1.25rem); color: var(--ink); max-width: 62ch; line-height: 1.55; margin-bottom: 28px; }
.lp-hero-meta { font-size: 0.92rem; color: var(--muted); margin-bottom: 34px; max-width: 60ch; }
.lp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.lp-section { padding: 80px 0; border-top: 1px solid var(--line); }
.lp-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 22px; }
.lp-section p { color: var(--ink); font-size: 1.02rem; line-height: 1.65; margin-bottom: 18px; max-width: 70ch; }
.lp-section .muted { color: var(--muted); }
.lp-section ul { color: var(--ink); padding-left: 22px; line-height: 1.7; max-width: 60ch; }
.lp-section ul li { margin-bottom: 6px; }
.lp-section .grid-2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.lp-section .grid-2 img { border-radius: 4px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.lp-locations { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 22px; }
.lp-locations span { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: 12px 18px; font-size: 0.92rem; color: var(--ink); }

.lp-cta-final { padding: 80px 0 100px; border-top: 1px solid var(--line); text-align: center; }
.lp-cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.lp-cta-final p { color: var(--muted); max-width: 50ch; margin: 0 auto 28px; }

.related-pages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.related-pages a {
  display: flex; flex-direction: column;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 22px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.related-pages a:hover { border-color: var(--gold); transform: translateY(-2px); }
.related-pages a span.tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 6px; }
.related-pages a span.title { color: var(--ink); font-family: 'Fraunces', serif; font-size: 1.15rem; }

@media (max-width: 800px) {
  .lp-section .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .related-pages { grid-template-columns: 1fr; }
  .working-with .names { gap: 18px 28px; }
}
