/* ---- reset (from the theme's critical.css) ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
input, textarea, select, button { font: inherit; }
p { text-wrap: pretty; }
p, h1, h2, h3 { overflow-wrap: break-word; }
section, header, footer { width: 100%; }

/* ==========================================================================
   Λευκοχώρα — theme styles
   Palette + type sampled from the reference mockup.
   ========================================================================== */

:root {
  --lk-olive-900: #1f2714; /* footer */
  --lk-olive-800: #282f19; /* header */
  --lk-olive-700: #2c331a; /* dark buttons / icons */
  --lk-olive-600: #3e4224; /* story panel */
  --lk-olive-500: #55602f;
  --lk-ink: #141b09;
  --lk-ink-soft: #3a4226;
  --lk-gold: #d9b44a;
  --lk-gold-bright: #fcd26a;
  --lk-gold-deep: #c9962e;
  --lk-gold-soft: #e8d59a;
  --lk-cream: #f5ead7;
  --lk-cream-deep: #efe2c8;
  --lk-paper: #faf3e3;
  --lk-white: #fdfaf4;
  --lk-line: rgba(201, 150, 46, 0.55);

  --lk-serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --lk-display: 'Noto Serif Display', 'Noto Serif', Georgia, serif;
  --lk-sans: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --lk-script: 'Alegreya', 'Noto Serif', Georgia, serif;

  --lk-page: 1180px;
  --lk-gutter: 32px;

  --lk-paper-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .35 0 0 0 0 .28 0 0 0 0 .15 0 0 0 .18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--lk-sans);
  color: var(--lk-ink);
  background: var(--lk-cream);
  -webkit-font-smoothing: antialiased;
}

.lk-container {
  width: min(var(--lk-page), 100%);
  margin-inline: auto;
  padding-inline: var(--lk-gutter);
}

.lk-serif { font-family: var(--lk-serif); }

/* "Handwritten" accent text */
.lk-script {
  font-family: var(--lk-script);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

/* Section headings share the same anatomy: serif title + olive sprig */
.lk-heading {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35em;
  font-family: var(--lk-display);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}
.lk-heading img {
  width: 1.45em;
  height: auto;
  transform: translateY(0.1em);
}

/* Buttons */
.lk-btn {
  --btn-bg: var(--lk-olive-700);
  --btn-fg: var(--lk-cream);
  --btn-border: var(--lk-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.5em;
  border: 1.5px solid var(--btn-border);
  border-radius: 8px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--lk-serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-shadow: 0 2px 10px rgba(20, 27, 9, 0.25);
}
.lk-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.lk-btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.lk-btn--gold {
  --btn-bg: linear-gradient(180deg, var(--lk-gold-bright) 0%, #efc255 55%, #dfae3c 100%);
  --btn-fg: var(--lk-ink);
  --btn-border: #b88e2a;
}
.lk-btn--dark {
  --btn-bg: linear-gradient(180deg, #3b4423 0%, var(--lk-olive-700) 100%);
  --btn-fg: var(--lk-gold-soft);
}
.lk-btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--lk-ink);
  --btn-border: var(--lk-olive-700);
  box-shadow: none;
  font-weight: 500;
  font-size: 13px;
  padding: 0.65em 1.1em;
}
.lk-btn--outline-gold {
  --btn-bg: transparent;
  --btn-fg: var(--lk-gold-soft);
  --btn-border: var(--lk-gold);
  box-shadow: none;
  font-weight: 500;
  font-size: 13px;
  padding: 0.65em 1.2em;
}

.lk-gold-rule {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--lk-gold) 8%, var(--lk-gold-bright) 50%, var(--lk-gold) 92%, transparent 100%);
}

/* ==========================================================================
   Header
   ========================================================================== */

