/* =========================================================================
   styles.css - OKYDEBY Global Ventures
   Light theme: white base with a warm cream panel tone, pulled from the
   company flier's own white background + green/blue brand colors.
   Edit the :root variables to retune the palette site-wide.
   ========================================================================= */
:root {
  --bg: #ffffff;
  --bg-panel: #fbf6ec;
  --bg-panel-2: #f3ebda;
  --bg-raised: #ffffff;
  --line: rgba(23, 31, 23, 0.14);
  --line-soft: rgba(23, 31, 23, 0.08);
  --ink: #181f18;
  --ink-dim: #525c51;
  --ink-faint: #8b958a;

  --green: #1e7a4c;
  --green-bright: #249a5f;
  --green-dim: #e7f3ec;
  --blue: #1e5fa8;
  --blue-bright: #2e7fd6;
  --blue-dim: #e8f0fa;

  --radius-s: 3px;
  --radius-m: 6px;
  --radius-pill: 999px;
  --shadow-card: 0 14px 30px -22px rgba(23, 31, 23, 0.28);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
html,
body {
  height: auto;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

::selection {
  background: var(--green-dim);
  color: var(--green);
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
header.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
}
.brand-mark .leaf-g {
  color: var(--green);
}
.brand-mark .leaf-b {
  color: var(--blue);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text b {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18.5px;
  letter-spacing: 0.2px;
}
.brand-text span {
  font-size: 10.5px;
  color: var(--ink-faint);
  letter-spacing: 1.2px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.main-nav a {
  font-size: 14.5px;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
nav.main-nav a:hover {
  color: var(--ink);
  border-color: var(--blue);
}
.head-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.btn-green {
  background: var(--green);
  color: #fbfefc;
}
.btn-green:hover {
  background: var(--green-bright);
}
.btn-blue {
  background: var(--blue);
  color: #fbfdff;
}
.btn-blue:hover {
  background: var(--blue-bright);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 15px 26px;
  font-size: 15.5px;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 12.5px;
}
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.btn-pill {
  border-radius: var(--radius-pill);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
}
@media (max-width: 880px) {
  nav.main-nav {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 22px 20px 30px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid var(--line-soft);
    overflow-y: auto;
  }
  nav.main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  nav.main-nav a {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16.5px;
  }
  .head-cta .btn-ghost {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

section {
  padding: 96px 0;
}
@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }
}
.eyebrow {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue);
  opacity: 0.4;
  display: inline-block;
}
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.3px;
}
p {
  margin: 0;
}
.lede {
  color: var(--ink-dim);
  font-size: 17.5px;
  line-height: 1.65;
  max-width: 52ch;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-copy {
  color: var(--ink-dim);
  font-size: 18px;
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.hero-visual {
  position: relative;
  padding: 0 10px 22px 0;
}
.hero-visual .frame {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.hero-visual .frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 640px) {
  .hero-visual .frame img {
    height: 340px;
  }
}
.hero-visual .tag {
  position: absolute;
  right: 22px;
  bottom: 0;
  transform: translateY(50%);
  background: var(--blue);
  color: #fbfdff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: var(--radius-s);
  box-shadow: 0 14px 26px -14px rgba(30, 95, 168, 0.55);
  max-width: 220px;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .hero-visual .tag {
    right: 14px;
  }
}

.stat-strip {
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-strip .stat {
  padding: 26px 4px;
  text-align: left;
  border-left: 1px solid var(--line-soft);
}
.stat-strip .stat:first-child {
  border-left: none;
}
.stat-strip .num {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--green);
}
.stat-strip .lbl {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-strip .stat:nth-child(3) {
    border-left: none;
  }
}

/* ---------- About / process ---------- */
.about {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.about-media {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow-card);
}
.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .about-media {
    position: static;
  }
  .about-media img {
    height: 280px;
  }
}
.steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
}
.step:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.step .n {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--green);
  font-weight: 600;
}
.step h3 {
  font-size: 17.5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.step p {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 50ch;
}

/* ---------- Products ---------- */
.products {
  border-bottom: 1px solid var(--line-soft);
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
.product-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.product-card .pimg {
  height: 200px;
  overflow: hidden;
  background: var(--bg-panel);
}
.product-card .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .pimg img {
  transform: scale(1.045);
}
.product-body {
  padding: 24px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.product-body p.pdesc {
  color: var(--ink-dim);
  font-size: 14.6px;
  margin-bottom: 16px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tags span {
  font-size: 11.5px;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 99px;
}

/* ---------- Packaging & sizes ---------- */
.packaging {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line-soft);
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .size-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .size-grid {
    grid-template-columns: 1fr;
  }
}
.size-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.size-card .simg {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-s);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-panel);
}
.size-card .simg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.size-card .simg.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed var(--line);
  color: var(--ink-faint);
  font-size: 11.5px;
}
.size-card .simg.placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.55;
}
.size-card .slabel {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.size-card .stagline {
  font-size: 12.6px;
  color: var(--ink-faint);
  margin-bottom: 18px;
  min-height: 32px;
}
.size-card .sactions {
  display: flex;
  gap: 8px;
  width: 100%;
}
.size-card .sactions .btn {
  flex: 1;
  padding: 10px 10px;
  font-size: 12.6px;
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 10px;
}
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 110px;
  }
}
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-s);
  cursor: zoom-in;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.g-item:hover img {
  transform: scale(1.06);
}
.g-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
  font-size: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.g-item:hover .cap {
  opacity: 1;
}
.g-span-2 {
  grid-column: span 2;
}
.g-row-2 {
  grid-row: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 10, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  padding-top: calc(40px + env(safe-area-inset-top, 0px));
}
.lightbox.open {
  display: flex;
}
.lightbox figure {
  margin: 0;
  max-width: 900px;
  width: 100%;
}
.lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius-s);
}
.lightbox figcaption {
  color: #ededed;
  font-size: 14px;
  margin-top: 14px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- Media (video + flier) ---------- */
.media {
  border-bottom: 1px solid var(--line-soft);
}
.media-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}
.video-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.video-slot {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--bg-panel);
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-slot .vcap {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink-dim);
  border-top: 1px solid var(--line-soft);
}
.video-empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius-m);
  padding: 46px 24px;
  text-align: center;
  color: var(--ink-faint);
}
.video-empty p {
  font-size: 14px;
  max-width: 36ch;
  margin: 10px auto 0;
}
.flier-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--bg-panel);
  box-shadow: var(--shadow-card);
}
.flier-card img {
  width: 100%;
  display: block;
}
.flier-card .fcap {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
}
.flier-card .fcap span {
  font-size: 13.5px;
  color: var(--ink-dim);
}

