/* ============================================================
   CEDAR & WOLF — Brand Identity & Digital Design Studio
   ============================================================ */

:root {
  --bg: #0b0a08;
  --bg-raised: #12100d;
  --ink: #f0ebe2;
  --ink-dim: #948c7e;
  --ink-faint: #3e392f;
  --accent: #e8a0aa;
  --line: rgba(240, 235, 226, 0.1);
  --font-display: "Clash Display", sans-serif;
  --font-body: "Satoshi", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-serif: "Instrument Serif", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #0b0a08; }

a { color: inherit; text-decoration: none; }

.amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* ---------- Utilities ---------- */

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.section { padding: clamp(6rem, 12vw, 11rem) var(--pad); }

.section__head { margin-bottom: clamp(3rem, 6vw, 5.5rem); }

.work.section { padding-bottom: clamp(1.75rem, 4vw, 3rem); }

.identity.section { padding-top: clamp(1.75rem, 4vw, 3rem); }

.manifesto.section {
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.packages.section { padding-top: clamp(2rem, 4vw, 3.25rem); }

.packages .section__head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 1.25rem;
}

.section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--accent);
}

.section__desc {
  max-width: 30rem;
  color: var(--ink-dim);
  margin-top: 1.5rem;
  font-size: 1.02rem;
}

.section__desc--center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s, border-color 0.35s;
}

.btn--solid { border-color: var(--accent); color: var(--ink); }

.btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
  border-radius: 100px;
}

.btn--solid:hover { color: #0b0a08; }
.btn--solid:hover::before { transform: translateY(0); }

.btn--ghost { border-color: var(--line); color: var(--ink-dim); }
.btn--ghost:hover { border-color: var(--ink-dim); color: var(--ink); }

.btn__arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .btn__arrow { transform: translate(0.2rem, -0.2rem); }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

[data-load-reveal] {
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}

body.is-loaded [data-load-reveal] { opacity: 1; transform: translateY(0); }

/* ---------- Scroll progress ---------- */

.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 120;
  box-shadow: 0 0 10px rgba(232, 160, 170, 0.5);
}

/* ---------- Grain ---------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.7s steps(4) infinite;
}

@keyframes grain-shift {
  0% { background-position: 0 0; }
  25% { background-position: -60px 90px; }
  50% { background-position: 90px -60px; }
  75% { background-position: -90px -90px; }
  100% { background-position: 60px 60px; }
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: transform 0.5s var(--ease-out), background-color 0.4s, border-color 0.4s;
}

.nav.is-scrolled {
  background: rgba(11, 10, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav.is-hidden { transform: translateY(-100%); }

.nav__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__medallion {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.5s var(--ease-out);
}

.nav__logo:hover .nav__medallion {
  border-color: rgba(232, 160, 170, 0.5);
  transform: rotate(12deg);
}

.nav__links {
  display: flex;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav__links a:hover { color: var(--ink); }

.nav__meta { display: flex; align-items: center; gap: 1.5rem; }

.nav__cta {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0a08;
}

@media (max-width: 1000px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  min-height: clamp(500px, 70svh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5.25rem var(--pad) 2.75rem;
  position: relative;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  top: -25%; right: -15%;
  background: radial-gradient(circle at center,
    rgba(232, 160, 170, 0.2) 0%,
    rgba(232, 160, 170, 0.06) 40%,
    transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.hero__orb--2 {
  top: auto;
  right: auto;
  bottom: -30%;
  left: -18%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle at center,
    rgba(232, 160, 170, 0.13) 0%,
    rgba(232, 160, 170, 0.04) 45%,
    transparent 70%);
  animation: orb-drift-2 18s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-8%, 12%) scale(1.15); }
}

@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1.1); }
  to { transform: translate(10%, -10%) scale(0.95); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 2.5rem;
}

.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; }

.hero__line--indent { padding-left: clamp(1.5rem, 8vw, 10rem); }

.hero__word { display: inline-block; }

.hero__word--serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--accent);
}

.hero__accent { color: var(--accent); font-style: normal; }

.hero__line:nth-child(1) .hero__word:nth-child(1) { transition-delay: 0.1s; }
.hero__line:nth-child(1) .hero__word:nth-child(2) { transition-delay: 0.18s; }
.hero__line:nth-child(2) .hero__word { transition-delay: 0.3s; }

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
}

.hero__sub {
  max-width: 28rem;
  color: var(--ink-dim);
  font-size: 1.05rem;
  transition-delay: 0.5s;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition-delay: 0.6s;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .hero {
    min-height: clamp(500px, 72svh, 660px);
    padding-top: 5rem;
  }

  .hero__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  white-space: nowrap;
}

.marquee__track i {
  font-style: normal;
  color: var(--accent);
  margin: 0 1.2rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Work (website iframe previews) ---------- */

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.project { display: block; position: relative; }

