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

:root {
  --brand-primary: #292524;
  --brand-primary-hover: #1c1917;
  --brand-accent: #a3785d;
  --brand-accent-hover: #8b6347;
  --brand-accent-light: #d4b896;
  --brand-surface: #fffcf7;
  --brand-surface-warm: #faf6f0;
  --brand-muted: #8b9a7d;
  --brand-border: #e8e4dc;
  --brand-border-dark: #d4cfc4;
  --text: #1c1917;
  --text-muted: #57534e;
  --text-light: #78716c;
  --white: #ffffff;
  --success: #166534;
  --success-bg: #dcfce7;
  --error: #991b1b;
  --error-bg: #fee2e2;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(41, 37, 36, 0.08);
  --shadow-sm: 0 2px 8px rgba(41, 37, 36, 0.05);
  --shadow-lg: 0 12px 40px rgba(41, 37, 36, 0.12);
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--brand-surface);
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav {
  display: none;
  gap: 36px;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--text);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  box-shadow: var(--shadow);
}

.btn-accent {
  background: var(--brand-accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--brand-accent-hover);
  box-shadow: var(--shadow);
}

.btn-primary:disabled,
.btn-accent:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--brand-surface) 0%, var(--brand-surface-warm) 100%);
}

.hero-container {
  text-align: center;
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.hero-mark {
  display: block;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--brand-primary);
}

.hero-subtitle {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-availability {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-muted);
  background: rgba(139, 154, 125, 0.1);
  border-radius: 100px;
  margin-bottom: 32px;
}

/* Section Divider / Trust Strip */
.section-divider {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--brand-border);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.trust-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--brand-accent);
  border-radius: 50%;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--brand-surface-warm);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-muted);
  background: rgba(139, 154, 125, 0.15);
  border-radius: 100px;
  margin-bottom: 16px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--brand-primary);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials */
.section-testimonials {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--brand-border);
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

.testimonial {
  padding: 28px;
  background: var(--brand-surface);
  border-radius: var(--radius);
  border: 1px solid var(--brand-border);
}

.testimonial p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial cite {
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-light);
}

/* Product Cards */
.product-grid {
  display: grid;
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--brand-accent-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--brand-surface-warm);
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image {
  transform: scale(1.03);
}

.product-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-primary);
}

.product-card-description {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light);
}

.product-card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-accent);
  transition: color var(--transition);
}

.product-card:hover .product-card-cta {
  color: var(--brand-accent-hover);
}

/* Specials Section */
.section-specials {
  background: var(--brand-primary);
  color: var(--white);
}

.section-specials .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--brand-accent-light);
}

.section-specials h2 {
  color: var(--white);
}

.section-specials .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.specials-grid .product-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.specials-grid .product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.specials-grid .product-card h3 {
  color: var(--white);
}

.specials-grid .product-card-description {
  color: rgba(255, 255, 255, 0.7);
}

.specials-grid .product-card-price {
  color: rgba(255, 255, 255, 0.6);
}

.specials-grid .product-card-cta {
  color: var(--brand-accent-light);
}

.special-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  background: var(--brand-accent-light);
  border-radius: 100px;
  margin-bottom: 12px;
}

/* Pull Quote */
.section-quote {
  padding: 80px 0;
  background: var(--brand-surface-warm);
}

.pull-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--brand-primary);
}

/* Story Section */
.section-story {
  background: var(--white);
}

.story-layout {
  max-width: 680px;
}

.story-content .section-eyebrow {
  margin-bottom: 12px;
}

.story-content h2 {
  text-align: left;
  margin-bottom: 32px;
}

.story-lead {
  font-size: 1.1875rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-signature {
  font-weight: 600;
  color: var(--brand-accent);
  margin-top: 32px;
}

/* Fulfillment Section */
.fulfillment-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.fulfillment-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  position: relative;
}

.fulfillment-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-accent);
  border-radius: 50%;
  margin-bottom: 20px;
}

.fulfillment-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--brand-primary);
}

.fulfillment-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.fulfillment-note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 32px;
  background: rgba(139, 154, 125, 0.1);
  border-radius: var(--radius);
}

.fulfillment-note p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.fulfillment-note strong {
  color: var(--text);
}

