* { box-sizing: border-box; }

:root {
  --bg: #f3efe6;
  --ink: #191714;
  --muted: #70685d;
  --card: #fffaf1;
  --line: #d8d0c3;
  --dark: #171512;
  --gold: #b98a45;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

button, input { font: inherit; }

.hero {
  min-height: 78vh;
  background:
    linear-gradient(rgba(12,10,8,.46), rgba(12,10,8,.66)),
    radial-gradient(circle at 72% 34%, #8b5f32 0, #46301f 32%, #17120e 72%);
  color: white;
  padding: 24px 6vw 80px;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand { letter-spacing: .18em; font-weight: 800; }
.nav-link, .primary-button { text-decoration: none; }
.nav-link { color: white; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 4px; }

.hero-inner { max-width: 850px; margin: 14vh auto 0; }

.eyebrow {
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
}

.hero h1, .section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  margin: 12px 0 18px;
}

.hero h1 { font-size: clamp(3rem, 7vw, 6rem); max-width: 900px; }

.hero-copy, .section-copy {
  color: #e6ded2;
  max-width: 680px;
  line-height: 1.7;
  font-size: 1.06rem;
}

.primary-button {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 22px;
  background: var(--gold);
  color: white;
  border-radius: 999px;
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 6vw;
}

.section h2 { font-size: clamp(2.3rem, 5vw, 4.2rem); }

.intro { text-align: center; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.option-card,
.segmented button,
.whiskey-card,
.bottle-choice {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  color: var(--ink);
  cursor: pointer;
  transition: .2s ease;
}

.option-card {
  padding: 22px 12px;
  border-radius: 14px;
  font-weight: 750;
}

.option-card:hover,
.segmented button:hover,
.option-card.active,
.segmented button.active {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.designer {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  align-items: center;
  background: var(--card);
  border-radius: 28px;
  margin-bottom: 50px;
}

.control-group { margin: 28px 0; }
.control-group > label { display: block; font-weight: 800; margin-bottom: 11px; }

.segmented { display: flex; flex-wrap: wrap; gap: 8px; }
.segmented button { padding: 11px 14px; border-radius: 999px; }

.bottle-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bottle-choice {
  min-height: 116px;
  border-radius: 16px;
  padding: 15px;
  text-align: left;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
}

.bottle-choice strong,
.whiskey-card strong { display: block; }
.bottle-choice small,
.whiskey-card small { display: block; color: var(--muted); line-height: 1.35; margin-top: 4px; }

.bottle-choice:hover,
.bottle-choice.active,
.whiskey-card:hover,
.whiskey-card.active {
  background: #201d19;
  color: white;
  border-color: #201d19;
}

.bottle-choice:hover small,
.bottle-choice.active small,
.whiskey-card:hover small,
.whiskey-card.active small {
  color: #cfc5b6;
}

.mini-bottle {
  position: relative;
  width: 40px;
  height: 72px;
  margin: auto;
  display: block;
}

.mini-bottle::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 20px;
  left: 12px;
  top: 0;
  background: #74502f;
  border-radius: 5px 5px 2px 2px;
}

.mini-bottle::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 52px;
  left: 1px;
  bottom: 0;
  background: linear-gradient(90deg,#392518,#8a5b32 48%,#3b2619);
  border-radius: 9px 9px 7px 7px;
  border: 1px solid rgba(255,255,255,.28);
}

.mini-bottle.heritage::after { width: 44px; left: -2px; border-radius: 13px 13px 8px 8px; }
.mini-bottle.elegant { height: 78px; }
.mini-bottle.elegant::before { height: 27px; }
.mini-bottle.elegant::after { height: 54px; width: 34px; left: 3px; border-radius: 10px 10px 6px 6px; }
.mini-bottle.faceted::after { clip-path: polygon(13% 0,87% 0,100% 16%,94% 100%,6% 100%,0 16%); border-radius: 0; }
.mini-bottle.embossed::after { border-radius: 10px; box-shadow: inset 0 0 0 3px rgba(255,255,255,.09); }
.mini-bottle.embossed i {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  left: 11px;
  top: 42px;
}

.whiskey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.whiskey-card {
  border-radius: 14px;
  padding: 14px 10px;
  text-align: left;
  min-height: 92px;
}

input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.preview-area {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preview-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--muted);
}

.preview-heading strong { color: var(--gold); }

.bottle {
  width: 220px;
  position: relative;
  transition: .3s ease;
  filter: drop-shadow(0 28px 20px rgba(0,0,0,.18));
}

.bottle-cap {
  width: 56px;
  height: 17px;
  margin: 0 auto;
  background: linear-gradient(90deg,#15110d,#4b3928,#15110d);
  border-radius: 5px 5px 2px 2px;
}

.bottle-neck {
  width: 70px;
  height: 78px;
  margin: 0 auto;
  background: linear-gradient(90deg,#2b1d12,#664421 50%,#2a1d12);
}

.bottle-shoulders {
  width: 100%;
  height: 48px;
  margin-top: -1px;
  background: linear-gradient(90deg,#24170e,#6a4525 45%,#352014);
  clip-path: polygon(32% 0,68% 0,100% 100%,0 100%);
}

.bottle-body {
  height: 315px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,#24170e,#6a4525 45%,#352014);
  border: 4px solid rgba(255,255,255,.1);
  border-top: 0;
  border-radius: 0 0 22px 22px;
}

.liquid {
  position: absolute;
  inset: 42px 0 0;
  opacity: .72;
  background: linear-gradient(90deg,#744014,#c87724 45%,#7d4517);
}

.bottle.caramel .liquid { background: linear-gradient(90deg,#6f3f17,#b86c25 45%,#78451b); }
.bottle.smoky .liquid { background: linear-gradient(90deg,#4a2d19,#7d4b26 45%,#51301b); }
.bottle.funky .liquid { background: linear-gradient(90deg,#6b3b18,#a86628 45%,#6b3c18); }
.bottle.spicy .liquid { background: linear-gradient(90deg,#7a3518,#b95d23 45%,#7d3819); }

.glass-detail {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.label-preview {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 88px;
  min-height: 145px;
  background: #efe4cc;
  color: #1f1913;
  border: 2px solid #8b6f45;
  padding: 17px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 7px;
  z-index: 3;
}

.label-preview strong { font-family: Georgia, serif; font-size: 1.35rem; }
.small-label { font-size: .62rem; letter-spacing: .15em; font-weight: 900; }
.label-preview span:last-child { font-size: .7rem; color: #6d604f; }

.bottle.faceted .bottle-shoulders {
  clip-path: polygon(36% 0,64% 0,90% 37%,100% 100%,0 100%,10% 37%);
}
.bottle.faceted .bottle-body {
  clip-path: polygon(0 0,100% 0,95% 100%,5% 100%);
  border-radius: 0 0 16px 16px;
}
.bottle.faceted .glass-detail {
  background:
    linear-gradient(78deg, transparent 0 24%, rgba(255,255,255,.08) 25% 27%, transparent 28% 100%),
    linear-gradient(102deg, transparent 0 70%, rgba(255,255,255,.07) 71% 73%, transparent 74% 100%);
}

.bottle.heritage { width: 245px; }
.bottle.heritage .bottle-neck { width: 74px; height: 64px; }
.bottle.heritage .bottle-shoulders {
  height: 56px;
  clip-path: polygon(30% 0,70% 0,96% 60%,100% 100%,0 100%,4% 60%);
}
.bottle.heritage .bottle-body { height: 300px; border-radius: 0 0 34px 34px; }

.bottle.elegant { width: 190px; }
.bottle.elegant .bottle-neck { width: 58px; height: 112px; }
.bottle.elegant .bottle-cap { width: 48px; }
.bottle.elegant .bottle-shoulders { height: 54px; clip-path: polygon(35% 0,65% 0,100% 100%,0 100%); }
.bottle.elegant .bottle-body { height: 355px; border-radius: 0 0 20px 20px; }

.bottle.embossed { width: 225px; }
.bottle.embossed .bottle-body { border-radius: 0 0 28px 28px; }
.bottle.embossed .glass-detail::before,
.bottle.embossed .glass-detail::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  z-index: 2;
}
.bottle.embossed .glass-detail::before { width: 170px; height: 170px; left: 23px; top: 72px; }
.bottle.embossed .glass-detail::after { width: 118px; height: 118px; left: 49px; top: 98px; }

.preview-size { font-weight: 850; margin: 18px 0 2px; }
.preview-bottle-name { margin: 0; color: var(--muted); }

.pricing { text-align: center; }
.pricing .section-copy { color: var(--muted); margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 18px;
}

.price-card strong {
  display: block;
  font-size: 2rem;
  font-family: Georgia, serif;
  margin: 10px 0;
}

.price-card small { color: var(--muted); }

.quote {
  background: var(--dark);
  color: white;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 90px;
}

.quote h2 { margin-bottom: 12px; }
.quote p { color: #bbb1a3; }

footer {
  padding: 48px 6vw;
  text-align: center;
  background: #0f0e0c;
  color: #e9e1d6;
}

footer p, footer small { color: #91887c; }

@media (max-width: 980px) {
  .designer { grid-template-columns: 1fr; }
  .preview-area { min-height: 560px; }
  .whiskey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  .option-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .quote { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .bottle-choice-grid { grid-template-columns: 1fr; }
  .whiskey-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero { min-height: 70vh; }
  .option-grid, .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 65px 5vw; }
  .designer { border-radius: 0; }
}


.quote-form-section {
  align-items: stretch;
}

.quote-intro {
  flex: 0 1 42%;
}

.quote-form {
  flex: 1 1 520px;
  display: grid;
  gap: 14px;
  background: #24211d;
  padding: 24px;
  border-radius: 18px;
}

.quote-form label {
  display: block;
  margin-bottom: 7px;
  color: #f3eadc;
  font-size: .88rem;
  font-weight: 750;
}

.quote-form label span {
  color: #968c80;
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #4c463f;
  background: #171512;
  color: white;
  border-radius: 11px;
  padding: 12px 13px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
  min-height: 105px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.submit-button:disabled {
  opacity: .65;
  cursor: wait;
}

.quote-status {
  margin: 0;
  min-height: 1.2em;
  color: #d9c8aa !important;
  font-size: .9rem;
}

@media (max-width: 680px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
