@font-face{
  font-family: "Oceanwide";
  src: url("../fonts/Oceanwide-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Oceanwide";
  src: url("../fonts/Oceanwide-SemiboldOblique.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root{
  --dw-cream: #FFF6ED;
  --dw-paper: #FFFFFF;
  --dw-ink: #2A1A12;
  --dw-muted: rgba(42, 26, 18, .72);
  --dw-dim: rgba(42, 26, 18, .55);

  --dw-orange: #FF9B45;
  --dw-orange-2: #FFB36C;
  --dw-lemon: #FFD36A;
  --dw-mint: #5FD6B2;

  --dw-stroke: rgba(42, 26, 18, .14);
  --dw-shadow: 0 18px 60px rgba(42, 26, 18, .12);
  --dw-radius: 22px;
  --dw-radius-sm: 16px;
  --dw-container: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--dw-ink);
  background:
    radial-gradient(900px 460px at 10% -10%, rgba(255,155,69,.26), transparent 60%),
    radial-gradient(1000px 560px at 90% 0%, rgba(255,211,106,.22), transparent 62%),
    radial-gradient(860px 520px at 50% 110%, rgba(95,214,178,.16), transparent 60%),
    linear-gradient(180deg, var(--dw-cream), #FFFDFB);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width: 100%; height: auto; display:block; }

.dw-container{
  max-width: var(--dw-container);
  margin: 0 auto;
  padding: 0 18px;
}

.dw-top{
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid var(--dw-stroke);
  backdrop-filter: blur(10px);
}
.dw-top__in{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 12px;
  color: var(--dw-muted);
}
.dw-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--dw-stroke);
}
.dw-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--dw-orange), rgba(255,155,69,.25));
  box-shadow: 0 0 0 6px rgba(255,155,69,.18);
}

.dw-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,246,237,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dw-stroke);
}
.dw-header__in{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}
.dw-brand{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.dw-brand__logo{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  padding: 8px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--dw-stroke);
  box-shadow: var(--dw-shadow);
}
.dw-brand__txt{
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  line-height: 1.05;
}
.dw-brand__sub{
  display:block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--dw-dim);
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.dw-nav{
  display:flex;
  align-items:center;
  gap: 8px;
}
.dw-nav a{
  font-size: 13px;
  color: var(--dw-muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.dw-nav a:hover{
  text-decoration:none;
  color: var(--dw-ink);
  background: rgba(255,255,255,.75);
  border-color: var(--dw-stroke);
}

.dw-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
}
.dw-btn{
  appearance:none;
  cursor:pointer;
  border: 1px solid var(--dw-stroke);
  background: rgba(255,255,255,.78);
  color: var(--dw-ink);
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  box-shadow: var(--dw-shadow);
}
.dw-btn:hover{ background: rgba(255,255,255,.92); }
.dw-btn--primary{
  border-color: rgba(255,155,69,.45);
  background: linear-gradient(180deg, rgba(255,155,69,.35), rgba(255,255,255,.86));
}
.dw-btn--primary:hover{
  background: linear-gradient(180deg, rgba(255,155,69,.44), rgba(255,255,255,.92));
}
.dw-btn--ghost{ background: transparent; box-shadow:none; }

.dw-burger{
  display:none;
  width: 44px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--dw-stroke);
  background: rgba(255,255,255,.78);
}
.dw-burger span{
  display:block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: rgba(42, 26, 18, .78);
}

.dw-scrim{
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 18, .45);
  display:none;
  z-index: 80;
}
.dw-scrim[data-open="1"]{ display:block; }
.dw-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100vh;
  background: rgba(255,246,237,.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid var(--dw-stroke);
  box-shadow: -18px 0 70px rgba(42,26,18,.18);
  transform: translateX(104%);
  transition: transform .22s ease;
  z-index: 90;
  padding: 14px;
}
.dw-drawer[data-open="1"]{ transform: translateX(0); }
.dw-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.dw-drawer__title{
  margin: 0;
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}
.dw-drawer__links{
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.dw-drawer__links a{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--dw-stroke);
  background: rgba(255,255,255,.78);
  color: var(--dw-muted);
}
.dw-drawer__links a:hover{
  text-decoration:none;
  color: var(--dw-ink);
  background: rgba(255,255,255,.92);
}

.dw-main{ padding: 24px 0 28px; }
.dw-hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items:stretch;
}
.dw-card{
  background: rgba(255,255,255,.76);
  border: 1px solid var(--dw-stroke);
  border-radius: var(--dw-radius);
  box-shadow: var(--dw-shadow);
}
.dw-card__pad{ padding: 18px; }

