:root {
  --bg:        #FAFAF8;
  --ink:       #111111;
  --ink-mid:   #444444;
  --ink-light: #999999;
  --ink-faint: #CCCCCC;
  --serif:     'EB Garamond', Georgia, serif;
  --sans:      'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10vh 6vw;
  position: relative;
}

.symbol {
  width: 72px;
  height: 72px;
  animation: rise 1.2s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.symbol img { width: 100%; height: 100%; object-fit: contain; }

.centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 28px;
}

.company-name {
  font-family: var(--serif);
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  animation: rise 1s ease 0.5s both;
}

.rule {
  width: 24px;
  height: 1px;
  background: var(--ink-faint);
  margin: 20px auto;
  animation: rise 1s ease 0.9s both;
}

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  animation: rise 1.2s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}

.sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(13px, 1.6vw, 15px);
  color: var(--ink-light);
  margin-top: 8px;
  animation: rise 1s ease 1.1s both;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--ink-faint);
  animation: rise 1s ease 1.8s both, bob 2.4s ease 2.8s infinite;
}

.easter {
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: transparent;
  user-select: none;
  cursor: default;
  transition: color 0.6s ease;
}
.easter:hover { color: var(--ink-faint); }

/* ── CONTACT ── */
.contact {
  padding: 80px 6vw 60px;
  display: flex;
  justify-content: center;
}

.contact-inner {
  width: 100%;
  max-width: 520px;
}

.contact-label {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.contact-rule {
  width: 100%;
  height: 1px;
  background: var(--ink-faint);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-faint);
  border-radius: 0;
  padding: 8px 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--ink-faint); }
input:focus, textarea:focus, select:focus { border-bottom-color: var(--ink-mid); }
textarea { resize: none; line-height: 1.7; }

.select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--ink-light);
  pointer-events: none;
}

button[type="submit"] {
  margin-top: 8px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  width: 100%;
  text-align: left;
}
button[type="submit"]:hover { color: var(--ink-mid); border-bottom-color: var(--ink-mid); }
button[type="submit"]:disabled { color: var(--ink-light); border-bottom-color: var(--ink-faint); cursor: default; }

.btn-sending { display: none; }
button.sending .btn-label { display: none; }
button.sending .btn-sending { display: inline; }

.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.form-success, .form-error { display: none; padding: 24px 0; }
.success-text { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink-mid); text-align: center; }
.error-text { font-family: var(--sans); font-weight: 300; font-size: 12px; color: var(--ink-mid); text-align: center; line-height: 1.7; }

/* ── FOOTER ── */
.foot { padding: 0 6vw 36px; display: flex; justify-content: center; }
.foot-inner { width: 100%; max-width: 520px; }
.foot-rule { width: 100%; height: 1px; background: var(--ink-faint); margin-bottom: 16px; }
.location { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; text-align: center; }

/* ── Animations ── */
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .symbol { width: 56px; height: 56px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact { padding: 60px 8vw 40px; }
}
