/* ================================================================
   BANO STUDIOS — CONTACT (D03) PAGE STYLES
   ================================================================ */

/* ----------------------------------------------------------------
   SHARED FORM CONTROLS (D03)
   ---------------------------------------------------------------- */
.d03-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.d03-field-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--d03-ink);
}
.d03-input {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px;
  color: var(--d03-ink); background: var(--d03-paper);
  border: 2px solid var(--d03-ink); padding: 14px 16px;
  outline: none; border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color 0.15s ease; width: 100%; box-sizing: border-box;
}
.d03-input:focus { border-color: var(--d03-red); }
.d03-input:disabled { opacity: 0.55; background: var(--d03-paper2); cursor: not-allowed; }
.d03-input.error { border-color: var(--d03-red); }
.d03-textarea { resize: vertical; min-height: 120px; line-height: 1.6; font-family: 'Space Grotesk', sans-serif; }
.d03-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230a0a0a' stroke-width='2' fill='none' stroke-linecap='square'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 44px; cursor: pointer;
}
.d03-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .d03-field-row { grid-template-columns: 1fr; } }

/* Flash */
.d03-flash {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; background: var(--d03-paper);
  border: 2px solid var(--d03-ink); border-left-width: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  line-height: 1.55; letter-spacing: 0.04em;
}
.d03-flash.success { border-left-color: var(--d03-red); }
.d03-flash.error   { color: var(--d03-red); border-color: var(--d03-red); background: #fff5f5; border-left-color: var(--d03-red); }
.d03-flash.info    { border-left-color: var(--d03-ink); background: var(--d03-paper2); }
.d03-flash .glyph  { font-size: 18px; line-height: 1; color: var(--d03-red); }

/* ----------------------------------------------------------------
   STATS STRIP
   ---------------------------------------------------------------- */
.d03-stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--d03-ink);
  border-bottom: 2px solid var(--d03-ink);
  background: var(--d03-ink); color: var(--d03-paper);
}
.d03-stats-strip > div {
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid #ffffff22;
}
.d03-stats-strip > div:last-child { border-right: none; }
.d03-stats-strip .n {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.9;
  font-size: clamp(48px, 7vw, 112px);
}
.d03-stats-strip .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; margin-top: 14px; opacity: 0.75;
}
@media (max-width: 900px) {
  .d03-stats-strip { grid-template-columns: 1fr 1fr; }
  .d03-stats-strip > div { border-right: none; border-bottom: 1px solid #ffffff22; }
  .d03-stats-strip > div:nth-child(odd) { border-right: 1px solid #ffffff22; }
}
@media (max-width: 600px) {
  .d03-stats-strip { grid-template-columns: 1fr 1fr; }
  .d03-stats-strip > div, .d03-stats-strip > div:nth-child(odd) { padding: 24px 18px; }
  .d03-stats-strip > div:nth-child(2n) { border-right: none; }
  .d03-stats-strip > div:nth-child(2n-1) { border-right: 1px solid #ffffff22; }
  .d03-stats-strip .n { font-size: clamp(32px, 8vw, 56px); }
  .d03-stats-strip .l { font-size: 10px; margin-top: 8px; }
}

/* ----------------------------------------------------------------
   HERO SPLIT
   ---------------------------------------------------------------- */
.c-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  border-bottom: 2px solid var(--d03-ink);
}
.c-hero > .left {
  padding: clamp(40px, 6vw, 96px) clamp(20px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px; min-height: 560px;
}
.c-hero > .right {
  border-left: 2px solid var(--d03-ink);
  background: var(--d03-ink); color: var(--d03-paper);
  padding: clamp(32px, 5vw, 72px);
  display: flex; flex-direction: column; gap: 28px;
  min-height: 560px;
}
.c-hero h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  letter-spacing: -0.05em; line-height: 0.88;
  font-size: clamp(56px, 11vw, 168px); margin: 0;
}
.c-hero-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.12em; gap: 12px;
}
.c-hero-blurb {
  font-size: 13px; line-height: 1.75; margin: 0;
  max-width: 560px; letter-spacing: 0.05em;
}
.c-hero-chip {
  border-color: var(--d03-paper); color: var(--d03-paper);
  margin-bottom: 16px; align-self: flex-start;
}
.c-hero-list {
  list-style: none; padding: 0; margin: 0;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.04em; line-height: 1.9;
}
.c-hero-list li {
  padding: 18px 0; border-bottom: 1px solid #ffffff22;
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
}
.c-hero-list li:last-child { border-bottom: none; }
.c-list-label {
  opacity: 0.55; font-size: 10px; letter-spacing: 0.15em; margin-bottom: 4px;
}
.c-list-value {
  color: var(--d03-paper);
  font-family: 'Space Grotesk', sans-serif; font-size: 20px;
  font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none;
}
.c-list-value:hover { color: var(--d03-red); }
.c-list-meta {
  opacity: 0.55; font-size: 10px; letter-spacing: 0.15em;
}

@media (max-width: 900px) {
  .c-hero { grid-template-columns: 1fr; }
  .c-hero > .left, .c-hero > .right { min-height: auto; }
  .c-hero > .right { border-left: none; border-top: 2px solid var(--d03-ink); }
}

/* ----------------------------------------------------------------
   FORM SPLIT (1.2fr / 1fr)
   ---------------------------------------------------------------- */
.c-form-wrap {
  display: grid; grid-template-columns: 1.2fr 1fr;
  border-bottom: 2px solid var(--d03-ink);
}
.c-form-wrap > .form {
  padding: clamp(32px, 5vw, 72px) clamp(20px, 5vw, 56px);
  border-right: 2px solid var(--d03-ink);
}
.c-form-wrap > .side {
  padding: clamp(32px, 5vw, 72px) clamp(20px, 5vw, 56px);
  background: var(--d03-paper2);
}
.c-form-wrap > .form .d03-chip { margin-bottom: 18px; }
.c-form-wrap > .side .d03-chip { margin-bottom: 18px; }
.c-form-title {
  margin: 0 0 32px;
  font-size: clamp(40px, 4.5vw, 72px);
  letter-spacing: -0.04em; line-height: 0.9;
}
.c-submit {
  width: 100%; margin-top: 8px;
  border: 2px solid var(--d03-ink);
  padding: 18px 24px; font-size: 12px;
}

/* Side stack */
.c-side-title {
  margin: 0 0 28px;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: -0.03em; line-height: 1.0;
}
.c-side-stack {
  display: flex; flex-direction: column;
  border: 2px solid var(--d03-ink);
}
.c-side-stack > .d03-btn {
  border: none; border-bottom: 2px solid var(--d03-ink);
  padding: 16px 22px; justify-content: space-between;
}
.c-side-stack > .d03-btn:last-child { border-bottom: none; }
.c-hours { margin-top: 40px; }
.c-hours-eyebrow {
  font-size: 11px; letter-spacing: 0.15em; opacity: 0.6; margin-bottom: 12px;
}
.c-hours-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em; line-height: 1.3;
}
.c-hours-sub { opacity: 0.55; font-size: 14px; font-weight: 500; }