.project--offset { margin-top: clamp(3rem, 8vw, 7rem); }

.project__visual {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s;
  background: #fff;
}

.project:hover .project__visual { border-color: rgba(232, 160, 170, 0.45); }

.project__visual iframe {
  display: block;
  width: 200%;
  height: 200%;
  border: 0;
  transform: scale(0.5);
  transform-origin: 0 0;
  pointer-events: auto;
  background: #fff;
  color-scheme: light;
  transition: none;
}

.project:hover .project__visual iframe { transform: scale(0.5); }

.project__info { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }

.project__info h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.project:hover .project__info h3 { color: var(--accent); }

@media (max-width: 750px) {
  .work__grid { grid-template-columns: 1fr; }
  .project--offset { margin-top: 0; }
}

/* ---------- Brand identity grid ---------- */

.identity__grid {
  columns: 3;
  column-gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

@media (max-width: 950px) { .identity__grid { columns: 2; } }
@media (max-width: 600px) { .identity__grid { columns: 1; } }

.tile {
  break-inside: avoid;
  margin-bottom: clamp(1.25rem, 2.5vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-raised);
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}

.tile:hover {
  border-color: rgba(232, 160, 170, 0.45);
  transform: translateY(-4px);
}

.tile img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.tile:hover img { transform: scale(1.04); }

.tile--captioned figcaption {
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.tile--captioned figcaption span,
.tile--captioned figcaption small {
  display: block;
}

.tile--captioned figcaption small {
  margin-top: 0.35rem;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
}

.tile--menu img {
  aspect-ratio: 612 / 1008;
  object-fit: cover;
  object-position: top;
}

#testimonial { scroll-margin-top: 5rem; }

/* transparent artwork (e.g. the fluffy Homey wordmark) sits on the dark tile */
.tile--transparent {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
}

/* ---------- Services ---------- */

.services.section {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.services__heading,
.testimonial__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.services__list {
  max-width: 70rem;
  border-top: 1px solid var(--line);
}

.service {
  border-bottom: 1px solid var(--line);
}

.service summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.15rem, 2.5vw, 1.75rem) 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 500;
  text-transform: uppercase;
}

.service summary::-webkit-details-marker { display: none; }

.service__plus {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.35s var(--ease-out);
}

.service[open] .service__plus { transform: rotate(45deg); }

.service__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: 0 0 clamp(1.5rem, 3vw, 2.25rem);
}

.service__content p {
  max-width: 32rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.service__content ul { list-style: none; }

.service__content li {
  border-top: 1px solid var(--line);
  padding: 0.55rem 0;
  font-size: 0.9rem;
}

.service__content li::before {
  content: "—";
  color: var(--accent);
  margin-right: 0.55rem;
}

@media (max-width: 700px) {
  .service__content { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- Manifesto ---------- */

.manifesto__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 64rem;
}

.manifesto__text .word {
  color: var(--ink-faint);
  transition: color 0.35s ease;
}

.manifesto__text .word.is-lit { color: var(--ink); }

.manifesto__foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 60rem;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

.manifesto__foot p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  margin-top: 0.6rem;
}

/* ---------- Packages ---------- */

.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

.package {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  background: transparent;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background-color 0.4s;
}

.package:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 170, 0.45);
  background: var(--bg-raised);
}

.package--featured {
  border-color: rgba(232, 160, 170, 0.5);
  background: linear-gradient(180deg, rgba(232, 160, 170, 0.06), transparent 55%);
}

.package__tag {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0b0a08;
  font-size: 0.55rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.package__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.package__desc { color: var(--ink-dim); font-size: 0.95rem; }

.package__list {
  list-style: none;
  margin-top: 0.25rem;
  flex-grow: 1;
}

.package__list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink);
}

