:root {
  --forest: #233b27;
  --leaf: #5f7d3c;
  --moss: #8a9b58;
  --honey: #d8941f;
  --wax: #f1c45b;
  --cream: #fff8e7;
  --paper: #fffdf6;
  --earth: #4a3324;
  --berry: #9c392f;
  --muted: #6d6255;
  --line: rgba(74, 51, 36, 0.16);
  --shadow: 0 22px 60px rgba(42, 30, 18, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--earth);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  color: var(--wax);
  font-weight: 900;
}

.brand-logo {
  width: 72px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}

.brand strong {
  display: block;
  color: var(--forest);
  font-size: 24px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 700;
}

.nav-group {
  position: relative;
}

.nav-group > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 8px;
}

.nav-group:hover > a,
.nav-group:focus-within > a {
  background: var(--cream);
  color: var(--honey);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--earth);
  font-weight: 600;
}

.nav-menu a:hover {
  background: var(--cream);
  color: var(--forest);
}

.dropdown {
  position: relative;
}

.dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.dropdown summary::-webkit-details-marker {
  display: none;
}

.dropdown summary::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.dropdown[open] summary,
.dropdown summary:hover {
  background: var(--cream);
  color: var(--honey);
}

.dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  min-width: 245px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--earth);
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--forest);
}

.nav-cart {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  font-weight: 700;
  font-size: 15px;
  transition: all 0.18s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav-cart:hover {
  background: linear-gradient(135deg, var(--leaf), var(--moss));
  transform: scale(1.05);
}

.nav-cart span {
  font-size: 13px;
  opacity: 0.9;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
  min-height: calc(100vh - 81px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 6vw, 82px);
  background:
    radial-gradient(circle at 92% 14%, rgba(216, 148, 31, 0.28), transparent 27%),
    linear-gradient(135deg, #fff7df 0%, #fffdf6 45%, #eef1dc 100%);
}

.hero-copy {
  max-width: 760px;
}

.company-banner {
  width: min(680px, 100%);
  margin-bottom: 26px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(42, 30, 18, 0.08);
}

.page-logo {
  width: min(250px, 74vw);
  margin-bottom: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(42, 30, 18, 0.08);
}

.image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(42, 30, 18, 0.1);
  overflow: hidden;
}

.image-link img {
  max-height: 74px;
  object-fit: contain;
}

.author-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(42, 30, 18, 0.12);
  text-decoration: none;
  color: inherit;
}

.author-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  min-height: 260px;
}

.author-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
}

.author-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}

.hero p {
  max-width: 630px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  background: var(--forest);
  color: #ffffff;
}

.secondary {
  border-color: rgba(35, 59, 39, 0.22);
  background: #ffffff;
  color: var(--forest);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.brand-showcase {
  display: grid;
  gap: 18px;
  width: min(430px, 100%);
  padding: 22px;
  border: 1px solid rgba(35, 59, 39, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.showcase-logo {
  width: 100%;
  border-radius: 8px;
  background: #ffffff;
}

.showcase-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--forest);
  color: #ffffff;
}

.showcase-card h2 {
  color: var(--wax);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.08;
}

.showcase-card p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.showcase-card .eyebrow {
  color: var(--wax);
}

.showcase-more {
  width: 180px;
  justify-self: end;
  border-radius: 8px;
  background: #ffffff;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-links a {
  padding: 28px clamp(20px, 4vw, 46px);
  background: #ffffff;
}

.quick-links strong {
  display: block;
  color: var(--forest);
  font-size: 20px;
}

.quick-links span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.layout-section,
.gallery-section {
  padding: 78px clamp(20px, 6vw, 82px);
}

.muted-section {
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.07;
}

.presentation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 24px;
  align-items: start;
}

.welcome-card,
.newsletter,
.facebook-box,
.info-card,
.service-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(42, 30, 18, 0.08);
}

.welcome-card {
  padding: clamp(24px, 5vw, 46px);
  font-size: 19px;
}

.welcome-card p + p {
  margin-top: 18px;
}

.signature {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.newsletter {
  padding: 24px;
}

.newsletter h3 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 24px;
}

.newsletter label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-row {
  display: flex;
  gap: 8px;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--earth);
  font: inherit;
}

button {
  background: var(--honey);
  color: #ffffff;
}

