@font-face {
  font-family: "Cinzel";
  src: url("../fonts/Cinzel-400.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-400.woff2") format("woff2"),
       url("../fonts/CormorantGaramond-400.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit.woff2") format("woff2"),
       url("../fonts/Outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory: #f6f1e8;
  --ivory-2: #efe7d8;
  --cream: #fbf8f2;
  --beige: #e4d8c4;
  --sand: #cbb89a;
  --champagne: #c4a574;
  --gold: #b08a4f;
  --gold-bright: #d4af77;
  --gold-line: rgba(196, 165, 116, 0.45);
  --charcoal: #1b1916;
  --ink: #26231f;
  --taupe: #8a7d6e;
  --muted: #6d645a;
  --line: rgba(27, 25, 22, 0.1);
  --shadow: 0 24px 60px rgba(27, 25, 22, 0.12);
  --radius: 2px;
  --header: 100px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }
.skip {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 10px 16px;
  z-index: 200;
}
.skip:focus { top: 12px; }

.eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--charcoal);
}
h1 { font-size: clamp(42px, 6.4vw, 88px); }
h2 { font-size: clamp(34px, 4.4vw, 56px); }
h3 { font-size: clamp(24px, 2.4vw, 34px); }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); max-width: 58ch; }
.gold-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  border: 0;
  margin: 22px 0;
}
.gold-rule.center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  width: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.btn-gold {
  background: linear-gradient(180deg, #d8bc86 0%, #b08a4f 100%);
  color: var(--charcoal);
  border-color: #c4a574;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(176, 138, 79, 0.35); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: var(--ivory); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }
.btn-outline-gold { border-color: var(--champagne); color: var(--gold); }
.btn-outline-gold:hover { background: var(--charcoal); color: var(--gold-bright); border-color: var(--charcoal); }
.btn-full { width: 100%; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.wrap-wide { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 110px 0; position: relative; z-index: 1; }
.section-tight { padding: 80px 0; position: relative; z-index: 1; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.mast { position: sticky; top: 0; z-index: 90; }
.topbar {
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: nowrap; }
.topbar .tb-left, .topbar .tb-right { white-space: nowrap; opacity: 0.88; }
.topbar a { color: var(--gold-bright); }
.site-header {
  position: relative;
  z-index: 80;
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header); gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; line-height: 1; flex-shrink: 0; }
.logo-mark, .logo-lockup { width: auto; height: 78px; display: block; background: transparent; }
.logo-text { display: flex; flex-direction: column; align-items: flex-start; }
.logo .word { font-family: "Cinzel", serif; font-size: 16px; letter-spacing: 0.28em; color: var(--charcoal); font-weight: 500; }
.logo .sub { font-family: "Outfit", sans-serif; font-size: 9px; letter-spacing: 0.42em; color: var(--gold); margin-top: 6px; display: block; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .drop > button {
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 12px;
  cursor: pointer;
  position: relative;
}
.nav > a::after, .nav .drop > button::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav > a:hover::after, .nav > a.active::after, .nav .drop:hover > button::after { transform: scaleX(1); }
.drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.28s var(--ease);
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { opacity: 1; pointer-events: auto; transform: none; }
.drop-menu a { display: block; padding: 10px 22px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.drop-menu a:hover { color: var(--charcoal); background: var(--ivory-2); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { min-height: 42px; padding: 0 16px; font-size: 10px; }
.icon-btn, .wa-float {
  border: 0;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
}
.icon-btn { width: 44px; height: 44px; }
.icon-btn:hover, .wa-float:hover { background: #1ebe5d; color: #fff; }
.icon-btn svg { width: 22px; height: 22px; fill: currentColor; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; background: var(--charcoal); margin: 7px 0; transition: 0.3s; }

.hero, .page-hero, .cta-band { position: relative; overflow: hidden; color: var(--ivory); }
.hero { min-height: 86vh; display: grid; place-items: end stretch; }
.hero-media, .page-hero img, .cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: ken 22s var(--ease) infinite alternate; }
@keyframes ken { to { transform: scale(1.14); } }
.hero-media::after, .page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,25,22,0.18) 0%, rgba(27,25,22,0.28) 40%, rgba(27,25,22,0.72) 100%), linear-gradient(90deg, rgba(27,25,22,0.35), transparent 55%); }
.hero-content, .page-hero .wrap { position: relative; z-index: 2; }
.hero-content { padding: 0 0 90px; }
.hero h1, .page-hero h1, .cta-band h2 { color: var(--ivory); }
.hero h1 { max-width: 14ch; }
.hero .lead, .cta-band .lead { color: rgba(246, 241, 232, 0.82); }
.hero .lead { margin: 8px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { margin-top: 40px; display: flex; gap: 36px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,241,232,0.7); }
.hero-meta b { display: block; color: var(--gold-bright); font-weight: 500; margin-bottom: 4px; font-size: 13px; letter-spacing: 0.08em; text-transform: none; }
.reveal { opacity: 0; transform: translateY(28px); animation: rise 0.9s var(--ease) forwards; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.22s; } .d3 { animation-delay: 0.34s; } .d4 { animation-delay: 0.46s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.page-hero { min-height: 42vh; display: grid; place-items: end stretch; }
.page-hero .wrap { padding-bottom: 56px; }
.cta-band { min-height: 360px; display: grid; place-items: center; text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(27,25,22,0.62); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band .lead { margin: 12px auto 28px; }

.collection-card, .product-card, .swatch, .t-card, .form { border-radius: var(--radius); }
.tri-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.collection-card { position: relative; min-height: 460px; overflow: hidden; display: flex; align-items: flex-end; color: var(--ivory); }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.collection-card:hover img { transform: scale(1.07); }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(27,25,22,0.78)); }
.collection-card .copy { position: relative; z-index: 1; padding: 32px; }
.collection-card h3 { color: var(--ivory); margin: 8px 0 10px; }
.collection-card p { color: rgba(246,241,232,0.78); font-size: 14px; margin-bottom: 16px; }
.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.intro-visual { position: relative; }
.intro-visual img { width: 100%; height: 560px; object-fit: cover; }
.intro-visual .frame { position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--champagne); pointer-events: none; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat b { display: block; font-family: "Cormorant Garamond", serif; font-size: 36px; color: var(--charcoal); font-weight: 500; }
.stat span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }
.toolbar { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); background: transparent; padding: 8px 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; color: var(--muted); }
.chip.active, .chip:hover { border-color: var(--gold); color: var(--charcoal); }
.band { background: var(--ivory-2); position: relative; z-index: 2; padding: 100px 0; }
.swatch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.swatch { display: block; background: #fff; border: 1px solid var(--line); min-width: 0; }
.swatch .swatch-img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ivory-2); }
.swatch img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.swatch:hover img { transform: scale(1.06); }
.swatch figcaption { padding: 14px 14px 16px; }
.swatch .name { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--charcoal); display: block; }
.swatch .origin { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.process { background: var(--charcoal); color: var(--ivory); }
.process h2, .process h3 { color: var(--ivory); }
.process .lead { color: rgba(246,241,232,0.7); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: "Cormorant Garamond", serif; font-size: 42px; color: var(--gold-bright); display: block; margin-bottom: 12px; }
.step p { color: rgba(246,241,232,0.68); font-size: 14.5px; margin-top: 8px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.t-card { background: #fff; border: 1px solid var(--line); padding: 32px 28px; }
.t-card p { color: var(--ink); font-size: 15px; margin: 14px 0 22px; }
.t-card .who { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.stars { display: inline-flex; gap: 3px; color: var(--gold); letter-spacing: 0; font-size: 18px; line-height: 1; }
.rating-hero { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 8px 0 36px; }
.rating-hero .big { font-family: "Cormorant Garamond", serif; font-size: 56px; line-height: 1; }
.rating-hero .stars { font-size: 22px; }
.review-form { background: #fff; border: 1px solid var(--line); padding: 28px; margin-top: 36px; text-align: left; }
.star-pick { display: flex; gap: 6px; flex-wrap: wrap; }
.star-pick button { width: 42px; height: 42px; border: 1px solid var(--line); background: var(--cream); cursor: pointer; font-size: 20px; color: #d8d0c3; }
.star-pick button.on { color: var(--gold); border-color: var(--gold); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); background: var(--cream); color: var(--charcoal); padding: 14px; font-size: 15px; outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin: 10px 0 18px; }
.pd { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.pd-gallery img { width: 100%; height: 640px; object-fit: cover; }
.pd .lead { margin: 12px 0 24px; }
.spec { margin: 28px 0; border-top: 1px solid var(--line); }
.spec div { display: grid; grid-template-columns: 160px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec dt { letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; color: var(--taupe); padding-top: 4px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 24px; align-items: start; }
.product-card { background: var(--cream); display: flex; flex-direction: column; min-width: 0; position: relative; z-index: 1; }
.product-card .thumb { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ivory-2); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .badge { position: absolute; top: 16px; left: 16px; background: rgba(251,248,242,0.92); color: var(--charcoal); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 10px; }
.product-card .meta { padding: 18px 2px 0; display: flex; flex-direction: column; gap: 8px; }
.product-card h3 { font-size: 26px; }
.product-card p { color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.card-actions .btn { min-height: 42px; padding: 0 10px; font-size: 10px; letter-spacing: 0.12em; width: 100%; }

.site-footer { background: var(--charcoal); color: rgba(246,241,232,0.72); padding: 72px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-footer .logo-lockup { height: 96px; }
.site-footer .logo { align-items: flex-start; }
.site-footer h4 { font-family: "Outfit", sans-serif; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; font-weight: 500; }
.site-footer a { display: block; padding: 4px 0; color: rgba(246,241,232,0.72); }
.site-footer a:hover { color: var(--ivory); }
.legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: 12px; letter-spacing: 0.08em; }
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 62px; height: 62px; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float svg { width: 34px; height: 34px; fill: #fff; display: block; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1040px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta .hide-sm { display: none; }
  .nav.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; left: 0; right: 0; top: 100%; background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 24px 24px; box-shadow: var(--shadow); }
  .drop-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 12px; background: transparent; }
  .intro-grid, .split, .about-grid, .pd, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .tri-grid, .product-grid, .t-grid, .steps, .swatch-grid { grid-template-columns: 1fr 1fr; }
  .logo-mark, .logo-lockup { height: 64px; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
}
@media (max-width: 700px) {
  .hide-xs { display: none !important; }
  .wrap, .wrap-wide { width: calc(100% - 32px); }
  .section { padding: 72px 0; }
  .topbar .wrap { flex-wrap: wrap; justify-content: center; text-align: center; }
  .topbar .tb-left, .topbar .tb-right { white-space: normal; }
  .tri-grid, .product-grid, .t-grid, .steps, .foot-grid, .two-col { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 56px; }
  .header-cta .btn:not(.btn-staff) { display: none; }
  .header-cta .btn-staff { display: inline-flex; min-height: 36px; padding: 0 12px; font-size: 10px; }
  .logo-mark, .logo-lockup { height: 58px; }
  .swatch-grid, .card-actions { grid-template-columns: 1fr; }
  .collection-card { min-height: 380px; }
  .spec div { grid-template-columns: 1fr; gap: 4px; }
  .intro-visual .frame { right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Form feedback and resilient interactive states */
.success {
  margin-bottom: 20px;
  padding: 13px 15px;
  border-left: 2px solid var(--gold);
  background: var(--ivory-2);
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.5;
}
.success:empty { display: none; }
.field select { width: 100%; border: 1px solid var(--line); background: var(--cream); color: var(--charcoal); padding: 14px; font-size: 15px; outline: none; }
.upload { display: block; border: 1px dashed var(--champagne); background: var(--cream); padding: 16px; cursor: pointer; }
.upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload strong { display: block; color: var(--charcoal); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.upload .hint { color: var(--muted); font-size: 13px; margin-top: 5px; }
.previews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.previews img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); }
:where([hidden]) { display: none !important; }
.nav .drop > button[aria-expanded="true"]::after { transform: scaleX(1); }
.drop-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
@media (max-width: 700px) {
  .topbar { font-size: 10px; }
  .header-inner { min-height: 76px; }
  .header-cta { gap: 6px; }
  .icon-btn { width: 40px; height: 40px; }
  .hero-actions .btn { width: 100%; }
  .previews { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1040px) {
  .nav.open .drop-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height .28s var(--ease), opacity .2s ease, transform .28s var(--ease), padding .28s var(--ease);
  }
  .nav.open .drop-menu.is-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding-bottom: 8px;
  }
}

.required-mark { color: var(--gold); font-size: 14px; }
.success.error { border-left-color: #9c4b3d; background: #f5e8e3; color: #6f2e24; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #9c4b3d; }
.btn:active { transform: scale(.98); }
.btn:disabled { cursor: wait; opacity: .68; transform: none; box-shadow: none; }
.field input, .field select, .field textarea { min-height: 50px; }
.field textarea { min-height: 130px; }
@media (max-width: 700px) {
  .form .btn-full { min-height: 54px; }
  .field input, .field select, .field textarea { font-size: 16px; }
}
