:root {
  --clay: #b9552c;
  --clay-dark: #75371f;
  --soil: #4a2a1b;
  --text: #5f4638;
  --muted: #8d776a;
  --cream: #fffaf3;
  --sand: #f4e4d1;
  --line: #ead8c8;
  --shadow: 0 14px 34px rgba(104, 59, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fffdf9;
  font-family: Inter, Arial, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.top-strip {
  min-height: 30px;
  padding: 6px 8%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #fff7ef;
  background: linear-gradient(90deg, #c76631, #9e4524);
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 12px 7.5%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(213, 181, 158, 0.55);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clay-dark);
  min-width: max-content; 
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--clay);
  font-size: 26px;
  line-height: 1;
}

.brand b {
  display: block;
  font-family: Gotu, serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 30px);
  color: #7b5b4a;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--clay);
  border-color: var(--clay);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions a.cart-btn, 
.header-actions button,
.nav-toggle {
  width: 35px;
  height: 35px;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--clay-dark);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.cart-btn {
  position: relative;
}

.cart-btn i {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 99px;
  color: white;
  background: var(--clay);
  font-size: 10px;
  font-style: normal;
  line-height: 17px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 58px 8%;
  background:
    linear-gradient(90deg, rgba(244, 225, 202, 0.08) 0%, rgba(244, 225, 202, 0.08) 40%, rgba(244, 225, 202, 0.08) 73%),
    url("../images/home/hero01.png") center / cover no-repeat;
  overflow: hidden;
}

/*.hero::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -60px;
  width: 310px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.08);
}*/

.lang-switch {
  position: absolute;
  top: 22px;
  right: 8%;
  padding: 7px 14px;
  color: #a36343;
  background: #fffaf4;
  border: 1px solid #ead0bd;
  font-size: 12px;
  font-weight: 700;
}

.hero-copy {
  position: relative;
  width: min(480px, 100%);
  margin-left: 10%;
}

.eyebrow,
.story-copy span,
.vision-copy span {
  color: #b47a5b;
  font-size: 13px;
  font-weight: 700;
}

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

.hero h1,
.story-copy h2,
.vision-copy h2,
.section-title h2 {
  font-family: Gotu, Georgia, serif;
  color: var(--soil);
}

.hero h1 {
  margin: 15px 0 12px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 90px;
}

.hero p {
  max-width: 370px;
  color: #6d503f;
  font-size: 17px;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 20px;
  border: 0;
  border-radius: 4px;
  color: #fffaf3;
  background: var(--clay);
  box-shadow: 0 8px 20px rgba(155, 70, 33, 0.18);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  background: #9f4725;
}

.section {
  padding: 56px 7.5%;
}

.section-title {
  margin: 0 auto 35px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.section-title p {
  position: relative;
  display: inline-block;
  margin: 2px 0 0;
  color: #8b6d5c;
  font-family: Gotu, serif;
  font-size: 18px;
}

.section-title p::after {
  content: "";
  display: block;
  width: 46px;
  height: 8px;
  margin: 7px auto 0;
  background: radial-gradient(circle, var(--clay) 2px, transparent 3px) left center / 12px 8px repeat-x;
}

.product-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #efe0d4;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clay);
  font-size: 11px;
  font-weight: 800;
}

.product-info {
  position: relative;
  min-height: 86px;
  padding: 14px 58px 16px 16px;
}

.product-info h3 {
  margin-bottom: 8px;
  color: #6d5145;
  font-size: 14px;
}

.product-info strong {
  color: var(--soil);
  font-size: 14px;
}

.add-cart {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--clay);
  cursor: pointer;
}

.centered {
  margin: 28px auto 0;
  display: flex;
  width: max-content;
  max-width: 100%;
}

.story-band {
  display: grid;
    grid-template-columns: 1fr 1.04fr;
    min-height: 450px;
    background: #f4e3d1;
    max-height: 330px;
    overflow: hidden;
    position: relative;
}
.story-band .after-img {
  position: absolute;
    left: 0;
    bottom: 0;
    height: 250px;
    width: auto;
    opacity: 0.2;
}

.story-copy {
  align-self: center;
  justify-self: end;
  width: min(560px, 86%);
  padding: 52px 0;
}

.story-copy h2 {
  margin: 20px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 70px;
  color: #a05735;
}

.story-copy p,
.vision-copy p {
  max-width: 430px;
  color: #725644;
  line-height: 1.65;
}

.story-band img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.icon-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.icon-item {
  text-align: center;
}

.icon-item span {
  width: 100px;
    height: 100px;
    padding: 20px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: var(--clay);
    background: #f8ece3;
    border-radius: 50%;
    font-size: 36px;
}

.icon-item h3 {
  margin-bottom: 4px;
  color: #7a5541;
  font-size: 14px;
}

.icon-item p {
  margin: 0;
  color: #947868;
  font-size: 13px;
  line-height: 1.35;
}

.process {
  padding: 40px 7.5% 50px;
  background:
    linear-gradient(90deg, rgba(246, 226, 204, 0.96), rgba(246, 226, 204, 0.9)),
    radial-gradient(circle at left bottom, rgba(181, 91, 49, 0.15), transparent 34%);
    overflow: hidden;
    position: relative;
}
.process .after-img {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 250px;
    width: auto;
    opacity: 0.2;
}

.process-row {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.process-row div {
  position: relative;
  text-align: center;
}

.process-row div:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 33px;
  right: -23px;
  color: #b78468;
}

