:root {
  --orange: #ef6237;
  --orange-deep: #d94d24;
  --navy: #17243b;
  --ink: #1f2630;
  --muted: #667080;
  --paper: #f6f5f2;
  --white: #ffffff;
  --line: #d7d9dc;
  --soft-orange: #fff3ee;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--white); font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header { position: relative; z-index: 2; background: var(--white); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.brand img { width: 68px; height: 68px; object-fit: contain; }
.brand span { color: var(--muted); font-size: .72rem; line-height: 1.4; letter-spacing: .05em; text-transform: uppercase; }
.brand strong { color: var(--navy); font-size: .9rem; font-weight: 700; letter-spacing: .03em; }
.return-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: .86rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--navy); }
.return-link span { color: var(--orange); }

.hero { color: var(--white); background: var(--orange); border-bottom: 1px solid rgba(23, 36, 59, .2); }
.hero-grid { min-height: 440px; display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(48px, 10vw, 150px); align-items: end; padding-top: 80px; padding-bottom: 76px; }
.section-label { margin: 0 0 20px; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "DM Serif Display", serif; font-weight: 400; letter-spacing: -.025em; }
h1 { font-size: clamp(4.2rem, 8.2vw, 7.6rem); line-height: .88; }
h1 em { color: var(--navy); font-weight: 400; }
.hero-copy { padding-bottom: 9px; border-top: 1px solid rgba(255,255,255,.55); }
.hero-copy p { margin: 22px 0 24px; font-size: 1.02rem; }
.hero-copy a { display: inline-flex; align-items: center; gap: 12px; font-size: .85rem; font-weight: 700; text-underline-offset: 5px; }

.submission-section { padding: clamp(70px, 8vw, 118px) 0; background: var(--paper); }
.submission-grid { display: grid; grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.form-intro { position: sticky; top: 36px; }
.form-intro .section-label { color: var(--orange-deep); }
.form-intro h2, .process-heading h2 { color: var(--navy); font-size: clamp(2.8rem, 5vw, 4.6rem); line-height: .98; }
.form-intro > p:not(.section-label):not(.confidentiality) { margin: 26px 0 30px; color: var(--muted); }
.inspiration-list { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.inspiration-list p { margin: 0 0 13px; color: var(--navy); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.inspiration-list ul { margin: 0; padding: 0; list-style: none; }
.inspiration-list li { position: relative; padding: 5px 0 5px 19px; color: var(--ink); font-size: .92rem; }
.inspiration-list li::before { content: ""; position: absolute; top: 14px; left: 1px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.confidentiality { margin-top: 25px; color: var(--muted); font-size: .78rem; }

.form-panel { background: var(--white); border: 1px solid var(--line); }
.form-panel-heading { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 36px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
form { padding: 0 36px; }
.hidden-field { position: absolute; left: -9999px; }
.form-section { margin: 0; padding: 38px 0 42px; border: 0; border-bottom: 1px solid var(--line); }
.form-section legend { width: 100%; margin-bottom: 24px; color: var(--navy); font-size: 1.02rem; font-weight: 700; }
.form-section legend span { display: inline-block; min-width: 40px; color: var(--orange-deep); font-size: .78rem; letter-spacing: .08em; }
.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice { cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { min-height: 54px; display: flex; align-items: center; padding: 12px 16px; color: var(--ink); background: var(--white); border: 1px solid var(--line); font-size: .86rem; font-weight: 600; transition: border-color .18s ease, background .18s ease, color .18s ease; }
.choice span::before { content: ""; flex: 0 0 auto; width: 13px; height: 13px; margin-right: 11px; border: 1px solid #9da3aa; border-radius: 50%; }
.choice:hover span { border-color: var(--navy); }
.choice input:focus-visible + span { outline: 3px solid rgba(239, 98, 55, .28); outline-offset: 2px; }
.choice input:checked + span { color: var(--navy); background: var(--soft-orange); border-color: var(--orange); }
.choice input:checked + span::before { border: 4px solid var(--orange); background: var(--white); }
.field { display: block; margin-top: 20px; }
.field:first-of-type { margin-top: 0; }
.field > span { display: block; margin-bottom: 8px; color: var(--navy); font-size: .83rem; font-weight: 700; }
.field b { color: var(--orange-deep); }
.field i { margin-left: 5px; color: var(--muted); font-size: .72rem; font-style: normal; font-weight: 500; }
.field input, .field textarea { width: 100%; padding: 14px 15px; color: var(--ink); background: #fcfcfb; border: 1px solid #bfc3c8; border-radius: 0; font: 500 .95rem/1.55 "Manrope", sans-serif; transition: border-color .18s ease, box-shadow .18s ease; }
.field textarea { min-height: 132px; resize: vertical; }
.field textarea[rows="3"] { min-height: 92px; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239, 98, 55, .14); }
.field input::placeholder, .field textarea::placeholder { color: #9399a0; }
.contact-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-fields { grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 20px; }
.contact-fields:not([hidden]) { display: grid; }
.submit-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 0 36px; }
.submit-row p { max-width: 430px; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
button { flex: 0 0 auto; min-width: 190px; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; padding: 16px 20px; color: var(--white); background: var(--orange); border: 1px solid var(--orange); font: 700 .9rem/1 "Manrope", sans-serif; cursor: pointer; transition: background .18s ease, border-color .18s ease; }
button:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
button:focus-visible { outline: 3px solid rgba(239, 98, 55, .3); outline-offset: 3px; }

.process-section { padding: clamp(75px, 8vw, 110px) 0; color: var(--white); background: var(--navy); }
.process-heading { max-width: 700px; }
.process-heading .section-label { color: #ff9a78; }
.process-heading h2 { color: var(--white); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 58px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.process-list li { padding: 30px 38px 10px 0; }
.process-list li + li { padding-left: 38px; border-left: 1px solid rgba(255,255,255,.25); }
.process-list span { color: #ff9a78; font-size: .74rem; font-weight: 700; letter-spacing: .1em; }
.process-list h3 { margin: 14px 0 9px; font-family: "DM Serif Display", serif; font-size: 1.65rem; font-weight: 400; }
.process-list p { margin: 0; color: #c7ccd4; font-size: .88rem; }
.process-note { margin: 44px 0 0; padding-top: 22px; color: #c7ccd4; border-top: 1px solid rgba(255,255,255,.25); font-size: .78rem; }
.site-footer { background: var(--white); }
.footer-inner { min-height: 115px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--navy); font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.footer-inner > p { color: var(--muted); font-size: .8rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; align-items: start; }
  .hero-copy { max-width: 600px; }
  .submission-grid { grid-template-columns: 1fr; }
  .form-intro { position: static; max-width: 680px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 30px, 1180px); }
  .header-inner { min-height: 82px; }
  .brand img { width: 56px; height: 56px; }
  .brand span { display: none; }
  .return-link { font-size: .76rem; }
  .hero-grid { min-height: auto; padding-top: 58px; padding-bottom: 58px; }
  h1 { font-size: clamp(3.55rem, 17vw, 5.2rem); }
  .submission-section { padding-top: 64px; }
  .form-panel { margin: 0 -15px; }
  .form-panel-heading { padding: 0 20px; }
  .form-panel-heading span:last-child { display: none; }
  form { padding: 0 20px; }
  .category-grid, .contact-choice, .contact-fields:not([hidden]) { grid-template-columns: 1fr; }
  .submit-row { align-items: stretch; flex-direction: column; }
  button { width: 100%; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { padding: 26px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; }
  .footer-inner > p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
