/* Wildflowers of Turkey - Runner Tourism
   Built from the Runner Tourism design system. Fixed palette, type- and rule-led:
   no icon set, no decorative gradients (the hero scrim is the one exception),
   gold is an accent only. Mobile-first. */

/* fonts.css is linked separately in <head> so the faces start downloading
   without waiting for this file to parse. */

/* ---------------------------------------------------------------- tokens */

:root {
  /* Palette - do not introduce colours outside this set */
  --color-navy: #1c2a4e;
  --color-runner-blue: #3858a0;
  --color-runner-blue-hover: #2f4a88;
  --color-sky-mist: #e7eff6;
  --color-gold: #b8894b;
  --color-gold-hover: #9e732f;
  /* Same hue as --color-gold, deep enough to clear WCAG AA at small sizes.
     Approved as an exception to the fixed palette, and scoped to one job:
     gold used as TEXT (or as a focus indicator) on a light background.
     #b8894b reaches only 2.97:1 on paper; this reaches 5.40:1.
     Rules, dots, badge borders and every gold on navy keep --color-gold. */
  --color-gold-text: #856024;
  --color-paper: #fbf9f5;
  --color-slate: #595959;
  --color-ink: #2c2c2c;
  --surface-card: #ffffff;
  --color-line: oklch(88% 0.01 250);
  --color-line-mist: oklch(84% 0.03 250);

  /* Paper at partial alpha, for text and rules on the navy bands */
  --on-dark-90: rgba(251, 249, 245, 0.9);
  --on-dark-82: rgba(251, 249, 245, 0.82);
  --on-dark-72: rgba(251, 249, 245, 0.72);
  --on-dark-50: rgba(251, 249, 245, 0.5);
  --on-dark-line: rgba(251, 249, 245, 0.16);

  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", Calibri, Arial, sans-serif;

  --fs-h2: 1.875rem;
  --fs-h3: 1.375rem;
  --fs-lead: 1.1875rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-label: 0.75rem;
  --lh-heading: 1.18;
  --lh-body: 1.65;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px oklch(28% 0.06 262 / 0.08);
  --shadow-md: 0 8px 24px oklch(28% 0.06 262 / 0.1);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 140ms;
  --dur-base: 240ms;

  --container: 1180px;
  --gutter: 20px;
  --section-y: 72px;
  --band-y: 64px;
}

@media (min-width: 640px) {
  :root {
    --gutter: 32px;
    --section-y: 88px;
    --band-y: 80px;
    --fs-h2: 2.125rem;
    --fs-h3: 1.5rem;
    --fs-lead: 1.25rem;
  }
}

@media (min-width: 900px) {
  :root {
    --section-y: 112px;
    --band-y: 104px;
    --fs-h2: 2.25rem;
    --fs-h3: 1.625rem;
    --fs-lead: 1.375rem;
  }
}

/* ------------------------------------------------------------- baseline */

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

html {
  scroll-behavior: smooth;
  /* keep hash targets clear of the sticky header */
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-navy);
  line-height: var(--lh-heading);
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-runner-blue);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

a:hover {
  color: var(--color-gold-text);
}

:focus-visible {
  outline: 2px solid var(--color-gold-text);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--color-sky-mist);
  color: var(--color-navy);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 60;
  background: var(--color-navy);
  color: var(--color-paper);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  transition: top var(--dur-fast) var(--ease-out);
}

.skip-link:focus {
  top: 12px;
  color: var(--color-paper);
}

/* --------------------------------------------------------------- layout */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-top: var(--section-y);
}

.band {
  margin-top: var(--section-y);
}

.band > .wrap {
  padding-block: var(--band-y);
}