.lk-header {
  position: relative;
  background: var(--lk-olive-800);
  color: var(--lk-cream);
  border-bottom: 2px solid var(--lk-gold);
  z-index: 5;
}
.lk-header::after {
  /* soft vignette like the mockup's painted header */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 120% at 12% 30%, rgba(90, 105, 50, 0.35) 0%, transparent 60%),
    radial-gradient(40% 100% at 92% 50%, rgba(60, 72, 30, 0.45) 0%, transparent 60%);
}
.lk-header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: start;
  min-height: 140px;
  padding-top: 8px;
  padding-bottom: 14px;
}
.lk-header__logo {
  grid-row: 1 / 3;
  grid-column: 1;
  position: relative;
  width: 178px;
  height: 178px;
  margin-top: 0;
  margin-bottom: -60px; /* overhangs into the hero */
  border-radius: 50%;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  z-index: 2;
}
.lk-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lk-header__brand {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  text-decoration: none;
  color: inherit;
  padding-top: 6px;
  max-width: 250px;
}
.lk-header__name {
  display: block;
  font-family: var(--lk-display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--lk-gold);
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.lk-header__tag {
  display: block;
  margin-top: 8px;
  font-family: var(--lk-sans);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #e9e2cf;
}
.lk-nav {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 20px;
}
.lk-nav a {
  position: relative;
  font-family: var(--lk-serif);
  font-size: 14.5px;
  color: #efe8d6;
  text-decoration: none;
  padding-bottom: 6px;
  white-space: nowrap;
}
.lk-nav a:hover,
.lk-nav a[aria-current] {
  color: var(--lk-gold-bright);
}
.lk-nav a[aria-current]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lk-gold);
}
.lk-phone-pill {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 8px 18px;
  border: 1.5px solid var(--lk-gold);
  border-radius: 9px;
  background: rgba(20, 27, 9, 0.35);
  color: var(--lk-gold-bright);
  font-family: var(--lk-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.lk-phone-pill svg {
  flex: none;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: var(--lk-gold);
  color: var(--lk-olive-800);
}
.lk-header__script {
  grid-column: 3;
  grid-row: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--lk-gold-soft);
  font-size: 18px;
  transform: rotate(-3deg);
}
.lk-header__script img {
  width: 62px;
  height: auto;
}
.lk-header__script--right {
  grid-column: 4;
  grid-row: 2;
  justify-self: end;
  text-align: right;
  margin-top: 10px;
  color: var(--lk-gold-soft);
  font-size: 14px;
  line-height: 1.45;
  transform: rotate(-4deg) translateX(-8px);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.lk-hero {
  position: relative;
  min-height: clamp(400px, 32vw, 600px);
  background-color: #cfd0bd;
  background-image: var(--lk-hero-image);
  background-size: cover;
  background-position: center top;
  border-bottom: 3px solid var(--lk-gold);
  isolation: isolate;
}
.lk-hero::before {
  /* frosted panel behind the copy so it reads on any photo */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(245, 234, 215, 0.62) 0%,
    rgba(245, 234, 215, 0.5) 32%,
    rgba(245, 234, 215, 0.15) 48%,
    rgba(245, 234, 215, 0) 56%
  );
}
.lk-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 610px) 1fr minmax(0, 240px);
  align-items: center;
  min-height: clamp(400px, 32vw, 600px);
  position: relative;
  padding-top: 40px;
  padding-bottom: 24px;
}
.lk-hero__content {
  grid-column: 1;
}
.lk-hero__title {
  margin: 0;
  font-family: var(--lk-display);
  font-weight: 600;
  font-size: 46px;
  line-height: 1.05;
  color: var(--lk-ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.lk-hero__sub {
  margin: 16px 0 0;
  font-family: var(--lk-serif);
  font-size: 18.5px;
  line-height: 1.35;
  color: #2a3219;
}
.lk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.lk-hero__actions .lk-btn--gold {
  padding: 0.95em 1.6em;
  font-size: 16px;
}
.lk-hero__actions .lk-btn--dark {
  font-size: 13px;
  line-height: 1.25;
  padding: 0.7em 1.2em;
}
.lk-hero__actions .lk-btn--dark svg {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: var(--lk-gold);
  color: var(--lk-olive-800);
}
.lk-hero__actions .lk-btn--dark strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.lk-badges {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.lk-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid rgba(20, 27, 9, 0.35);
  font-family: var(--lk-sans);
  font-size: 11.5px;
  line-height: 1.3;
  color: #1f2612;
  white-space: nowrap;
}
.lk-badges li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.lk-badges svg {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--lk-olive-700);
}

.lk-hero__quote {
  position: absolute;
  right: 3%;
  top: 50%;
  width: 240px;
  margin: 0;
  padding: 26px 18px;
  text-align: center;
  color: #1a2110;
  font-size: 18px;
  line-height: 1.35;
  transform: translateY(-50%) rotate(-6deg);
  /* soft cream halo so the script reads over foliage */
  background: radial-gradient(
    ellipse at center,
    rgba(245, 234, 215, 0.85) 0%,
    rgba(245, 234, 215, 0.6) 45%,
    rgba(245, 234, 215, 0) 72%
  );
}
.lk-hero__quote cite {
  display: block;
  margin-top: 22px;
  font-family: var(--lk-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a2110;
  transform: rotate(6deg);
}

/* ==========================================================================
   Products
   ========================================================================== */

.lk-paper {
  position: relative;
  background-color: var(--lk-cream);
  background-image: var(--lk-paper-texture);
  background-blend-mode: multiply;
}

.lk-products {
  padding-top: 30px;
  padding-bottom: 44px;
  overflow: hidden;
}
.lk-products__deco {
  position: absolute;
  top: 0;
  width: 150px;
  height: auto;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.95;
}
.lk-products__deco--left { left: 0; }
.lk-products__deco--right { right: 0; }

.lk-products__head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 24px;
}
.lk-products__titlewrap {
  grid-column: 2;
  text-align: center;
}
.lk-products__titlewrap .lk-heading {
  font-size: 36px;
  color: var(--lk-ink);
}
.lk-products__subtitle {
  margin: 4px 0 0;
  font-family: var(--lk-serif);
  font-style: italic;
  font-size: 16px;
  color: #3b4326;
}
.lk-products__all {
  grid-column: 3;
  justify-self: end;
}

.lk-products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.lk-card {
  display: block;
  background: var(--lk-paper);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 6px rgba(60, 50, 20, 0.12), 0 10px 24px rgba(60, 50, 20, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(60, 50, 20, 0.14), 0 18px 32px rgba(60, 50, 20, 0.18);
}
.lk-card__media {
  aspect-ratio: 186 / 152;
  overflow: hidden;
}
.lk-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lk-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 14px 14px;
}
.lk-card__title {
  margin: 0;
  font-family: var(--lk-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--lk-ink);
}
.lk-card__text {
  margin: 3px 0 0;
  font-family: var(--lk-sans);
  font-size: 12px;
  line-height: 1.35;
  color: #3a4226;
}
.lk-card__arrow {
  width: 14px;
  height: 14px;
  color: var(--lk-olive-700);
}

/* ==========================================================================
   Story
   ========================================================================== */

.lk-story {
  display: grid;
  grid-template-columns: 49% 29% 22%;
  min-height: 215px;
  background: var(--lk-olive-600);
  color: var(--lk-cream);
}
.lk-story__photo {
  position: relative;
  overflow: hidden;
}
.lk-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lk-story__photo-script {
  position: absolute;
  left: 18%;
  bottom: 16%;
  color: #fff6dc;
  font-size: 19px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  transform: rotate(-5deg);
}
.lk-story__panel {
  padding: 26px 24px 26px 28px;
  background:
    radial-gradient(80% 100% at 0% 50%, rgba(70, 78, 40, 0.7) 0%, transparent 70%),
    var(--lk-olive-600);
}
.lk-story__panel .lk-heading {
  font-size: 30px;
  color: #f3ecd8;
}
.lk-story__panel .lk-heading img {
  width: 1.8em;
  filter: brightness(1.35);
}
.lk-story__text {
  margin: 12px 0 0;
  font-family: var(--lk-sans);
  font-size: 12px;
  line-height: 1.55;
  color: #e6dfca;
}
.lk-story__panel .lk-btn {
  margin-top: 16px;
}
.lk-story__olives {
  position: relative;
  overflow: hidden;
}
.lk-story__olives img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lk-story__olives::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--lk-olive-600) 0%, rgba(62, 66, 36, 0.55) 25%, transparent 60%);
}
.lk-story__olives-script {
  position: absolute;
  right: 10%;
  bottom: 12%;
  text-align: center;
  color: #fff6dc;
  font-size: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  transform: rotate(-4deg);
}