@media (max-width: 900px) {
  .c-form-wrap { grid-template-columns: 1fr; }
  .c-form-wrap > .form { border-right: none; border-bottom: 2px solid var(--d03-ink); }
}

/* ----------------------------------------------------------------
   LOCATION — CSS-drawn map placeholder
   ---------------------------------------------------------------- */
.loc-strip {
  display: grid; grid-template-columns: 1.1fr 1fr;
  border-bottom: 2px solid var(--d03-ink);
  min-height: 420px;
}
.loc-strip > .map {
  background: var(--d03-ink); color: var(--d03-paper);
  position: relative; overflow: hidden;
  border-right: 2px solid var(--d03-ink);
}
.loc-strip > .map .pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(48px, 6vw, 96px); letter-spacing: -0.04em;
  line-height: 0.9; text-align: center;
}
.loc-strip > .map .pin small {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; font-weight: 400; opacity: 0.65;
  display: block; margin-top: 12px;
}
.loc-strip > .map .compass {
  position: absolute; top: 24px; right: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em;
  background: #ffffff18; padding: 8px 14px;
}
.loc-strip > .map .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, #ffffff12 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff12 1px, transparent 1px);
  background-size: 48px 48px;
}
.loc-strip > .info {
  padding: clamp(32px, 5vw, 72px);
  display: flex; flex-direction: column; gap: 20px; justify-content: center;
}
.loc-strip > .info .d03-chip { margin-bottom: 8px; align-self: flex-start; }
.c-loc-h2 {
  margin: 0; font-size: clamp(36px, 4vw, 64px);
  letter-spacing: -0.03em; line-height: 0.95;
}
.c-loc-body {
  font-size: 12px; line-height: 1.75; margin: 0;
  max-width: 440px; letter-spacing: 0.04em; opacity: 0.85;
}
.c-loc-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; line-height: 2.0;
}