.facebook-box {
  display: block;
  padding: 24px;
  background: linear-gradient(135deg, #233b27, #315c8a);
  color: #ffffff;
}

.facebook-box span {
  color: var(--wax);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.facebook-box strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.gallery-section {
  background: #18271c;
  color: #ffffff;
}

.gallery-section .section-heading h2 {
  color: #ffffff;
}

.gallery-section .eyebrow {
  color: var(--wax);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf), var(--honey));
  object-fit: cover;
}

.gallery-strip img:first-child {
  grid-row: span 2;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  display: block;
  min-height: 245px;
  padding: 24px;
}

.info-card span {
  color: var(--honey);
  font-weight: 900;
}

.info-card h3 {
  margin-top: 18px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.12;
}

.info-card p {
  margin-top: 12px;
  color: var(--muted);
}

.info-card:hover,
.service-list a:hover,
.quick-links a:hover {
  background: #fff8e7;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.service-list strong {
  color: var(--forest);
  font-size: 24px;
}

.service-list span {
  max-width: 620px;
  color: var(--muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(42, 30, 18, 0.08);
}

.shop-photo {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(135deg, #f1c45b, #fff8e7);
}

.shop-photo span {
  display: grid;
  place-items: center;
  width: 132px;
  height: 148px;
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px 24px 38px 38px;
  background: linear-gradient(#ffd86d, #d8941f);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 24px rgba(74, 51, 36, 0.16);
}

.shop-photo.spring {
  background: linear-gradient(135deg, #f6da70, #dfeabc);
}

.shop-photo.forest {
  background: linear-gradient(135deg, #58723d, #d8941f);
}

.shop-photo.special {
  background: linear-gradient(135deg, #fff8e7, #d8941f);
}

.shop-card-content {
  padding: 24px;
}

.shop-card h2,
.shop-card h3 {
  color: var(--forest);
  font-size: 26px;
  line-height: 1.1;
}

.shop-card p {
  margin-top: 10px;
  color: var(--muted);
}

.product-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-option strong {
  color: var(--forest);
}

.product-option button {
  min-height: 40px;
  padding: 9px 12px;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--honey);
  color: #ffffff;
  font-size: 14px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: start;
}

.cart-layout.single-column {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.cart-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(42, 30, 18, 0.08);
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row h3 {
  color: var(--forest);
}

.cart-row p {
  color: var(--muted);
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  min-width: 40px;
  min-height: 40px;
  padding: 8px 10px;
}

.remove-button {
  background: #ffffff;
  border-color: var(--line);
  color: var(--berry);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  color: var(--forest);
  font-size: 26px;
  font-weight: 900;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cart-summary {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--forest);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary span,
.cart-summary p {
  color: var(--muted);
}

.cart-summary p {
  margin: 0;
  font-size: 14px;
}

.order-form {
  display: grid;
  gap: 14px;
}

.order-form label {
  color: var(--forest);
  font-weight: 800;
}

.order-form input,
.order-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--earth);
  font: inherit;
}

.order-form textarea {
  min-height: 120px;
  resize: vertical;
}

.payment-choice {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
}

.payment-choice legend {
  margin-bottom: 2px;
  color: var(--forest);
  font-weight: 800;
}

.payment-choice label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.payment-choice input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.payment-choice strong,
.payment-choice small {
  display: block;
}

.payment-choice small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px clamp(20px, 6vw, 82px);
  background: var(--forest);
  color: #ffffff;
}

.site-footer strong {
  color: var(--wax);
  font-size: 24px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--wax);
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .nav-group {
    flex: 0 0 auto;
  }

  .nav-group > a {
    white-space: nowrap;
  }

  .dropdown-nav {
    flex-wrap: wrap;
    overflow: visible;
  }

  .dropdown {
    flex: 0 0 auto;
  }

  .dropdown summary {
    white-space: nowrap;
  }

  .hero,
  .presentation-grid {
    grid-template-columns: 1fr;
  }

  .quick-links,
  .card-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .main-nav {
    gap: 4px;
    font-size: 14px;
  }

  .nav-group > a {
    min-height: 38px;
    padding: 0 10px;
  }

  .dropdown-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dropdown summary {
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    box-shadow: 0 10px 22px rgba(42, 30, 18, 0.1);
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-links,
  .card-grid,
  .shop-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .product-option,
  .cart-row,
  .cart-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-strip {
    grid-auto-rows: 210px;
  }

  .gallery-strip img:first-child {
    grid-row: span 1;
  }

  .form-row,
  .service-list a,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .service-list a {
    display: block;
  }

  .service-list span {
    display: block;
    margin-top: 8px;
  }
}