/* ==========================================================================
   Order form + contact
   ========================================================================== */

.lk-order {
  padding-top: 34px;
  padding-bottom: 36px;
  border-bottom: 3px solid var(--lk-gold);
  overflow: hidden;
}
.lk-order__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.lk-order__grid::before {
  /* thin vertical gold divider */
  content: '';
  position: absolute;
  top: 0;
  bottom: -36px;
  left: calc(50% - 4px);
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--lk-line) 15%, var(--lk-line) 85%, transparent);
}
.lk-order .lk-heading {
  font-size: 30px;
  color: var(--lk-ink);
}
.lk-order__lead {
  margin: 10px 0 14px;
  font-family: var(--lk-sans);
  font-size: 13px;
  color: #3a4226;
}

.lk-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lk-form__field {
  display: flex;
  align-items: stretch;
  background: var(--lk-white);
  border: 1px solid #d9cfb5;
  border-radius: 6px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lk-form__field:focus-within {
  border-color: var(--lk-gold-deep);
  box-shadow: 0 0 0 3px rgba(217, 180, 74, 0.25);
}
.lk-form__field label {
  flex: none;
  align-self: center;
  padding: 0 10px 0 12px;
  font-family: var(--lk-sans);
  font-size: 12.5px;
  color: #4a5230;
  white-space: nowrap;
}
.lk-form__field input,
.lk-form__field select,
.lk-form__field textarea {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-family: var(--lk-sans);
  font-size: 13px;
  color: var(--lk-ink);
}
.lk-form__field input::placeholder,
.lk-form__field textarea::placeholder {
  color: #6b7250;
}
.lk-form__field select {
  appearance: none;
  border-left: 1px solid #e4dbc3;
  border-radius: 0 6px 6px 0;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232c331a' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.lk-form__field--message {
  grid-row: span 2;
  flex-direction: column;
}
.lk-form__field--message label {
  align-self: flex-start;
  padding: 8px 12px 0;
}
.lk-form__field--message textarea {
  resize: vertical;
  min-height: 72px;
}
.lk-form__field--qty {
  align-self: start;
}
.lk-form__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.lk-form__footer .lk-btn {
  font-size: 14px;
  padding: 0.95em 1.6em;
  white-space: nowrap;
}
.lk-form__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lk-sans);
  font-size: 10.5px;
  line-height: 1.35;
  color: #4a5230;
}
.lk-form__note svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--lk-gold-deep);
}
.lk-form__status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--lk-sans);
  font-size: 13px;
}
.lk-form__status--ok {
  background: #e3ecd0;
  color: #2d3a17;
}
.lk-form__status--error {
  background: #f2d9cf;
  color: #5c2410;
}

