/* ===================================================================
   Swizzle Bar & Co — styles
   Palette: warm ink + cream + brass accent. Display serif + geometric sans.
   =================================================================== */

:root {
  --ink: #1c1814;
  --ink-soft: #3c352d;
  --cream: #f6f1e8;
  --cream-deep: #efe7d8;
  --paper: #fffdf9;
  --brass: #b0824a;
  --brass-deep: #8a6233;
  --muted: #7c7264;
  --line: #e7ddcd;
  --line-soft: #f0e8da;

  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 48px);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans:
    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(28, 24, 20, 0.06);
  --shadow-md: 0 14px 40px rgba(28, 24, 20, 0.1);
  --shadow-lg: 0 30px 70px rgba(28, 24, 20, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

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

/* ---------- Type ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0.2px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 1.1rem;
}
.eyebrow-light {
  color: #e9d4b3;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}
.section-intro,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56ch;
}
.lead {
  color: var(--ink-soft);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 68px);
}
.section-head.center .section-intro {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brass);
  color: #fff;
  box-shadow: 0 8px 24px rgba(176, 130, 74, 0.32);
}
.btn-primary:hover {
  background: var(--brass-deep);
  box-shadow: 0 12px 30px rgba(138, 98, 51, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
}

.btn-sm {
  padding: 0.72rem 1.35rem;
  font-size: 0.74rem;
}
.btn-block {
  width: 100%;
  padding-block: 1.15rem;
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
  padding: 0.5rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand-logo {
  height: 46px;
  width: auto;
  transition:
    filter 0.4s var(--ease),
    height 0.4s var(--ease);
}
/* logo is black artwork → render white while header is transparent over the dark hero */
.site-header:not(.scrolled) .brand-logo {
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}
.nav-link:hover::after {
  width: 100%;
}

.site-header.scrolled {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .nav-link {
  color: var(--ink-soft);
}
.site-header.scrolled .nav-link:hover {
  color: var(--brass-deep);
}

.nav-cta {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-header.scrolled .nav-cta {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
  box-shadow: 0 8px 22px rgba(176, 130, 74, 0.3);
}
.site-header.scrolled .nav-cta:hover {
  background: var(--brass-deep);
}

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s var(--ease),
    background 0.35s var(--ease);
}
.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}
.nav-open .nav-toggle span {
  background: var(--ink);
}
.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/img/cocktails.jpg") center/cover no-repeat;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 16, 12, 0.55) 0%,
      rgba(20, 16, 12, 0.35) 40%,
      rgba(20, 16, 12, 0.72) 100%
    ),
    radial-gradient(
      120% 100% at 20% 30%,
      rgba(20, 16, 12, 0.15),
      rgba(20, 16, 12, 0.65)
    );
}
.hero-content {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 760px;
}
.hero-title {
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.4rem;
  letter-spacing: 0.5px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 50ch;
  margin: 0 0 2.4rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateY(12px);
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ===================================================================
   VALUES STRIP
   =================================================================== */
.strip {
  background: var(--ink);
  color: #fff;
  padding: clamp(48px, 6vw, 76px) 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.strip-item {
  position: relative;
  padding-left: 0;
}
.strip-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brass);
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}
.strip-item h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.strip-item p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  margin: 0;
  max-width: 32ch;
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--paper);
  outline: 1px solid var(--line);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-size: 1.7rem;
}
.team-role {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0.2rem 0 0.8rem;
  font-weight: 500;
}
.team-card p {
  font-size: 0.96rem;
  margin: 0 0 0.7rem;
  color: var(--muted);
}
.team-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem !important;
  color: var(--ink) !important;
  margin: 0.8rem 0 0 !important;
}

.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.2;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--brass);
  color: #fff;
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
}
.about-badge span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  margin: 2px 0;
}

/* ===================================================================
   PACKAGES
   =================================================================== */
.packages {
  background: var(--paper);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem 1.9rem;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass);
}
.pkg-featured {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.pkg-featured h3,
.pkg-featured .pkg-price {
  color: #fff;
}
.pkg-featured .pkg-list li {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}
.pkg-featured .pkg-list li::before {
  color: var(--brass);
}

.pkg-flag {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: var(--brass);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
}
.pkg-head {
  margin-bottom: 1.5rem;
}
.pkg-head h3 {
  font-size: 1.9rem;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--ink);
  margin: 0.4rem 0 0;
  font-weight: 600;
  line-height: 1;
}
.pkg-price span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.pkg-price small {
  font-size: 1rem;
  color: var(--muted);
}
.pkg-featured .pkg-price small {
  color: rgba(255, 255, 255, 0.6);
}
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  flex: 1;
}
.pkg-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.7rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pkg-list li:last-child {
  border-bottom: 0;
}
.pkg-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 0.8rem;
  top: 0.85rem;
}
.pkg-btn {
  margin-top: auto;
}

.addons {
  margin-top: 2.6rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem clamp(1.5rem, 4vw, 2.6rem);
}
.addons h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 1.2rem;
  font-weight: 500;
}
.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
}
.addon-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
}
.addon-list span {
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.addon-list b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brass-deep);
  font-weight: 600;
  white-space: nowrap;
}
.addon-list small {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 400;
}

.pkg-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 2rem auto 0;
  font-style: italic;
}

/* ===================================================================
   FEATURE / QUOTE BAND
   =================================================================== */
.feature {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.feature-media {
  position: absolute;
  inset: 0;
  background: url("assets/img/cocktails.jpg") center/cover no-repeat;
  filter: saturate(1.05);
}
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 16, 12, 0.78),
    rgba(20, 16, 12, 0.86)
  );
}
.feature-content {
  position: relative;
  max-width: 760px;
}
.feature-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  font-style: italic;
  line-height: 1.3;
  margin: 0 0 2rem;
  color: #fff;
  font-weight: 400;
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li > span:first-child {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-list a,
.contact-val,
.contact-social {
  font-size: 1.15rem;
  color: var(--ink);
  font-family: var(--font-display);
}
.contact-list a:hover {
  color: var(--brass-deep);
}
.contact-social a {
  font-size: 1.15rem;
}

.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: block;
  margin-bottom: 1.1rem;
}
.field > span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #b6ab99;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(176, 130, 74, 0.14);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-status {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.ok {
  color: #2e7d52;
}
.form-status.err {
  color: #b23b3b;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 8vw, 84px) 0 2.4rem;
  text-align: center;
}
.footer-logo {
  height: 52px;
  margin: 0 auto 1.4rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.6rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}
.footer-social a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s var(--ease);
}
.footer-social a:hover {
  color: var(--brass);
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    order: -1;
    max-width: 460px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
  .addon-list {
    grid-template-columns: 1fr;
  }
  .strip-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }
  .strip-item p {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  /* mobile nav */
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-open .nav {
    transform: translateX(0);
  }
  .nav-link {
    color: var(--ink-soft) !important;
    font-size: 1.05rem;
  }
  .nav-cta {
    color: #fff !important;
    background: var(--brass);
    border-color: var(--brass);
    margin-top: 0.5rem;
  }
  body.nav-open {
    overflow: hidden;
  }

  .team {
    grid-template-columns: 1fr;
  }
  .about-badge {
    width: 96px;
    height: 96px;
    left: auto;
    right: -10px;
    bottom: -18px;
  }
  .hero-actions .btn {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-media {
    transform: none;
  }
}

/* ===================================================================
   MOBILE INPUT ZOOM GUARD
   iOS Safari auto-zooms when a focused input is < 16px. Pin to 16px
   on small screens so tapping a field never jolts the layout.
   =================================================================== */
@media (max-width: 760px) {
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
}