.process-row span {
  width: 100px;
    height: 100px;
    padding: 20px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border: 2px solid #c68b6c;
  border-radius: 50%;
  color: var(--clay);
  background: rgba(255, 250, 243, 0.52);
  font-weight: 800;
}

.process-row b {
  color: #765747;
  font-size: 13px;
  line-height: 1.35;
}

.category-grid {
  width: min(1020px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  text-align: center;
}
.category-grid span {
  width: 120px;
    height: 120px;
    padding: 20px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: var(--clay);
    background: #f8ece3;
    border-radius: 50%;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 36px;
}

.category-grid a {
  color: #715343;
}

.category-grid b {
  display: block;
  font-size: 14px;
}

.vision {
  position: relative;
  min-height: 210px;
      background: #f4dfc9;
    background: linear-gradient(90deg, rgba(244, 225, 202, 0.08) 0%, rgba(244, 225, 202, 0.08) 40%, rgba(244, 225, 202, 0.08) 73%), url(../images/home/visionbg.png) center / cover no-repeat;
    overflow: hidden;
}

.vision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-copy {
  padding: 75px 7.5%;
    margin: auto;
    margin-left: 350px;
}

.vision-copy h2 {
  margin: 4px 0 8px;
  font-size: 28px;
  color: #9e5533;
}

.testimonial-grid {
  width: min(1110px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-grid article {
  min-height: 148px;
  padding: 22px;
  border: 1px solid #eedfd3;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(107, 69, 48, 0.1);
}
.testimonial-grid article .flex {
  display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.testimonial-grid article .quote img {
  height: 24px;
}

.stars {
  color: #d66d33;
  font-size: 18px;
  text-align: right;
}

.testimonial-grid p {
  color: #7b6254;
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-grid strong {
  color: var(--soil);
  font-size: 13px;
      display: flex;
    align-items: center;
    gap: 8px;
}
.testimonial-grid strong img {
      border-radius: 50%;
    height: 50px;
    border: 1px solid #eedfd3;
}

.dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6b59f;
}

.dots span:first-child {
  background: var(--clay);
}

.gallery {
  position: relative;
  padding: 20px 3.5% 56px;
}
.gallery .after-img {
  position: absolute;
    right: 0;
    top: 0;
    height: 250px;
    width: auto;
    opacity: 0.2;
    transform: scaleX(-1);
    z-index: -1;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.gallery-row img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.floating {
  position: absolute;
  left: 50%;
  bottom: 76px;
  transform: translateX(-50%);
  background: rgba(185, 85, 44, 0.94);
}

.blog-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-grid article {
  background: #fff;
}

.blog-grid img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}

.blog-grid h3 {
  margin: 14px 0 8px;
  color: #6d5145;
  font-size: 15px;
  line-height: 1.45;
}

.blog-grid a {
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
}

.service-strip {
  padding: 22px 7.5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: #f1e1d1;
}
.service-strip .flexarea {
  display: flex;
    align-items: center;
    gap: 20px;
}
.service-strip .flexarea img {
      height: 45px;
}
.service-strip div {
  display: grid;
  justify-content: center;
  color: #654c3e;
  gap: 5px;
}

.service-strip b {
  font-size: 15px;
}

.service-strip span {
  color: #8a6d5c;
  font-size: 12px;
}

.newsletter {
  padding: 30px 7.5%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  color: #fff7ef;
  background:
    linear-gradient(90deg, rgba(179, 79, 36, 0.95), rgba(130, 55, 28, 0.96)),
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.22), transparent 20%),
    url("../images/home/newsletterbg.png") center / cover no-repeat;
  overflow: hidden;;
}

.newsletter h2 {
  margin: 0 0 4px;
  font-family: Gotu, serif;
}

.newsletter p {
  margin: 0;
  color: #f8dfcf;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input {
  width: min(320px, 44vw);
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  color: var(--soil);
  background: #fffaf3;
}

.newsletter .btn {
  background: #3f2b22;
  box-shadow: none;
}

.site-footer {
  padding: 42px 7.5% 20px;
  color: #decdc2;
  background: linear-gradient(180deg, #4b2b1c, #2d1b14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 44px;
}

.footer-brand {
  color: #f4d9c8;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #d2baad;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer h3 {
  color: #fff4ea;
  font-size: 16px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #b69c8e;
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 7.5%;
    flex-direction: column;
    align-items: flex-start;
    background: #fffaf4;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .header-actions {
    gap: 2px;
  }

  .hero-copy {
    margin-left: 0;
  }

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

  .icon-grid,
  .category-grid,
  .process-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-row div::after {
    display: none;
  }

  .story-band,
  .vision,
  .newsletter,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    justify-self: center;
  }

  .vision img {
    max-height: 240px;
  }

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

@media (max-width: 640px) {
  .top-strip,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .top-strip {
    font-size: 11px;
    gap: 4px;
  }

  .site-header {
    padding: 10px 5%;
    gap: 8px;
  }

  .brand b {
    font-size: 24px;
  }

  .header-actions button {
    width: 32px;
  }

  .hero {
    min-height: 440px;
    padding: 76px 6% 44px;
    background-position: 58% center;
  }

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

  .lang-switch {
    right: 6%;
  }

  .section {
    padding: 42px 5%;
  }

  .product-grid,
  .testimonial-grid,
  .blog-grid,
  .icon-grid,
  .category-grid,
  .process-row,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .story-copy {
    width: 90%;
  }

  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floating {
    position: static;
    transform: none;
    margin: 16px auto 0;
    width: max-content;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
  }
}