  :root {
    /* Ultra Pure-aligned palette: deep navy, steel, mist, with warm amber accent */
    --molasses: #13294b;          /* was molasses brown -> deep navy (primary brand) */
    --molasses-deep: #0a1830;     /* deepest navy */
    --slate: #2c4a6e;             /* secondary slate */
    --steel: #5d7896;             /* mid blue-gray */
    --mist: #a8b8c8;              /* light blue-gray */
    --cane: #d4b88a;              /* softened warm tone for badges/highlights */
    --cane-light: #e8d8b8;
    --amber: #c8862d;             /* warm accent (smaller role than before) */
    --amber-bright: #d99a3f;
    --cream: #f7f4ee;             /* warm off-white surface */
    --cream-pale: #fdfbf6;        /* lightest surface */
    --bone: #e4e0d7;              /* warm stone neutral */
    --rule: rgba(19, 41, 75, 0.15);
    --copper: #2c4a6e;
    --leaf: #5d7896;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Manrope', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--molasses);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Paper grain texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: multiply;
  }

  /* ============ TOP UTILITY BAR ============ */
  .utility-bar {
    background: var(--molasses);
    color: var(--cream);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 0;
    position: relative;
    z-index: 10;
  }
  .utility-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
    gap: 2rem;
  }
  .utility-bar a { color: var(--cane); text-decoration: none; font-weight: 500; }
  .utility-bar a:hover { color: var(--cream); }
  .utility-bar .pipe { opacity: 0.4; }

  /* ============ NAVIGATION ============ */
  .nav {
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    padding: 1.25rem 0;
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(245, 237, 225, 0.92);
  }
  .nav-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--molasses);
    text-decoration: none;
    display: flex; align-items: baseline; gap: 0.4rem;
  }
  .logo-mark {
    width: 36px; height: 36px;
    display: inline-block;
    align-self: center;
  }
  .logo sup {
    font-size: 0.55rem; font-family: var(--sans); font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--amber);
  }
  .nav-links {
    display: flex; gap: 2.2rem; list-style: none; align-items: center;
  }
  .nav-links a {
    color: var(--molasses); text-decoration: none;
    font-size: 0.92rem; font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 0; height: 1px; background: var(--amber);
    transition: width 0.3s;
  }

.nav-links li:last-child a{
	color:#f7f4ee !important; text-decoration: none;
}

