@font-face {
  font-family: Anuphan;
  src: url("assets/fonts/anuphan-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Anuphan;
  src: url("assets/fonts/anuphan-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Anuphan;
  src: url("assets/fonts/anuphan-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Anuphan;
  src: url("assets/fonts/anuphan-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --paper: #f7f8f2;
  --white: #fff;
  --green: #194d38;
  --ink: #173c2e;
  --secondary: #526357;
  --line: #d5dfd3;
  --leaf: #d9e987;
  --accent: #547537;
  --space: clamp(1.25rem, 4.5vw, 5rem);
  --page: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: var(--green) var(--paper);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Anuphan, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--leaf);
  color: var(--ink);
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #847122;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
button {
  font: inherit;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  text-wrap: balance;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--green);
  color: white;
  padding: 12px 20px;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--page);
  padding: 18px var(--space);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.brand-name {
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.brand-name > span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-top: 4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav > a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  white-space: nowrap;
}
nav > a:not(.button):hover {
  color: var(--accent);
  text-decoration: underline;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 24px;
  min-height: 56px;
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: #286047;
}
.button-small {
  font-size: 0.875rem;
  padding: 11px 17px;
  min-height: 46px;
}
.button-small svg {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 2;
}
.site-header nav {
  order: 1;
  margin-left: auto;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 6px 9px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  white-space: nowrap;
}
.language-switch:hover {
  color: var(--accent);
}
html[lang="en"] .hero h1 {
  font-size: clamp(2.7rem, 4.4vw, 4rem);
  max-width: 12em;
}
.hero {
  max-width: var(--page);
  margin: auto;
  padding: 44px var(--space) 54px;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 50px;
  align-items: center;
}
.hero-copy {
  padding: 30px 0;
}
.hero h1 {
  font-size: clamp(3rem, 4.9vw, 4.5rem);
  line-height: 1.27;
  letter-spacing: -0.025em;
  max-width: 8.5em;
}
.highlight {
  color: var(--accent);
}
.hero-description {
  margin-top: 25px;
  max-width: 35em;
  color: var(--secondary);
  font-size: 1.06rem;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  margin-top: 29px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  text-decoration: none;
  min-height: 40px;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link svg {
  width: 18px;
  height: 18px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 41px;
}
.note-line {
  width: 28px;
  border-top: 1px solid var(--accent);
}
.hero-note p {
  font-size: 0.875rem;
}
.hero-note p span {
  color: var(--secondary);
  margin-left: 10px;
  font-size: 0.8rem;
}
.hero-image {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  overflow: hidden;
  background: var(--green);
  border-radius: 3px;
}
.hero-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 54% center;
}
.hero-image figcaption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  padding: 17px 21px;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.4;
  font-weight: 500;
}
.hero-image figcaption span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  max-width: 105px;
  line-height: 1.6;
  text-align: right;
}
.produce-strip {
  background: var(--green);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
  padding: 21px var(--space);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.produce-strip > i {
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  background: currentColor;
  transform: rotate(45deg);
}
.section-wrap {
  max-width: var(--page);
  margin: auto;
  padding-left: var(--space);
  padding-right: var(--space);
}
.produce {
  padding-top: 95px;
  padding-bottom: 75px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 46px;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.section-heading p {
  color: var(--secondary);
  padding-bottom: 6px;
  font-size: 1.05rem;
}
.produce-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 65px;
  align-items: start;
}
.product-greens {
  padding-top: 82px;
}
.product-image {
  display: block;
  position: relative;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}
.product-greens .product-image img {
  aspect-ratio: 1.43;
}
.image-link {
  position: absolute;
  right: 17px;
  bottom: 17px;
  background: var(--paper);
  color: var(--green);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.product-image:hover .image-link {
  background: var(--leaf);
}
.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
}
.product-heading h3 {
  font-size: 1.65rem;
}
.product-heading > span {
  font-size: 0.875rem;
  color: var(--secondary);
}
.product > p {
  color: var(--secondary);
  line-height: 1.85;
  max-width: 55ch;
}
.availability {
  margin-top: 46px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--secondary);
}
.garden {
  background: var(--green);
  color: var(--paper);
}
.garden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 76px;
  padding-bottom: 79px;
}
.garden-title h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}
.garden-title h2 span {
  display: block;
  color: var(--leaf);
}
.garden-title > p {
  font-size: 0.875rem;
  margin-top: 23px;
  color: #d9e4d3;
}
.garden-copy {
  padding-top: 9px;
}
.garden-copy > p {
  font-size: 1.09rem;
  color: #e0e8d9;
  line-height: 1.95;
}
.garden-copy > p + p {
  margin-top: 20px;
}
.light-link {
  color: var(--leaf);
  margin-top: 27px;
  font-size: 0.94rem;
}
.contact {
  padding-top: 95px;
  padding-bottom: 95px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 90px;
}
.contact-main > p {
  margin-top: 23px;
  color: var(--secondary);
  font-size: 1.04rem;
  line-height: 1.85;
}
.contact-main > .button {
  margin-top: 30px;
}
.contact-details {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}
.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact-details dl {
  margin: 0;
}
.contact-details dl > div {
  margin-top: 20px;
}
.contact-details dt {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 3px;
}
.contact-details dd {
  margin: 0;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}