.lk-contact {
  position: relative;
}
.lk-contact__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 310px;
}
.lk-contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lk-contact__list a {
  color: inherit;
  text-decoration: none;
}
.lk-contact__icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lk-olive-700);
  color: var(--lk-gold-bright);
  box-shadow: 0 2px 6px rgba(20, 27, 9, 0.3);
}
.lk-contact__icon svg {
  width: 20px;
  height: 20px;
}
.lk-contact__value {
  display: block;
  font-family: var(--lk-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--lk-ink);
}
.lk-contact__label {
  display: block;
  margin-top: 1px;
  font-family: var(--lk-sans);
  font-size: 12px;
  color: #4a5230;
}
.lk-contact__deco-olives {
  position: absolute;
  top: -34px;
  right: -32px;
  width: 200px;
  height: auto;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.lk-contact__script {
  position: absolute;
  top: 118px;
  right: 20px;
  width: 180px;
  text-align: center;
  color: #2a3219;
  font-size: 17px;
  transform: rotate(-9deg);
}
.lk-contact__script em {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-style: italic;
}
.lk-contact__sketch {
  position: absolute;
  right: -32px;
  bottom: -46px;
  width: 260px;
  height: auto;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.lk-footer {
  background: var(--lk-olive-900);
  color: #ece4cf;
  padding-top: 22px;
  padding-bottom: 18px;
}
.lk-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.lk-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.lk-footer__brand img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}
.lk-footer__title {
  font-family: var(--lk-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: #f3ecd8;
}
.lk-footer__name {
  margin-top: 6px;
  font-family: var(--lk-serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-gold);
}
.lk-footer__tag {
  margin-top: 4px;
  font-family: var(--lk-sans);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cfc7b0;
}
.lk-footer__script {
  text-align: center;
  color: var(--lk-gold-soft);
  font-size: 15px;
  white-space: nowrap;
}
.lk-footer__script img {
  display: block;
  width: 44px;
  margin: 6px auto 0;
}
.lk-footer__right {
  display: grid;
  justify-items: end;
  gap: 14px;
}
.lk-footer__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lk-serif);
  font-size: 11.5px;
  white-space: nowrap;
}
.lk-footer__nav a {
  color: #e6dfca;
  text-decoration: none;
}
.lk-footer__nav a:hover { color: var(--lk-gold-bright); }
.lk-footer__nav span { color: rgba(230, 223, 202, 0.4); }
.lk-footer__social {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: 6px;
  border-radius: 50%;
  border: 1px solid rgba(217, 180, 74, 0.6);
  color: var(--lk-gold-soft);
}
.lk-footer__social svg { width: 14px; height: 14px; }
.lk-footer__copy {
  font-family: var(--lk-sans);
  font-size: 10px;
  color: #b8b19c;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .lk-header__inner {
    grid-template-columns: 150px auto 1fr;
  }
  .lk-header__logo { width: 140px; height: 140px; margin-bottom: -30px; }
  .lk-header__name { font-size: 20px; }
  .lk-nav { gap: 18px; }
  .lk-phone-pill { grid-column: 3; grid-row: 2; justify-self: end; margin-top: 12px; }
  .lk-header__script,
  .lk-header__script--right { display: none; }
  .lk-hero__inner { grid-template-columns: minmax(0, 520px) 1fr; }
  .lk-hero__quote { display: none; }
  .lk-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lk-story { grid-template-columns: 1fr 1fr; }
  .lk-story__olives { display: none; }
}