/* Eyebrow: a 32px gold hairline plus a small-caps gold label. This is the
   brand's substitute for an icon - do not add an icon set.
   The rule keeps the true gold; the words take the darker one so they are
   legible on paper and Sky Mist. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-text);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  flex: none;
}

/* On navy, --color-gold already clears AA (4.51:1) and is the intended tone. */
.hero .eyebrow,
.bulbs .eyebrow {
  color: var(--color-gold);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-head h2 {
  margin-top: 18px;
  font-size: var(--fs-h2);
  max-width: 640px;
}

.section-head__note {
  font-size: var(--fs-small);
  color: var(--color-slate);
  max-width: 400px;
}

@media (min-width: 900px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
}

/* -------------------------------------------------------------- buttons */

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

.btn--primary {
  background: var(--color-runner-blue);
  color: var(--color-paper);
}

.btn--primary:hover {
  background: var(--color-runner-blue-hover);
  color: var(--color-paper);
}

.btn--primary:active {
  transform: translateY(1px);
}

.btn--ghost {
  border-color: rgba(251, 249, 245, 0.45);
  color: var(--color-paper);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--block {
  display: block;
  width: 100%;
  padding-block: 15px;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* --------------------------------------------------------------- header */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 249, 245, 0.92);
  border-bottom: 1px solid var(--color-line);
}

@supports (backdrop-filter: blur(8px)) {
  .header {
    backdrop-filter: blur(8px);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 14px;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  min-width: 0;
}

.lockup img {
  width: 36px;
  height: 36px;
  flex: none;
}

.lockup__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

/* The lockup gives way before the header can ever overflow: on the narrowest
   phones the wordmark wraps to two lines and the operator line steps aside. */
.lockup__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.15;
  color: var(--color-navy);
}

.lockup__sub {
  display: none;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 400px) {
  .lockup__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lockup__sub {
    display: block;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.header__links {
  display: none;
  align-items: center;
  gap: 18px;
  font-size: var(--fs-small);
}

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

.header__links a:hover {
  color: var(--color-gold-text);
}

/* EN | TR - a real pair of links between /  and /tr/, not a script toggle */
.langswitch {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: none;
}

.langswitch a {
  padding: 5px 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-slate);
  background: transparent;
}

.langswitch a + a {
  border-left: 1px solid var(--color-line);
}

.langswitch a[aria-current="page"] {
  color: var(--color-navy);
  background: var(--color-sky-mist);
}

.header__cta {
  display: none;
  background: var(--color-runner-blue);
  color: var(--color-paper);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: background-color var(--dur-fast) var(--ease-out);
}

.header__cta:hover {
  background: var(--color-runner-blue-hover);
  color: var(--color-paper);
}

/* Small-screen disclosure. The design system has no icon set, so the control
   is a small-caps word with a gold hairline underneath - same language as the
   eyebrow labels. */
.menu-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  /* The underline is the only thing marking this as a control, so it takes the
     darker gold to clear 3:1 against paper. */
  border-bottom: 1px solid var(--color-gold-text);
  padding: 4px 2px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-navy);
  cursor: pointer;
  flex: none;
}

.menu-panel {
  display: none;
  border-top: 1px solid var(--color-line);
  background: var(--color-paper);
}

.menu-panel[data-open="true"] {
  display: block;
}

.menu-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 20px;
}

.menu-panel li + li {
  border-top: 1px solid var(--color-line);
}

.menu-panel a {
  display: block;
  padding: 14px 0;
  color: var(--color-ink);
  font-size: 1.0625rem;
}

.menu-panel .btn {
  margin-top: 8px;
}

@media (min-width: 480px) {
  .header__inner {
    gap: 20px;
  }

  .lockup {
    gap: 12px;
  }

  .lockup img {
    width: 42px;
    height: 42px;
  }

  .lockup__name {
    font-size: 1.0625rem;
  }

  .lockup__sub {
    letter-spacing: 0.18em;
  }

  .header__nav {
    gap: 18px;
  }

  .langswitch a {
    padding: 6px 10px;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
}

@media (min-width: 860px) {
  .header__inner {
    padding-block: 18px;
  }

  .lockup__name {
    font-size: 1.1875rem;
  }

  .header__links,
  .header__cta {
    display: flex;
  }

  .header__nav {
    gap: 22px;
  }

  .menu-toggle,
  .menu-panel {
    display: none !important;
  }
}

@media (min-width: 1080px) {
  .header__nav,
  .header__links {
    gap: 28px;
  }
}

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 520px;
  overflow: hidden;
  background: var(--color-navy);
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The only decorative gradient in the design: a scrim for legibility. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 42, 78, 0.55) 0%,
    rgba(28, 42, 78, 0.3) 35%,
    rgba(28, 42, 78, 0.88) 100%
  );
  pointer-events: none;
}