.contact-details dd a {
  text-decoration: none;
}
.contact-details dd a:hover {
  text-decoration: underline;
}
.visit-note {
  font-size: 0.8rem;
  color: var(--secondary);
  margin-top: 25px;
}
footer {
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--page);
  margin: auto;
  padding: 29px var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.8rem;
  color: var(--secondary);
}
.footer-brand {
  text-decoration: none;
  color: var(--green);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-brand span {
  font-size: 0.75rem;
  display: block;
  letter-spacing: 0.17em;
}
.footer-inner > a:last-child {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-inner > a:last-child:hover {
  text-decoration: underline;
}
.footer-inner svg {
  width: 16px;
  height: 16px;
}
.parallax-active > img {
  transform: translate3d(0, var(--photo-drift, 0px), 0) scale(1.12);
}
@media (prefers-reduced-motion: reduce) {
  .parallax-active > img {
    transform: none;
  }
}
@media (min-width: 1440px) {
  .header-inner,
  .section-wrap,
  .footer-inner,
  .hero {
    max-width: 1440px;
  }
  .hero {
    gap: 64px;
  }
  .hero-image {
    min-height: 620px;
  }
}
@media (max-width: 1100px) {
  nav {
    gap: 18px;
  }
  nav > .button-small {
    display: none;
  }
  .hero {
    gap: 30px;
  }
  .hero-image {
    min-height: 540px;
  }
  .hero h1 {
    font-size: 3.65rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .desktop-break {
    display: none;
  }
  .produce-layout {
    gap: 38px;
  }
  .garden-inner {
    gap: 45px;
  }
  .contact {
    gap: 45px;
  }
  .contact-details {
    padding-left: 30px;
  }
  .hero-image figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 15px;
  }
  .hero-image figcaption span:last-child {
    display: none;
  }
}
@media (max-width: 760px) {
  .header-tools {
    order: 1;
    margin-left: auto;
  }
  .site-header nav {
    order: 2;
    margin-left: 0;
  }
  html {
    scroll-padding-top: 24px;
  }
  .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand img {
    width: 49px;
    height: 49px;
  }
  .brand-name {
    font-size: 1.12rem;
  }
  .brand-name > span {
    font-size: 0.75rem;
  }
  .js .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--green);
    border-radius: 4px;
    min-height: 44px;
    padding: 8px 11px;
    font-size: 0.85rem;
  }
  .js nav {
    display: none;
  }
  .js nav.is-open {
    display: flex;
  }
  nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 7px;
  }
  nav > a {
    padding: 12px 5px;
  }
  nav > .button-small {
    display: inline-flex;
    margin: 8px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .hero-copy {
    padding: 10px 0 0;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 10vw, 4rem);
    max-width: 12em;
    line-height: 1.3;
  }
  .hero-description {
    margin-top: 20px;
    font-size: 1rem;
    max-width: 36em;
  }
  .hero-actions {
    margin-top: 23px;
    gap: 12px;
  }
  .button {
    padding: 15px 19px;
    font-size: 0.94rem;
    min-height: 54px;
  }
  .hero-note {
    margin-top: 22px;
  }
  .hero-image {
    height: 410px;
    min-height: 0;
  }
  .hero-image > img {
    height: 100%;
  }
  .hero-image figcaption {
    font-size: 0.94rem;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .hero-image figcaption span:last-child {
    display: block;
  }
  .produce-strip {
    gap: 18px;
    justify-content: space-between;
    font-size: 0.75rem;
    padding-top: 17px;
    padding-bottom: 17px;
    letter-spacing: 0;
  }
  .produce-strip > i:nth-of-type(1),
  .produce-strip > i:nth-of-type(3),
  .produce-strip > span:nth-of-type(2),
  .produce-strip > span:nth-of-type(4) {
    display: none;
  }
  .produce {
    padding-top: 54px;
    padding-bottom: 46px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading p {
    margin-top: 18px;
    font-size: 1rem;
  }
  .produce-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-greens {
    padding-top: 0;
  }
  .product-image img {
    aspect-ratio: 1.42;
  }
  .product-heading {
    margin-top: 18px;
    margin-bottom: 9px;
  }
  .product-heading h3 {
    font-size: 1.5rem;
  }
  .product > p {
    font-size: 1rem;
  }
  .availability {
    margin-top: 29px;
    padding-top: 20px;
    line-height: 1.8;
  }
  .garden-inner {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 48px;
    padding-bottom: 50px;
  }
  .garden-title h2 {
    font-size: 2.3rem;
  }
  .garden-title h2 span {
    display: inline;
  }
  .garden-title > p {
    margin-top: 17px;
  }
  .garden-copy {
    padding: 0;
  }
  .garden-copy > p {
    font-size: 1rem;
  }
  .light-link {
    font-size: 0.9rem;
    align-items: flex-start;
  }
  .light-link svg {
    margin-top: 7px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 55px;
    padding-bottom: 50px;
  }
  .contact-details {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 27px 0 0;
  }
  .contact-main > p {
    font-size: 1rem;
  }
  .contact-details dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-details h3 {
    margin-bottom: 0;
  }
  .footer-inner {
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 18px;
  }
  .footer-inner > p {
    order: 3;
    width: 100%;
    font-size: 0.75rem;
  }
  .footer-inner > a:last-child {
    font-size: 0.875rem;
  }
}
@media (max-width: 360px) {
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 0.96rem;
  }
  .brand-name > span {
    font-size: 0.6rem;
  }
  .header-tools {
    gap: 4px;
  }
  .language-switch {
    padding-inline: 5px;
  }
  .js .menu-toggle {
    min-width: 44px;
    padding-inline: 10px;
  }
  .menu-toggle > span {
    display: none;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero .button {
    font-size: 0.85rem;
    padding: 14px 12px;
    gap: 9px;
  }
  .hero-image figcaption span:last-child {
    display: none;
  }
  .hero-image {
    height: 350px;
  }
  .product-heading {
    flex-wrap: wrap;
    gap: 0 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-image > img {
    animation: none;
  }
  * {
    transition: none !important;
  }
}