.dw-eyebrow{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--dw-stroke);
  color: var(--dw-muted);
  font-size: 12px;
}
.dw-h1{
  margin: 12px 0 8px;
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.06;
}
.dw-h1 em{
  font-style: italic;
  background: linear-gradient(90deg, var(--dw-orange), var(--dw-lemon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dw-lead{ margin:0; color: var(--dw-muted); max-width: 70ch; }
.dw-points{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.dw-point{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: var(--dw-muted);
  font-size: 13px;
}
.dw-point b{ color: var(--dw-ink); font-weight: 600; }
.dw-check{
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(255,155,69,.22);
  border: 1px solid rgba(255,155,69,.35);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.dw-check::before{
  content:"";
  width: 9px;
  height: 5px;
  border-left: 2px solid rgba(42,26,18,.75);
  border-bottom: 2px solid rgba(42,26,18,.75);
  transform: rotate(-45deg);
  margin-top: -1px;
}

.dw-heroMedia{
  border-radius: var(--dw-radius);
  border: 1px dashed rgba(42,26,18,.22);
  background:
    radial-gradient(620px 420px at 20% 10%, rgba(255,155,69,.24), transparent 60%),
    radial-gradient(540px 360px at 90% 0%, rgba(255,211,106,.22), transparent 58%),
    rgba(255,255,255,.56);
  position: relative;
  overflow:hidden;
  min-height: 320px;
}
.dw-heroMedia__img{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dw-section{ margin-top: 14px; }
.dw-section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
  padding: 0 2px;
  margin-bottom: 10px;
}
.dw-h2{
  margin: 0;
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
}
.dw-sub{ margin:0; color: var(--dw-muted); font-size: 13px; }

.dw-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.dw-col-4{ grid-column: span 4; }
.dw-col-6{ grid-column: span 6; }
.dw-col-12{ grid-column: span 12; }

.dw-prod{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items:center;
}
.dw-media{
  width: 140px;
  height: 120px;
  border-radius: 18px;
  border: 1px dashed rgba(42,26,18,.22);
  background: rgba(255,255,255,.72);
  position: relative;
  overflow:hidden;
}
.dw-media__img{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dw-media--fresh{ background: radial-gradient(220px 160px at 30% 20%, rgba(255,155,69,.24), transparent 62%), rgba(255,255,255,.72); }
.dw-media--greens{ background: radial-gradient(220px 160px at 30% 20%, rgba(95,214,178,.22), transparent 62%), rgba(255,255,255,.72); }
.dw-media--citrus{ background: radial-gradient(220px 160px at 30% 20%, rgba(255,211,106,.26), transparent 62%), rgba(255,255,255,.72); }
.dw-media--grape{ background: radial-gradient(220px 160px at 30% 20%, rgba(255,179,108,.24), transparent 62%), rgba(255,255,255,.72); }
.dw-media--garlic{ background: radial-gradient(220px 160px at 30% 20%, rgba(255,155,69,.18), transparent 62%), rgba(255,255,255,.72); }
.dw-media--handy{ background: radial-gradient(220px 160px at 30% 20%, rgba(255,211,106,.18), transparent 62%), rgba(255,255,255,.72); }

.dw-kicker{
  margin: 0 0 6px;
  color: var(--dw-dim);
  font-size: 12px;
}
.dw-title{
  margin: 0;
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}
.dw-list{
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--dw-muted);
  font-size: 13px;
}
.dw-list li{ margin: 6px 0; }

.dw-steps{
  display:grid;
  gap: 12px;
}
.dw-step{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.dw-num{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(255,155,69,.22);
  border: 1px solid rgba(255,155,69,.35);
  display:grid;
  place-items:center;
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
}
.dw-step p{ margin: 0; color: var(--dw-muted); font-size: 13px; }
.dw-step b{ color: var(--dw-ink); }

.dw-form{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dw-field{ display:flex; flex-direction:column; gap: 6px; }
.dw-label{ font-size: 12px; color: var(--dw-dim); }
.dw-input, .dw-select, .dw-textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--dw-stroke);
  background: rgba(255,255,255,.85);
  color: var(--dw-ink);
  padding: 10px 12px;
  font-size: 13px;
}
.dw-textarea{ min-height: 120px; resize: vertical; grid-column: 1 / -1; }
.dw-form__actions{
  grid-column: 1 / -1;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}
.dw-note{ margin: 0; font-size: 12px; color: var(--dw-dim); }

.dw-map{
  margin-top: 12px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--dw-stroke);
  background: rgba(255,255,255,.76);
  min-height: 280px;
}
.dw-map iframe{ width: 100%; height: 100%; border: 0; display:block; min-height: 280px; }

.dw-legal{
  font-size: 13px;
  color: var(--dw-muted);
}
.dw-legal h1{
  margin: 0 0 10px;
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
}
.dw-legal h2{
  margin: 18px 0 8px;
  font-family: Oceanwide, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}
.dw-legal p{ margin: 0 0 10px; }
.dw-legal ul{ margin: 0 0 10px; padding-left: 18px; }
.dw-legal li{ margin: 6px 0; }
.dw-hr{
  border: 0;
  height: 1px;
  background: rgba(42,26,18,.12);
  margin: 14px 0;
}

.dw-footer{
  border-top: 1px solid var(--dw-stroke);
  margin-top: 26px;
  padding: 18px 0 24px;
  color: var(--dw-dim);
  font-size: 12px;
}
.dw-footer__in{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.dw-links{ display:flex; gap: 12px; flex-wrap:wrap; }
.dw-links a{ color: var(--dw-dim); }
.dw-links a:hover{ color: var(--dw-ink); text-decoration: underline; }

@media (max-width: 980px){
  .dw-nav{ display:none; }
  .dw-burger{ display:inline-block; }
  .dw-hero{ grid-template-columns: 1fr; }
  .dw-h1{ font-size: 36px; }
  .dw-col-4{ grid-column: span 12; }
  .dw-col-6{ grid-column: span 12; }
}

@media (max-width: 560px){
  .dw-h1{ font-size: 30px; }
  .dw-prod{ grid-template-columns: 1fr; }
  .dw-media{ width: 100%; height: 150px; }
  .dw-form{ grid-template-columns: 1fr; }
}