.package__list li::before {
  content: "—";
  color: var(--accent);
  margin-right: 0.6rem;
}

.package__cta {
  color: var(--ink);
  margin-top: 0.5rem;
  transition: color 0.3s, letter-spacing 0.3s;
}

.package__cta:hover { color: var(--accent); letter-spacing: 0.2em; }

/* ---------- Testimonial ---------- */

.client-words.section {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.testimonial {
  max-width: 62rem;
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  color: var(--ink);
}

.testimonial blockquote::before { content: "“"; color: var(--accent); }
.testimonial blockquote::after { content: "”"; color: var(--accent); }

.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}

/* ---------- Process ---------- */

.process__list { border-top: 1px solid var(--line); }

.step {
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) 1.4fr;
  align-items: baseline;
  gap: 2rem;
  padding: 2.4rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease-out), background-color 0.4s;
}

.step:hover { background: var(--bg-raised); padding-left: 1.5rem; }

.step__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.3s, transform 0.4s var(--ease-out);
}

.step:hover .step__name { color: var(--accent); transform: translateX(0.4rem); }

.step__desc {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 34rem;
}

@media (max-width: 800px) {
  .step {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .step__desc { grid-column: auto; }
}

/* ---------- Enquire ---------- */

.enquire {
  position: relative;
  overflow: hidden;
}

.enquire::before {
  content: "";
  position: absolute;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  left: 50%; top: 12%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 160, 170, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.enquire__head {
  text-align: center;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}

.cta__badge {
  width: clamp(90px, 12vw, 120px);
  margin: 2rem auto;
  position: relative;
}

.cta__badge svg {
  display: block;
  width: 100%;
  animation: spin 16s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.cta__badge text {
  font-family: var(--font-mono);
  font-size: 8.2px;
  letter-spacing: 0.24em;
  fill: var(--ink-dim);
}

.cta__badge-logo {
  position: absolute;
  inset: 24%;
  width: 52%;
  height: 52%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.enquire__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.8vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.enquire__title span { display: block; }

.enquire__title-accent { transition-delay: 0.12s; }

.enquire__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--accent);
}

.enquire__emails {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.enquire__email {
  display: inline-block;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 0.3rem;
  transition: color 0.3s, border-color 0.3s;
}

.enquire__email:hover { color: var(--accent); border-color: var(--accent); }

.enquire__email-separator { color: var(--ink-faint); }

/* ---------- Form ---------- */

.form {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: relative;
}

.hidden-field { display: none; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.form__field { display: flex; flex-direction: column; gap: 0.7rem; }

.form__field .mono-label { font-size: 0.58rem; }

.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-faint);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 0.6rem 0.1rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23948c7e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.5rem;
}

.form__field select option { background: var(--bg-raised); color: var(--ink); }

.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--ink-faint); }

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-bottom-color: var(--accent); }

.form__field textarea { resize: vertical; min-height: 7rem; line-height: 1.6; }

.form__submit {
  align-self: center;
  margin-top: 1rem;
  background: transparent;
  font-size: 1.1rem;
  padding: 1.1rem 2.6rem;
  color: var(--ink);
}

.form__submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form__status {
  max-width: 46rem;
  margin: 2rem auto 0;
  color: var(--ink);
  text-align: center;
  border-top: 1px solid var(--accent);
  padding-top: 1.25rem;
}

.form__status.is-visible { opacity: 1; transform: none; }

.form__status a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .enquire__emails {
    flex-direction: column;
    gap: 0.85rem;
  }

  .enquire__email-separator { display: none; }
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad) 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.footer__brand-wrap {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.footer__logo {
  width: clamp(56px, 6vw, 80px);
  height: clamp(56px, 6vw, 80px);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer__cols {
  display: flex;
  gap: clamp(2.5rem, 6vw, 6rem);
  flex-wrap: wrap;
}

.footer__cols > div { display: flex; flex-direction: column; gap: 0.55rem; }

.footer__cols .mono-label { margin-bottom: 0.5rem; }

.footer__cols a {
  font-size: 0.9rem;
  color: var(--ink-dim);
  transition: color 0.3s;
  width: fit-content;
}

.footer__cols a:hover { color: var(--accent); }

.footer__line {
  font-size: 0.9rem;
  color: var(--ink-dim);
  font-variant-numeric: tabular-nums;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