.hero__body {
  position: relative;
  padding-top: 96px;
  padding-bottom: 56px;
}

.hero h1 {
  margin-top: 22px;
  max-width: 820px;
  font-size: clamp(2.125rem, 6vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--color-paper);
}

.hero__lead {
  margin-top: 20px;
  max-width: 620px;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(251, 249, 245, 0.86);
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 640px) {
  .hero {
    min-height: 640px;
  }

  .hero__body {
    padding-top: 120px;
    padding-bottom: 72px;
  }
}

/* ---------------------------------------------------------------- stats */

.stats {
  background: var(--color-sky-mist);
  border-bottom: 1px solid var(--color-line-mist);
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 32px;
  padding-block: 36px;
}

.stat__figure {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-navy);
}

.stat__caption {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--color-slate);
}

@media (min-width: 560px) {
  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
}

@media (min-width: 1080px) {
  .stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-block: 44px;
  }

  .stat__figure {
    font-size: 2.5rem;
  }
}

/* -------------------------------------------------------------- journeys */

.cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.card__media {
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card:hover .card__media img {
  transform: scale(1.03);
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 26px 26px 28px;
}

/* Border keeps the true gold (non-text, 3:1 is the bar and it passes);
   the label takes the darker gold. */
.badge {
  align-self: flex-start;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-text);
}

.card h3 {
  font-size: var(--fs-h3);
}

.card__body p {
  font-size: var(--fs-small);
  color: var(--color-slate);
}

.card__link {
  margin-top: auto;
  padding-block: 4px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card__media img {
    height: 220px;
  }
}

@media (min-width: 1000px) {
  .cards {
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ----------------------------------------------------------------- about */

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.about__portrait img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius-md);
}

.about__caption {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--color-slate);
}

.about h2 {
  margin-top: 18px;
  font-size: var(--fs-h2);
  max-width: 520px;
}

.letter {
  margin-top: 24px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signature {
  margin-top: 28px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-navy);
}

.credentials {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid var(--color-gold);
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--color-slate);
}

@media (min-width: 640px) {
  .about__portrait img {
    height: 420px;
  }

  .credentials {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 1080px) {
  .about__grid {
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 72px;
  }

  .about__portrait img {
    height: 560px;
  }
}

/* ------------------------------------------------------------ bulb trade */

.bulbs {
  background: var(--color-navy);
  color: var(--color-paper);
}

/* Text-only band: same reading measure as the letter in "about". */
.bulbs__measure {
  max-width: 640px;
}

.bulbs h2 {
  margin-top: 18px;
  font-size: var(--fs-h2);
  color: var(--color-paper);
}

.bulbs__lead {
  margin-top: 22px;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--on-dark-82);
}

.bulbs__body {
  margin-top: 20px;
  color: var(--on-dark-72);
}

.pullquote {
  margin: 32px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--color-gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3125rem;
  line-height: 1.5;
  color: var(--color-paper);
}

/* ----------------------------------------------------------------- flora */

.gallery {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.gallery figure {
  margin: 0;
  min-width: 0;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.gallery figcaption {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-navy);
}

@media (min-width: 560px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .gallery {
    margin-top: 44px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery img {
    height: 300px;
  }
}

/* ------------------------------------------------------------------ book */

.book {
  background: var(--color-sky-mist);
  border-top: 1px solid var(--color-line-mist);
  border-bottom: 1px solid var(--color-line-mist);
}

.book__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.book h2 {
  margin-top: 18px;
  font-size: var(--fs-h2);
  max-width: 520px;
}

.book__lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--color-slate);
}

.specs {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 40px;
  font-size: var(--fs-small);
}

.specs > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--color-line-mist);
}

.specs dt {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-text);
}

.specs dd {
  margin: 0;
  color: var(--color-ink);
}

.book__cta {
  margin-top: 36px;
}

.book__cover {
  order: -1;
  justify-self: center;
  max-width: 320px;
}

.book__cover img {
  width: 100%;
  height: auto;
}

@media (min-width: 560px) {
  .specs {
    grid-template-columns: repeat(2, minmax(0, 240px));
    gap: 20px 40px;
  }
}

@media (min-width: 1080px) {
  .book__grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 80px;
  }

  .book__cover {
    order: 0;
    max-width: none;
  }
}

