:root {
  --olive: #a6c82b;
  --olive-deep: #7d991f;
  --wood: #d2b28b;
  --wood-light: #ead7bd;
  --sign: #1b1c1e;
  --cream: #f7f1e5;
  --paper: #fffdf8;
  --ink: #1f1c18;
  --muted: #6f675f;
  --line: rgba(123, 153, 31, 0.2);
  --shadow: 0 30px 80px rgba(52, 42, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 12%, rgba(166, 200, 43, 0.22), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(210, 178, 139, 0.22), transparent 22rem),
    linear-gradient(180deg, #fffdf8 0, #f5eee0 48%, #eadbc8 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 253, 248, 0.92);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--olive);
  border-radius: 999px;
  background: var(--sign);
  color: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(166, 200, 43, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--sign);
  font-size: 20px;
}

.brand small {
  color: rgba(31, 28, 24, 0.68);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
}

nav a,
.button {
  border: 1px solid rgba(166, 200, 43, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sign);
  padding: 11px 16px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
.button:hover {
  background: var(--olive);
  color: var(--sign);
}

main {
  width: min(1640px, calc(100% - 34px));
  margin: 0 auto;
  padding: 16px 0 42px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(27, 28, 30, 0.54) 0, rgba(27, 28, 30, 0.28) 42%, rgba(166, 200, 43, 0.08) 100%),
    url("image/unnamed.webp") center 24% / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(255, 253, 248, 0.1), transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: clamp(28px, 5vw, 68px);
  color: var(--cream);
}

.eyebrow,
.tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(166, 200, 43, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--sign);
  padding: 8px 13px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 880px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 78px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.lead,
.muted,
.section p,
footer {
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.hero .lead {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.96);
  font-size: 19px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button.primary {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--sign);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 2;
  width: min(420px, calc(100% - 44px));
  border: 1px solid rgba(210, 178, 139, 0.62);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--sign);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.hero-card img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.hero-card span {
  color: var(--olive-deep);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1;
}

.hero-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--sign);
  padding: 12px 16px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.86);
  padding: clamp(18px, 2.4vw, 30px);
  box-shadow: 0 10px 24px rgba(31, 18, 28, 0.07);
}

.story,
.product-list,
.local-seo,
.feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.story {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.78)),
    radial-gradient(circle at 100% 0, rgba(166, 200, 43, 0.18), transparent 22rem);
}

.gallery {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 241, 229, 0.92)),
    radial-gradient(circle at 100% 0, rgba(210, 178, 139, 0.18), transparent 20rem);
}

.gallery h2,
.gallery .muted {
  color: var(--ink);
}

.gallery-head {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 178, 139, 0.28);
  border-radius: 16px;
  background: #f4ecdf;
}

.gallery-grid figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.intro-grid,
.contact-grid,
.mini-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article,
.contact-grid article,
.product-columns article,
.mini-content article {
  border: 1px solid rgba(166, 200, 43, 0.14);
  border-radius: 16px;
  background: var(--paper);
  padding: 18px;
}

.intro-grid h2,
.intro-grid p,
.contact-grid p,
.mini-content p {
  margin-top: 14px;
}

.mini-content {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.72)),
    radial-gradient(circle at 100% 0, rgba(210, 178, 139, 0.18), transparent 18rem);
}

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

.schedule-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(247, 241, 229, 0.94), rgba(255, 253, 248, 0.84)),
    radial-gradient(circle at 100% 20%, rgba(166, 200, 43, 0.22), transparent 18rem);
}

.schedule {
  display: grid;
  gap: 8px;
}

.schedule div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  border: 1px solid rgba(166, 200, 43, 0.14);
  border-radius: 14px;
  background: var(--paper);
  padding: 11px 14px;
  font-family: Arial, sans-serif;
}

.schedule strong {
  color: var(--olive-deep);
}

.feature {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 241, 229, 0.88)),
    radial-gradient(circle at 100% 0, rgba(166, 200, 43, 0.18), transparent 20rem);
}

.feature h2,
.feature p {
  color: var(--ink);
}

.local-seo {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(255, 253, 248, 0.56)),
    url("image/unnamed.webp") center 28% / cover no-repeat;
}

.local-seo h2,
.local-seo p {
  color: var(--sign);
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.45);
}

.local-seo-content {
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(166, 200, 43, 0.5);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(210, 178, 139, 0.16);
}

.local-seo-content p + p {
  margin-top: 12px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(166, 200, 43, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sign);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.short-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 241, 229, 0.9)),
    radial-gradient(circle at 100% 0, rgba(210, 178, 139, 0.18), transparent 18rem);
}

.short-note p {
  max-width: 900px;
  color: var(--ink);
}

footer {
  width: min(1640px, calc(100% - 34px));
  margin: 0 auto;
  padding: 0 0 36px;
  font-size: 14px;
}

footer p + p {
  margin-top: 8px;
}

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

  nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-card {
    right: 22px;
    left: 22px;
    width: auto;
  }

  .story,
  .product-list,
  .local-seo,
  .feature,
  .schedule-wrap {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .contact-grid,
  .gallery-grid,
  .product-columns,
  .mini-content {
    grid-template-columns: 1fr;
  }

  .short-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  main,
  footer {
    width: calc(100% - 22px);
  }

  .hero {
    min-height: 560px;
    border-radius: 18px;
  }

  .hero-copy,
  .section {
    padding: 22px;
    border-radius: 22px;
  }

  h1 {
    font-size: 44px;
  }

  .schedule div {
    grid-template-columns: 1fr;
  }
}
