:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-elev: #1a1a1a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --ink: #f5f3ee;
  --ink-soft: rgba(245, 243, 238, 0.72);
  --ink-muted: rgba(245, 243, 238, 0.5);
  --accent: #ff2d96;
  --accent-deep: #a80f5c;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --display: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --container: 1400px;
  --pad-x: 2rem;
}

@media (min-width: 768px) {
  :root { --pad-x: 2.5rem; }
}
@media (min-width: 1280px) {
  :root { --pad-x: 4rem; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0;
}
h1 em, h2 em, h3 em { font-style: normal; font-weight: 600; color: var(--accent); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.lede {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 1.5rem 0 0;
  line-height: 1.6;
}

/* -------- Header -------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  pointer-events: none;
  transition:
    background-color 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header > * { pointer-events: auto; }

.site-header.is-scrolled {
  background: #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #0a0a0a;
}
.site-header.is-scrolled .primary-nav a {
  color: #0a0a0a;
}
.site-header.is-scrolled .pill {
  background: transparent;
  color: #0a0a0a;
  border-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.55rem 1rem;
  font-size: 0.825rem;
}
.site-header.is-scrolled .pill:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.site-header.is-scrolled .menu-toggle {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.is-scrolled .menu-toggle span { background: #0a0a0a; }

.wordmark {
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 0;
}
.wordmark img {
  display: block;
  width: clamp(110px, 22vw, 320px);
  height: auto;
  transition:
    width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .wordmark img { width: clamp(180px, 22vw, 320px); }
}
.wordmark-dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}
.site-header.is-scrolled .wordmark img {
  width: clamp(95px, 8.5vw, 125px);
}
.site-header.is-scrolled .wordmark-light { opacity: 0; }
.site-header.is-scrolled .wordmark-dark { opacity: 1; }

.primary-nav {
  display: none;
  gap: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.primary-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
}
.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 18px; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after { transform: scaleX(1); }
.nav-dropdown__chev {
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown__chev,
.nav-dropdown.is-open .nav-dropdown__chev { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  display: grid;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.3s;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav-dropdown__menu a {
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--ink);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: -0.005em;
}
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover {
  background: rgba(255, 45, 150, 0.12);
  color: var(--accent);
}

/* Scrolled-state dropdown adjustments */
.site-header.is-scrolled .nav-dropdown__trigger { color: #0a0a0a; }
.site-header.is-scrolled .nav-dropdown__menu {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.is-scrolled .nav-dropdown__menu a { color: #0a0a0a; }
.site-header.is-scrolled .nav-dropdown__menu a:hover {
  background: rgba(255, 45, 150, 0.08);
  color: var(--accent);
}

@media (min-width: 1024px) {
  .primary-nav { display: flex; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 540px) {
  .header-actions .pill { display: none; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition:
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pill .arrow { display: inline-flex; }

.pill-light { color: var(--ink); }
.pill-large { padding: 1rem 1.75rem; font-size: 0.95rem; }

.pill-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pill-accent:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle span:nth-child(2) { width: 100%; }

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

.menu-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.4s;
}
.mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}
.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }

.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(82vw, 380px);
  background: #0a0a0a;
  border-left: 1px solid var(--line);
  padding: 6rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mobile-drawer__close:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.mobile-drawer__panel > a {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  padding: 0.75rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-drawer__panel > a:hover { color: var(--accent); padding-left: 4px; }

.mobile-drawer__sub {
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem 0 1rem 0.75rem;
  border-left: 1px solid var(--line);
  margin-left: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}
.mobile-drawer__sub a {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  border: 0;
  display: block;
  transition: color 0.2s ease;
}
.mobile-drawer__sub a:hover { color: var(--accent); }

.mobile-drawer__cta {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem !important;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  border: 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-family: var(--sans) !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  letter-spacing: 0 !important;
  align-self: flex-start;
  transition: background 0.2s ease !important;
}
.mobile-drawer__cta:hover { background: var(--accent-deep) !important; padding-left: 1.5rem !important; }

body.no-scroll { overflow: hidden; }

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0) 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0) 25%, rgba(10, 10, 10, 0) 60%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  margin-left: auto;
  text-align: left;
}
.hero-text h1 {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-text p {
  font-family: var(--sans);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 32rem;
  margin: 0 0 2rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .hero { align-items: flex-end; }
  .hero-text { max-width: 100%; margin-left: 0; }
}

/* -------- Statement -------- */
.statement {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.statement__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.statement h2 {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  line-height: 1.15;
  max-width: 28ch;
  letter-spacing: -0.015em;
}

/* -------- Services -------- */
.services {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.services__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section-head { margin-bottom: 4rem; }
.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-head--split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 2.5rem 2rem 2.5rem 0;
  transition: background 0.3s ease;
  position: relative;
  padding-left: 2rem;
}
.service-card:hover { background: var(--bg-soft); }

.service-num {
  display: block;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}
.service-card h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  max-width: 32ch;
}

/* -------- Work -------- */
.work {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  background: var(--bg-soft);
}
.work__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
  }
  .gallery__item--feature { grid-column: 1 / span 2; grid-row: 1 / span 2; }
  .gallery__item--side    { grid-column: 3 / span 2; grid-row: span 1; }
  .gallery__item--panorama{ grid-column: 1 / span 4; grid-row: span 1; }
}
@media (min-width: 1100px) {
  .gallery { grid-auto-rows: 260px; }
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0) 100%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item figcaption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.25rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

/* -------- About -------- */
.about {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about__inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}
.about-copy h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 18ch;
}
.about-copy p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 1rem;
  max-width: 48ch;
  line-height: 1.65;
}
.about-points {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1rem;
}
.about-points li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.about-points li span {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  min-width: 28px;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

/* -------- Area -------- */
.area {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  background: var(--bg-soft);
}
.area__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.area h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 16ch;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.area-list li {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.area-note {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* -------- FAQ -------- */
.faq {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.faq__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  font-family: var(--display);
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.25s ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }

.faq-item p {
  margin: 0;
  padding: 0 0 1.75rem;
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  animation: faq-fade 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- Contact -------- */
.contact {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
}
.contact-copy h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.contact-copy p {
  color: var(--ink-soft);
  margin: 0 0 2.5rem;
  max-width: 38ch;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.contact-details li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  align-items: center;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (min-width: 600px) {
  .contact-details li {
    grid-template-columns: 140px 1fr;
    gap: 1rem;
  }
}
.contact-details a, .contact-details span { min-width: 0; overflow-wrap: anywhere; }
.contact-details li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-details a:hover { color: var(--accent); }

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.25rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.contact-form label {
  display: grid;
  gap: 0.5rem;
}
.contact-form label span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 0.625rem 0;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form select { color: var(--ink); }
.contact-form select option { background: var(--bg-soft); color: var(--ink); }
.contact-form button { margin-top: 0.5rem; justify-self: start; }
.form-success {
  margin: 0;
  padding: 0.875rem 1rem;
  background: rgba(255, 45, 150, 0.1);
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.9rem;
}

/* -------- Footer -------- */
.site-footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: 1.2fr 2fr; gap: 4rem; }
}
.footer-brand p {
  color: var(--ink-soft);
  max-width: 32ch;
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
}
.wordmark--footer { display: block; }
.wordmark--footer img {
  width: clamp(220px, 28vw, 360px);
  height: auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}
.footer-cols h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-cols a:hover { color: var(--accent); }

.site-footer__base {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.site-footer__base a { color: var(--ink-soft); }
.site-footer__base a:hover { color: var(--accent); }