/* ------------------------------------------------------------------- faq */

/* Static by design: every answer is visible. Answer engines quote what they
   can read, and this mirrors the FAQPage JSON-LD - do not turn it into an
   accordion. */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.faq h2 {
  margin-top: 18px;
  font-size: var(--fs-h2);
}

.faq__list > div {
  padding: 24px 0;
  border-top: 1px solid var(--color-line);
}

.faq__list > div:last-child {
  border-bottom: 1px solid var(--color-line);
}

.faq__list h3 {
  font-size: 1.25rem;
}

.faq__list p {
  margin-top: 10px;
  color: var(--color-slate);
}

@media (min-width: 900px) {
  .faq__list h3 {
    font-size: 1.3125rem;
  }

  .faq__list > div {
    padding: 26px 0;
  }
}

@media (min-width: 1080px) {
  .faq__grid {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 72px;
  }
}

/* --------------------------------------------------------------- enquiry */

.enquiry {
  padding-bottom: var(--band-y);
}

.enquiry__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.enquiry h2 {
  margin-top: 18px;
  font-size: var(--fs-h2);
  max-width: 440px;
}

.enquiry__body {
  margin-top: 20px;
  max-width: 460px;
  color: var(--color-slate);
}

.contact-list {
  margin: 36px 0 0;
  padding: 28px 0 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--fs-small);
}

/* A 6px gold dot stands in for a bullet icon. */
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.contact-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex: none;
}

.panel {
  background: var(--surface-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.panel fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-navy);
}

.field__req {
  color: var(--color-gold-text);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.625rem;
  margin-left: 6px;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.4;
  color: var(--color-ink);
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.field input {
  min-height: 44px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

/* Focus indicator: the darker gold, so the ring itself clears 3:1 against the
   field fill as well as reading as the same accent. */
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold-text);
  box-shadow: 0 0 0 3px rgba(133, 96, 36, 0.25);
}

.field__hint {
  font-size: 0.8125rem;
  color: var(--color-slate);
}

/* There is no red in the palette. Errors are marked with the gold accent
   rule and navy text - approved as the brand's error treatment. */
.field__error {
  font-size: 0.8125rem;
  color: var(--color-navy);
  border-left: 2px solid var(--color-gold-text);
  padding-left: 10px;
}

.field__error:empty {
  display: none;
}

.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea {
  border-color: var(--color-gold-text);
}

.form-status {
  margin-top: 20px;
  font-size: var(--fs-small);
  color: var(--color-navy);
  border-left: 2px solid var(--color-gold-text);
  padding-left: 12px;
}

.form-status:empty {
  display: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footnote {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--color-slate);
}

@media (min-width: 640px) {
  .panel {
    padding: 36px;
  }
}

@media (min-width: 1080px) {
  .enquiry__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
  }
}

/* ---------------------------------------------------------------- footer */

.footer {
  background: var(--color-navy);
  color: var(--on-dark-72);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding-block: 48px;
}

.footer__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-paper);
}

.footer__desc {
  margin-top: 12px;
  max-width: 420px;
  font-size: 0.875rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
}

.footer__nav a {
  padding-block: 4px;
}

.footer__nav a,
.footer a {
  color: rgba(251, 249, 245, 0.8);
}

.footer__nav a:hover,
.footer a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(251, 249, 245, 0.14);
}

.footer__bottom > .wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--on-dark-50);
}

@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    padding-block: 64px;
  }

  .footer__nav {
    text-align: right;
  }

  .footer__bottom > .wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    padding-block: 22px;
  }
}

/* ------------------------------------------------------------------- 404 */

.notfound {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.notfound__body {
  max-width: 620px;
  text-align: center;
}

.notfound .eyebrow {
  justify-content: center;
}

.notfound h1 {
  margin-top: 18px;
  font-size: clamp(1.75rem, 5vw, 3rem);
}

.notfound p + p {
  margin-top: 16px;
}

.notfound .btn {
  margin-top: 16px;
}

/* ------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .card:hover {
    transform: none;
  }

  .card:hover .card__media img {
    transform: none;
  }
}

/* ----------------------------------------------------------------- print */

@media print {
  .header,
  .hero__scrim,
  .skip-link,
  .panel,
  .menu-panel {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