/* Order Section */
.section-order {
  background: var(--brand-surface-warm);
}

.order-layout {
  display: grid;
  gap: 48px;
}

.order-main .section-header {
  text-align: left;
  margin: 0 0 40px;
  max-width: none;
}

.order-main .section-header h2 {
  text-align: left;
}

.order-form fieldset {
  border: none;
  margin-bottom: 40px;
}

.order-form legend {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-primary);
}

.fieldset-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.fieldset-specials {
  padding: 24px;
  background: rgba(163, 120, 93, 0.08);
  border-radius: var(--radius);
  margin-left: -24px;
  margin-right: -24px;
}

.fieldset-specials legend {
  color: var(--brand-accent);
}

.fieldset-ack {
  margin-bottom: 24px;
}

.fieldset-ack legend {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.required {
  color: var(--brand-accent);
}

.optional {
  font-weight: 400;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(163, 120, 93, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.order-item:hover {
  border-color: var(--brand-border-dark);
}

.order-item:has(input[type="checkbox"]:checked) {
  border-color: var(--brand-accent);
  background: rgba(163, 120, 93, 0.05);
}

.order-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--brand-accent);
  cursor: pointer;
}

.item-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.qty-input {
  width: 70px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9375rem;
  text-align: center;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all var(--transition);
}

.qty-input:disabled {
  background: var(--brand-surface);
  color: var(--text-light);
  cursor: not-allowed;
}

.qty-input:focus {
  outline: none;
  border-color: var(--brand-accent);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition);
}

.checkbox-label:hover {
  border-color: var(--brand-border-dark);
}

.checkbox-label:has(input:checked) {
  border-color: var(--brand-accent);
}

.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--brand-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.order-summary {
  padding: 20px 24px;
  background: rgba(139, 154, 125, 0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.order-summary-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--brand-muted);
  text-align: center;
}

.form-actions {
  text-align: center;
}

.btn-submit {
  width: 100%;
  max-width: 320px;
}

.form-reassurance {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.form-status {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
}

.form-status.success {
  background: var(--success-bg);
  color: var(--success);
}

.form-status.error {
  background: var(--error-bg);
  color: var(--error);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Sidebar */
.order-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
}

.sidebar-card-highlight {
  border-color: var(--brand-accent-light);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--brand-primary);
}

.faq-list dt {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.faq-list dd {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-list dd:last-child {
  margin-bottom: 0;
}

.sidebar-quote {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Social Proof */
.section-social-proof {
  padding: 64px 0;
  background: var(--brand-accent);
  color: var(--white);
  text-align: center;
}

.social-proof-text {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 20px;
}

.social-proof-quotes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.social-proof-quotes span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
}

/* Footer */
.footer {
  padding: 64px 0;
  background: var(--brand-primary);
  color: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  display: grid;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark {
  opacity: 0.9;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-email {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color var(--transition);
}

.footer-email:hover {
  border-color: var(--white);
}

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cottage-notice {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--text-light);
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.modal-close:hover {
  background: var(--brand-surface);
  color: var(--text);
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.modal-image-wrap {
  overflow: hidden;
  background: var(--brand-surface-warm);
}

.modal-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.modal-details {
  padding: 32px;
}

.modal-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--brand-muted);
  border-radius: 100px;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-primary);
}

.modal-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 20px;
}

.modal-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.modal-love {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--brand-muted);
  padding: 16px;
  background: rgba(139, 154, 125, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--brand-primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  opacity: 0;
  transition: all var(--transition);
}

.toast[hidden] {
  display: flex;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.25rem;
  color: var(--success);
}

.toast-text {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Responsive */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fulfillment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-body {
    flex-direction: row;
  }

  .modal-image-wrap {
    width: 260px;
    flex-shrink: 0;
  }

  .modal-image {
    height: 100%;
    min-height: 320px;
  }

  .modal-details {
    flex: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .logo-img {
    height: 44px;
  }

  .hero {
    padding: 120px 0 140px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fulfillment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .order-layout {
    grid-template-columns: 1fr 380px;
    gap: 64px;
  }

  .order-sidebar {
    position: sticky;
    top: 104px;
    align-self: start;
  }

  .fieldset-specials {
    margin-left: 0;
    margin-right: 0;
  }
}