/* ---------- Global reach ---------- */
.global {
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .global-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.route-list {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.route {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}
.route:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.route svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-top: 2px;
  flex: none;
}
.route p {
  font-size: 14.8px;
  color: var(--ink-dim);
}
.route b {
  color: var(--ink);
  font-weight: 600;
}
.globe-wrap {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 440px;
  margin: 0 auto;
}
.globe-wrap svg {
  width: 100%;
  height: 100%;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  box-shadow: var(--shadow-card);
}
.price-card.featured {
  border-color: var(--blue);
  background: var(--blue-dim);
}
.price-card .ptag {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 6px;
}
.price-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.price-card .punit {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.price-card p.pdesc {
  color: var(--ink-dim);
  font-size: 14.6px;
  margin-bottom: 22px;
}
.price-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
  align-items: flex-start;
}
.price-list svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  flex: none;
  margin-top: 3px;
}

/* ---------- Order ---------- */
.order {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line-soft);
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 760px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
}
.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.order-card .oicon {
  width: 34px;
  height: 34px;
  color: var(--blue);
}
.order-card h3 {
  font-size: 19px;
}
.order-card p {
  color: var(--ink-dim);
  font-size: 14.5px;
}
.order-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ink-faint);
  max-width: 60ch;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-row svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
  margin-top: 3px;
  flex: none;
}
.info-row h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-faint);
  font-weight: 600;
  margin: 0 0 3px;
}
.info-row p,
.info-row a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.social-row a:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.social-row svg {
  width: 18px;
  height: 18px;
}

form.enquiry {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
  background: var(--bg-raised);
  box-shadow: var(--shadow-card);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 13px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.send-choice {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.choice-opt {
  flex: 1;
  min-width: 140px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.8px;
  color: var(--ink-dim);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.choice-opt input {
  accent-color: var(--green);
}
.choice-opt.active {
  border-color: var(--green);
  color: var(--ink);
  background: var(--green-dim);
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 12px;
}

/* ---------- Footer ---------- */
footer {
  padding: 56px 0 calc(34px + env(safe-area-inset-bottom, 0px));
  background: var(--bg-panel);
  border-top: 1px solid var(--line-soft);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.foot-brand p {
  color: var(--ink-faint);
  font-size: 14px;
  max-width: 38ch;
  margin-top: 12px;
}
footer h5 {
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.3px;
  margin: 0 0 14px;
  font-weight: 600;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14.5px;
}
footer ul a:hover {
  color: var(--blue);
}
.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-faint);
}