@media (max-width: 900px) {
  .loc-strip { grid-template-columns: 1fr; }
  .loc-strip > .map {
    border-right: none; border-bottom: 2px solid var(--d03-ink);
    min-height: 300px;
  }
}

/* ----------------------------------------------------------------
   SECTION HEADERS
   ---------------------------------------------------------------- */
.c-section-head {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.c-section-head .d03-chip { margin-bottom: 18px; }
.c-section-head h2 { margin: 0; }

/* ----------------------------------------------------------------
   SOCIALS GRID
   ---------------------------------------------------------------- */
.socials {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--d03-ink);
  border-bottom: 2px solid var(--d03-ink);
}
.socials > a {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--d03-ink);
  text-decoration: none; color: var(--d03-ink);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 200px;
  transition: background 120ms ease;
}
.socials > a:hover { background: var(--d03-paper2); }
.socials > a:last-child { border-right: none; }
.soc-eyebrow { font-size: 10px; letter-spacing: 0.15em; opacity: 0.55; }
.socials .handle {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.02em;
  line-height: 1.0;
}
.socials .arrow {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.15em; color: var(--d03-red);
}
@media (max-width: 900px) {
  .socials { grid-template-columns: 1fr 1fr; }
  .socials > a:nth-child(2n) { border-right: none; }
  .socials > a { border-bottom: 1px solid var(--d03-ink); min-width: 0; min-height: auto; padding: 24px 18px; }
}
@media (max-width: 500px) {
  .socials { grid-template-columns: 1fr; }
  .socials > a, .socials > a:nth-child(2n) {
    border-right: none !important;
    border-bottom: 1px solid var(--d03-ink);
  }
  .socials > a:last-child { border-bottom: none; }
}

/* ----------------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------------- */
.c-faq-wrap {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.c-faq-wrap .d03-chip { margin-bottom: 18px; }
.c-faq-title { margin: 0 0 40px; }

details.faq {
  border-bottom: 1px solid var(--d03-ink);
  padding: 20px 0;
}
details.faq summary {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.02em;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: 'JetBrains Mono', monospace; font-size: 24px;
  color: var(--d03-red);
  transition: transform 200ms ease;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  line-height: 1.75; letter-spacing: 0.04em;
  margin: 16px 0 0; max-width: 640px; opacity: 0.85;
}

/* ----------------------------------------------------------------
   COLLABORATION ANCHOR SECTION
   ---------------------------------------------------------------- */
.collab {
  border-bottom: 2px solid var(--d03-ink);
  background: var(--d03-ink); color: var(--d03-paper);
  padding: clamp(48px, 7vw, 112px) clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: flex-end;
}
.collab-eyebrow { font-size: 11px; margin-bottom: 20px; letter-spacing: 0.15em; }
.collab-blurb {
  font-size: 12px; margin: 0 0 28px; max-width: 440px;
  line-height: 1.75; letter-spacing: 0.04em; opacity: 0.85;
}
.collab-actions { display: flex; flex-direction: column; }
.collab-actions > .d03-btn + .d03-btn { border-top: 0; }

@media (max-width: 900px) {
  .collab { grid-template-columns: 1fr; gap: 32px; }
}