@media (max-width: 760px) {
  :root { --lk-gutter: 18px; }
  .lk-header__inner {
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
  }
  .lk-header__logo { grid-row: 1; width: 90px; height: 90px; margin-bottom: 0; }
  .lk-header__brand { grid-row: 1; grid-column: 2; }
  .lk-header__name { font-size: 17px; }
  .lk-header__tag { font-size: 9px; }
  .lk-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; flex-wrap: wrap; gap: 14px; padding-top: 12px; }
  .lk-nav a { font-size: 13px; }
  .lk-phone-pill { grid-column: 1 / -1; grid-row: 3; justify-self: start; font-size: 15px; }
  .lk-hero { background-position: 70% center; }
  .lk-hero::before {
    background: linear-gradient(180deg, rgba(245, 234, 215, 0.85) 0%, rgba(245, 234, 215, 0.6) 100%);
  }
  .lk-hero__inner { grid-template-columns: 1fr; padding-top: 28px; }
  .lk-hero__title { font-size: 36px; white-space: normal; }
  .lk-hero__sub { font-size: 16px; }
  .lk-badges { flex-wrap: wrap; gap: 12px 0; }
  .lk-badges li { flex: 1 1 45%; border-right: 0; margin-right: 0; padding-right: 0; }
  .lk-products__deco { width: 90px; }
  .lk-products__head { grid-template-columns: 1fr; gap: 12px; }
  .lk-products__titlewrap { grid-column: 1; }
  .lk-products__all { grid-column: 1; justify-self: center; }
  .lk-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .lk-story { grid-template-columns: 1fr; }
  .lk-story__photo { min-height: 200px; }
  .lk-order__grid { grid-template-columns: 1fr; gap: 36px; }
  .lk-order__grid::before { display: none; }
  .lk-form { grid-template-columns: 1fr; }
  .lk-form__field--message { grid-row: auto; }
  .lk-form__footer { flex-direction: column; align-items: flex-start; }
  .lk-contact__deco-olives,
  .lk-contact__script,
  .lk-contact__sketch { display: none; }
  .lk-footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .lk-footer__right { justify-items: start; }
  .lk-footer__nav { flex-wrap: wrap; }
}