.nav-links li:last-child a::after{
	background:none !important;
}
  .nav-links a:hover { color: var(--amber); }
  .nav-links a:hover::after { width: 100%; }
  .btn-primary {
    background: var(--molasses); color: var(--cream);
    padding: 0.75rem 1.5rem; border-radius: 999px;
    text-decoration: none; font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1px solid var(--molasses);
  }
  .btn-primary:hover {
    background: var(--amber); border-color: var(--amber);
    color: var(--cream); transform: translateY(-1px);
  }
  .btn-outline {
    background: transparent; color: var(--molasses);
    padding: 0.75rem 1.5rem; border-radius: 999px;
    text-decoration: none; font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid var(--molasses);
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-outline:hover {
    background: var(--molasses); color: var(--cream);
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    padding: 6rem 2rem 5rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-pale) 100%);
  }
  .hero-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem;
    align-items: center;
    position: relative;
  }
  .eyebrow {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--amber);
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .eyebrow::before {
    content: ''; width: 30px; height: 1px; background: var(--amber);
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 1.75rem;
    color: var(--molasses);
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--amber);
  }
  .hero-lede {
    font-size: 1.18rem; line-height: 1.55;
    color: var(--molasses);
    opacity: 0.82;
    max-width: 540px;
    margin-bottom: 2.25rem;
    font-weight: 400;
  }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
  .hero-stats {
    display: flex; gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--molasses);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat-num em { color: var(--amber); font-style: normal; }
  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--molasses);
    opacity: 0.6;
    margin-top: 0.5rem;
    font-weight: 600;
  }

  /* Hero visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 480px;
    margin-left: auto;
  }
  .hero-can {
    width: 100%; height: 100%;
    position: relative;
  }
  .hero-can svg { width: 100%; height: 100%; }
  .hero-badge {
    position: absolute;
    background: var(--molasses); color: var(--cream);
    border-radius: 50%;
    width: 130px; height: 130px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 0.88rem; line-height: 1.2;
    text-align: center;
    padding: 0 1rem;
    top: 4%; right: -3%;
    transform: rotate(-12deg);
    z-index: 2;
    box-shadow: 0 12px 30px rgba(42,24,16,0.25);
  }
  .hero-badge strong {
    display: block; font-weight: 700;
    color: var(--cane);
    font-size: 1.05rem;
  }

  /* ============ MARQUEE / TICKER ============ */
  .ticker {
    background: var(--molasses);
    color: var(--cream);
    padding: 1.2rem 0;
    overflow: hidden;
    border-top: 1px solid var(--molasses-deep);
    border-bottom: 1px solid var(--molasses-deep);
  }
  .ticker-track {
    display: flex; gap: 4rem;
    animation: scroll 38s linear infinite;
    white-space: nowrap;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
  }
  .ticker-track span { display: inline-flex; align-items: center; gap: 4rem; }
  .ticker-track .dot { color: var(--amber); font-size: 0.7rem; }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ SECTION BASE ============ */
  section { position: relative; z-index: 2; }
  .section { padding: 7rem 2rem; }
  .section-inner { max-width: 1320px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 820px;
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--amber); font-weight: 300; }
  .section-lede {
    font-size: 1.1rem; max-width: 640px;
    line-height: 1.6; opacity: 0.82;
  }

  /* ============ WHY SUGAR BREW ============ */
  .why {
    background: var(--cream-pale);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }
  .why-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--cream-pale);
    transition: background 0.3s;
    position: relative;
  }
  .why-card:hover {
    background: var(--cream);
  }
  .why-card .num {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--amber);
    font-style: italic;
    margin-bottom: 1.5rem;
    display: block;
  }
  .why-card .icon {
    width: 56px; height: 56px;
    margin-bottom: 1.5rem;
  }
  .why-card h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
  }
  .why-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.82;
  }

  /* ============ SPLIT FEATURE ============ */
  .split {
    background: var(--molasses);
    color: var(--cream);
  }
  .split-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    align-items: stretch;
    max-width: 1500px; margin: 0 auto;
  }
  .split-image {
    background: var(--molasses-deep);
    position: relative;
    min-height: 600px;
    overflow: hidden;
  }
  .split-content { padding: 6rem 5rem; }
  .split .section-title { color: var(--cream); }
  .split .section-eyebrow { color: var(--cane); }
  .split-content p {
    font-size: 1.05rem; line-height: 1.7;
    opacity: 0.82; margin-bottom: 1.25rem; max-width: 540px;
  }
  .split-list {
    list-style: none; margin-top: 2.5rem;
  }
  .split-list li {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(245, 237, 225, 0.12);
    font-size: 1.05rem;
    display: flex; align-items: baseline; gap: 1rem;
  }
  .split-list li::before {
    content: '→'; color: var(--amber); font-weight: 700; flex-shrink: 0;
  }
  .split-list li:last-child { border-bottom: none; }

  /* ============ COMPARISON TABLE ============ */
  .compare {
    background: var(--cream);
  }
  .compare-table {
    margin-top: 4rem;
    border: 1px solid var(--rule);
    background: var(--cream-pale);
    overflow: hidden;
    border-radius: 4px;
  }
  .compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }
  .compare-table thead {
    background: var(--molasses);
    color: var(--cream);
  }
  .compare-table th {
    text-align: left;
    padding: 1.4rem 1.5rem;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .compare-table th:first-child {
    background: var(--molasses-deep);
  }
  .compare-table th.highlight {
    background: var(--amber);
    color: var(--cream);
  }
  .compare-table td {
    padding: 1.3rem 1.5rem;
    border-top: 1px solid var(--rule);
    line-height: 1.4;
  }
  .compare-table td:first-child {
    font-weight: 600;
    background: var(--bone);
    font-size: 0.92rem;
  }
  .compare-table td.highlight {
    background: rgba(184, 114, 44, 0.08);
    font-weight: 500;
    color: var(--molasses);
  }
  .compare-table tr:hover td:not(:first-child) {
    background: rgba(184, 114, 44, 0.05);
  }
  .compare-table tr:hover td.highlight {
    background: rgba(184, 114, 44, 0.14);
  }

  /* ============ PROCESS ============ */
  .process {
    background: var(--cream-pale);
    border-top: 1px solid var(--rule);
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
  }
  .process-step {
    text-align: left;
    position: relative;
  }
  .process-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--amber);
    font-style: italic;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
  }
  .process-step h4 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }
  .process-step p {
    font-size: 0.92rem; line-height: 1.5; opacity: 0.78;
  }

  /* ============ USE CASES ============ */
  .use-cases { background: var(--cream); }
  .use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .use-card {
    background: var(--cream-pale);
    border: 1px solid var(--rule);
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .use-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(42, 24, 16, 0.1);
  }
  .use-card-visual {
    height: 200px;
    background: var(--molasses);
    position: relative;
    overflow: hidden;
  }
  .use-card-visual svg { width: 100%; height: 100%; display: block; }
  .use-card-body { padding: 1.75rem; }
  .use-card .tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 700;
    margin-bottom: 0.6rem;
  }
  .use-card h4 {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }
  .use-card p { font-size: 0.95rem; line-height: 1.55; opacity: 0.82; }

  /* ============ SPECS ============ */
  .specs {
    background: var(--bone);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .specs-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
    margin-top: 3rem;
    align-items: start;
  }
  .specs-list {
    list-style: none;
  }
  .specs-list li {
    display: flex; justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
  }
  .specs-list li:last-child { border-bottom: none; }
  .specs-list .spec-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.65;
  }
  .specs-list .spec-value {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
  }
  .packaging-card {
    background: var(--cream-pale);
    border: 1px solid var(--rule);
    padding: 2.5rem;
    border-radius: 6px;
  }
  .packaging-card h4 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
  }
  .pkg-option {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .pkg-option:last-of-type { border-bottom: none; }
  .pkg-icon {
    width: 50px; height: 50px;
    background: var(--molasses);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cane);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .pkg-info strong {
    font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
    display: block; margin-bottom: 0.15rem;
  }
  .pkg-info span { font-size: 0.88rem; opacity: 0.7; }

  /* ============ FAQ ============ */
  .faq { background: var(--cream); }
  .faq-list {
    margin-top: 3rem;
    max-width: 900px;
  }
  .faq-item {
    border-top: 1px solid var(--rule);
    padding: 1.8rem 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--rule); }
  .faq-q {
    font-family: var(--serif);
    font-size: 1.4rem; font-weight: 500;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: baseline;
    letter-spacing: -0.01em;
    gap: 2rem;
    list-style: none;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--amber);
    transition: transform 0.3s;
    font-weight: 300;
  }
  details[open] .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    margin-top: 1.2rem; font-size: 1rem; line-height: 1.65;
    opacity: 0.82; max-width: 720px;
  }

  /* ============ CTA ============ */
  .cta-section {
    background: var(--molasses);
    color: var(--cream);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15), transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(184, 114, 44, 0.18), transparent 50%);
    z-index: 0;
  }
  .cta-section > * { position: relative; z-index: 1; }
  .cta-section .section-eyebrow { color: var(--cane); }
  .cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto 2rem;
  }
  .cta-section h2 em { color: var(--amber); font-style: italic; }
  .cta-section p {
    font-size: 1.15rem; opacity: 0.82;
    max-width: 600px; margin: 0 auto 3rem; line-height: 1.6;
  }
  .cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  }
  .cta-section .btn-primary {
    background: var(--amber); border-color: var(--amber);
    padding: 1rem 2.25rem; font-size: 0.95rem;
  }
  .cta-section .btn-primary:hover {
    background: var(--cream); color: var(--molasses); border-color: var(--cream);
  }
  .cta-section .btn-outline {
    border-color: var(--cane); color: var(--cream);
    padding: 1rem 2.25rem; font-size: 0.95rem;
  }
  .cta-section .btn-outline:hover {
    background: var(--cane); color: var(--molasses); border-color: var(--cane);
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--molasses-deep);
    color: var(--cream);
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 2;
  }
  .footer-inner { max-width: 1320px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 237, 225, 0.12);
  }
  .footer-brand .logo {
    color: var(--cream);
    margin-bottom: 1.25rem;
  }
  .footer-brand p {
    font-size: 0.92rem; line-height: 1.6; opacity: 0.72;
    max-width: 320px;
  }
  .footer-col h5 {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cane);
    margin-bottom: 1.25rem;
    font-weight: 700;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.65rem; }
  .footer-col a {
    color: var(--cream); opacity: 0.72;
    text-decoration: none; font-size: 0.92rem;
    transition: opacity 0.2s;
  }
  .footer-col a:hover { opacity: 1; color: var(--amber); }
  .footer-bottom {
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; opacity: 0.6;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom a { color: var(--cream); text-decoration: none; }
  .ultra-pure-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; opacity: 0.7;
  }
  .ultra-pure-tag em { color: var(--amber); font-family: var(--serif); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 380px; margin: 0 auto; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid { grid-template-columns: 1fr; }
    .split-image { min-height: 350px; }
    .split-content { padding: 4rem 2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .use-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-links.mobile-cta-only { display: flex; }
    .nav-links.mobile-cta-only li:not(:last-child) { display: none; }
    .utility-bar { font-size: 0.7rem; }
    .utility-inner .desktop-only { display: none; }
    .hero { padding: 4rem 2rem 3rem; }
    .section { padding: 4.5rem 2rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .stat-num { font-size: 2rem; }
    .compare-table { font-size: 0.82rem; overflow-x: auto; }
    .compare-table th, .compare-table td { padding: 0.9rem 1rem; }
  }
  @media (max-width: 560px) {
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ============ QUOTE FORM (homepage CTA) ============ */
  .quote-form-wrapper {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
    background: rgba(245, 237, 225, 0.04);
    border: 1px solid rgba(245, 237, 225, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    backdrop-filter: blur(4px);
  }
  .quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field-full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--cane);
  }
  .form-field .req { color: var(--amber); }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: rgba(245, 237, 225, 0.95);
    border: 1px solid rgba(245, 237, 225, 0.3);
    color: var(--molasses);
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.4;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
  }
  .form-field textarea {
    resize: vertical;
    min-height: 100px;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(200, 134, 45, 0.25);
  }
  .form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .quote-form-actions {
    margin-top: 1.75rem;
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  }
  .quote-form-actions button {
    background: var(--amber);
    color: var(--cream);
    border: 1px solid var(--amber);
    padding: 1rem 2.25rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.25s;
  }
  .quote-form-actions button:hover:not(:disabled) {
    background: var(--cream);
    color: var(--molasses);
    border-color: var(--cream);
    transform: translateY(-1px);
  }
  .quote-form-actions button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .quote-form-message {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 1.25rem;
  }
  .quote-form-message.success {
    color: var(--cane);
    background: rgba(212, 184, 138, 0.12);
    padding: 0.9rem 1.1rem;
    border-radius: 4px;
    border-left: 3px solid var(--amber);
  }
  .quote-form-message.error {
    color: #ffb4a8;
    background: rgba(255, 100, 80, 0.12);
    padding: 0.9rem 1.1rem;
    border-radius: 4px;
    border-left: 3px solid #d4523a;
  }

  @media (max-width: 700px) {
    .quote-form-wrapper { padding: 1.75rem; }
    .quote-form-grid { grid-template-columns: 1fr; }
    .quote-form-actions { flex-direction: column; align-items: stretch; }
    .quote-form-actions .btn-outline { text-align: center; }
  }