/* ==========================================================================
   Static-site additions: product cards v2, product modal, reveal, form state
   ========================================================================== */

/* Cards: equal heights, one-line title, clearer affordance */
.lk-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.lk-card__media {
  position: relative;
}
.lk-card__media img {
  transition: transform 0.45s ease;
}
.lk-card:hover .lk-card__media img {
  transform: scale(1.05);
}
.lk-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(20, 27, 9, 0.25));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lk-card:hover .lk-card__media::after { opacity: 1; }
.lk-card__body {
  flex: 1;
  align-content: start;
  padding: 12px 12px 12px 14px;
}
.lk-card__title {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lk-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lk-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-family: var(--lk-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--lk-gold-deep);
  letter-spacing: 0.02em;
}
.lk-card__more svg { width: 12px; height: 12px; }
.lk-card__arrow {
  align-self: center;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(44, 51, 26, 0.25);
  transition: background 0.2s ease, color 0.2s ease;
}
.lk-card__arrow svg { width: 13px; height: 13px; }
.lk-card:hover .lk-card__arrow {
  background: var(--lk-olive-700);
  color: var(--lk-gold-bright);
}

/* Product modal */
.lk-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 27, 9, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.lk-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.lk-modal__dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--lk-paper);
  background-image: var(--lk-paper-texture);
  background-blend-mode: multiply;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s ease;
}
.lk-modal[aria-hidden="false"] .lk-modal__dialog {
  transform: none;
}
.lk-modal__media {
  min-height: 320px;
  overflow: hidden;
  border-radius: 14px 0 0 14px;
}
.lk-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lk-modal__body {
  padding: 34px 32px 30px;
}
.lk-modal__kicker {
  font-family: var(--lk-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lk-gold-deep);
}
.lk-modal__title {
  margin-top: 6px;
  font-family: var(--lk-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.05;
  color: var(--lk-ink);
}
.lk-modal__text {
  margin-top: 14px;
  font-family: var(--lk-serif);
  font-size: 15px;
  line-height: 1.55;
  color: #2f3720;
}
.lk-modal__meta {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}
.lk-modal__meta li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: var(--lk-sans);
  font-size: 13px;
  color: #3a4226;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(201, 150, 46, 0.4);
}
.lk-modal__meta li:last-child { border-bottom: 0; }
.lk-modal__meta b {
  flex: none;
  min-width: 96px;
  font-weight: 500;
  color: var(--lk-ink);
}
.lk-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.lk-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 27, 9, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}
.lk-modal__close:hover { background: var(--lk-olive-700); }
.lk-modal__close svg { width: 16px; height: 16px; }
body.lk-modal-open { overflow: hidden; }

/* Reveal on scroll */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* Form state */
.lk-form[data-state="sending"] button[type="submit"] {
  opacity: 0.6;
  pointer-events: none;
}
.lk-form__field--error {
  border-color: #b8432a;
  box-shadow: 0 0 0 3px rgba(184, 67, 42, 0.18);
}
.lk-form__status a { color: inherit; }

/* Header: sticky feel on scroll */
.lk-header.is-scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35); }

@media (max-width: 760px) {
  .lk-modal { padding: 12px; }
  .lk-modal__dialog { grid-template-columns: 1fr; max-height: calc(100vh - 24px); }
  .lk-modal__media { min-height: 220px; max-height: 260px; border-radius: 14px 14px 0 0; }
  .lk-modal__body { padding: 22px 20px 24px; }
  .lk-modal__title { font-size: 26px; }
  .lk-products__grid { grid-template-columns: 1fr 1fr; }
  .lk-card__title { white-space: normal; }
}
@media (max-width: 480px) {
  .lk-products__grid { grid-template-columns: 1fr; }
}
