:root {
  --green: #192d13;
  --green-2: #33492b;
  --green-3: #69765a;
  --gold: #a98d53;
  --gold-2: #d5c6a2;
  --paper: #fbfaf6;
  --cream: #f4efe5;
  --white: #fff;
  --ink: #1d211a;
  --muted: #767a6e;
  --line: #e3d9c2;
  --shadow: 0 28px 90px rgba(25, 45, 19, .14);
  --brand-font: "Cinzel", Georgia, serif;
  --body-font: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 20px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.cart-open { overflow: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; }

.site {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(169, 141, 83, .16) 0 1px, transparent 1px calc(100% - 1px), rgba(169, 141, 83, .16) calc(100% - 1px)),
    var(--paper);
  background-size: min(1320px, calc(100% - 32px)) 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.announcement {
  min-height: 36px;
  padding: 8px 16px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: rgba(255, 255, 255, .84);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .16em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, .72);
  border-bottom: 1px solid rgba(169, 141, 83, .18);
  backdrop-filter: blur(22px);
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.brand, .nav-links, .nav-actions, .hero-actions, .product-actions, .cart-row, .checkout-line, .footer-links, .pager {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  grid-column: 1;
  justify-content: flex-start;
  justify-self: start;
}
.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  opacity: .92;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 18px rgba(25, 45, 19, .18));
}
.brand span {
  display: none;
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 25px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links {
  grid-column: 2;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 26px);
}
.nav a, .plain-button {
  color: var(--green-2);
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a.active {
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}
.nav-item {
  display: flex;
  align-items: center;
}
.has-mega {
  position: relative;
}
.has-mega::after {
  content: "";
  position: fixed;
  left: 0;
  top: 78px;
  z-index: 34;
  width: 100vw;
  height: 34px;
  display: none;
}
.has-mega:hover::after,
.has-mega:focus-within::after {
  display: block;
}
.mega-menu {
  position: fixed;
  left: 50%;
  top: 86px;
  z-index: 35;
  width: min(1180px, calc(100vw - 36px));
  min-height: 310px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(250px, .85fr) repeat(3, minmax(160px, 1fr));
  gap: 18px;
  background: rgba(251, 250, 246, .96);
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(25, 45, 19, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .28s ease, transform .28s ease;
  backdrop-filter: blur(18px);
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-visual {
  min-height: 270px;
  position: relative;
  display: grid;
  align-content: end;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}
.mega-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(25, 45, 19, .08), rgba(25, 45, 19, .82));
}
.mega-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-visual span,
.mega-visual strong {
  position: relative;
  z-index: 2;
}
.mega-visual span {
  color: var(--gold-2);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mega-visual strong {
  margin-top: 8px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}
.mega-col {
  padding: 24px 12px;
  display: grid;
  align-content: start;
  gap: 14px;
  border-left: 1px solid rgba(169, 141, 83, .26);
}
.mega-col h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .16em;
}
.mega-col a {
  color: var(--green);
  font-family: var(--body-font);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}
.mega-col a:hover {
  color: var(--gold);
}
.nav-actions {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  gap: 12px;
}

.site-search {
  margin: 0;
}
.site-search label {
  height: 38px;
  min-width: 172px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .52);
}
.site-search span {
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-search input::placeholder {
  color: var(--green-3);
}

.lang-text {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-3);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lang-text button {
  border: 0;
  background: transparent;
  color: var(--green-3);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  padding: 0;
  text-transform: inherit;
}
.lang-text button.active {
  color: var(--green);
  border-bottom: 1px solid var(--gold);
}

.lang {
  height: 38px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}
.lang button {
  width: 45px;
  border: 0;
  background: transparent;
  color: var(--green-3);
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .12em;
}
.lang button.active { background: var(--green); color: var(--white); }

.cart-button {
  height: 38px;
  min-width: 96px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
  cursor: pointer;
  place-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--green);
  display: block;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(20, 27, 17, .34);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: min(390px, 88vw);
  max-width: 100vw;
  max-height: 100dvh;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  background: rgba(251, 250, 246, .96);
  border-right: 1px solid var(--line);
  box-shadow: 28px 0 80px rgba(25, 45, 19, .18);
  backdrop-filter: blur(22px);
  transform: translateX(-100%);
  transition: transform .28s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.mobile-menu-head img {
  width: 86px;
  filter: drop-shadow(0 10px 18px rgba(25, 45, 19, .14));
}
.mobile-menu-links {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid var(--line);
}
.mobile-menu-links a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 19px;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.mobile-subnav {
  margin: -4px 0 8px;
  padding: 8px 0 14px 18px;
  display: grid;
  gap: 8px;
  border-left: 1px solid var(--gold);
}
.mobile-subnav a {
  padding: 0;
  border-bottom: 0;
  color: var(--green-3);
  font-family: var(--body-font);
  font-size: 19px;
  letter-spacing: 0;
  text-transform: none;
}
.mobile-menu-foot {
  display: grid;
  gap: 12px;
}

.hero {
  width: min(1220px, calc(100% - 32px));
  min-height: calc(100vh - 122px);
  margin: 0 auto;
  padding: 54px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 680px; }
.hero-banner {
  width: 100%;
  min-height: calc(100vh - 122px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  background:
    radial-gradient(circle at 72% 45%, rgba(169, 141, 83, .18), transparent 34%),
    linear-gradient(135deg, #10200f 0%, #192d13 54%, #0d1a0d 100%);
  overflow: hidden;
}
.hero-slide {
  grid-area: 1 / 1;
  min-height: calc(100vh - 122px);
  padding: clamp(58px, 7vw, 92px) max(24px, calc((100vw - 1220px) / 2)) clamp(64px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2600ms ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-banner .hero-copy {
  max-width: 620px;
  padding-left: 0;
}
.hero-banner .eyebrow {
  color: var(--gold-2);
}
.hero-banner h1 {
  color: var(--white);
  max-width: 100%;
  font-size: clamp(58px, 6vw, 88px);
  letter-spacing: .1em;
  text-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}
.hero-banner .lead {
  max-width: 520px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.18;
}
.hero-banner .button {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green);
}
.hero-banner .button.secondary {
  border-color: rgba(213, 198, 162, .62);
  background: transparent;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--brand-font);
  font-weight: 500;
  line-height: 1.04;
  text-transform: uppercase;
}
h1 { font-size: clamp(58px, 8.6vw, 124px); letter-spacing: .12em; }
h2 { font-size: clamp(34px, 5vw, 64px); letter-spacing: .08em; }
h3 { font-size: 18px; letter-spacing: .14em; }
.lead {
  max-width: 580px;
  margin: 28px 0 30px;
  color: var(--green-2);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.16;
}
.hero-actions { gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.button.secondary { background: transparent; color: var(--green); }

.hero-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}
.hero-stage::before {
  content: "";
  position: absolute;
  width: min(94%, 500px);
  height: min(86%, 620px);
  border: 1px solid var(--gold-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(244, 239, 229, .72)), var(--white);
  box-shadow: var(--shadow);
}
.hero-stage::after {
  content: "From the Aegean";
  position: absolute;
  right: -22px;
  bottom: 74px;
  color: rgba(169, 141, 83, .72);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-stage img {
  position: relative;
  z-index: 1;
  width: min(78%, 390px);
  max-height: 690px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 24px rgba(25, 45, 19, .13));
}

.brand-board-stage {
  min-height: 650px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.brand-board-stage::before,
.brand-board-stage::after {
  display: none;
}
.brand-board-stage img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  filter: none;
}

.ephesus-banner-stage {
  min-height: clamp(420px, 46vw, 640px);
  isolation: isolate;
}
.ephesus-banner-stage::before,
.ephesus-banner-stage::after {
  display: none;
}
.ephesus-banner-stage img {
  width: min(100%, 660px);
  max-height: none;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .22));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 48%, rgba(0, 0, 0, .82) 64%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 48%, rgba(0, 0, 0, .82) 64%, transparent 82%);
}

.grove-banner-stage {
  min-height: clamp(420px, 46vw, 640px);
  overflow: hidden;
}
.grove-banner-stage::before,
.grove-banner-stage::after {
  display: none;
}
.grove-banner-stage img {
  width: min(100%, 650px);
  height: clamp(420px, 44vw, 620px);
  max-height: none;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  filter: saturate(.9) contrast(.94) brightness(.72) drop-shadow(0 34px 70px rgba(0, 0, 0, .24));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 54%, rgba(0, 0, 0, .86) 68%, transparent 86%);
  mask-image: radial-gradient(ellipse at center, #000 54%, rgba(0, 0, 0, .86) 68%, transparent 86%);
}

.brand-icons {
  width: min(1220px, calc(100% - 32px));
  margin: -18px auto 0;
  padding: 22px 0 38px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line);
}
.brand-icons a {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--green);
  text-decoration: none;
}
.brand-icons strong {
  font-family: var(--brand-font);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid var(--gold-2);
  background-image: url("../images/defnem-brand-board.png");
  background-size: 560px 560px;
  box-shadow: 0 10px 30px rgba(25, 45, 19, .08);
}
.icon-story { background-position: 8% 94%; }
.icon-groves { background-position: 28% 94%; }
.icon-oil { background-position: 45% 94%; }
.icon-ephesus { background-position: 61% 94%; }
.icon-sustain { background-position: 77% 94%; }
.icon-shop { background-position: 94% 94%; }

.page-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.page-hero h1 {
  max-width: 100%;
  font-size: clamp(26px, 2.7vw, 40px);
  letter-spacing: .045em;
  line-height: 1.1;
  white-space: normal;
  overflow-wrap: anywhere;
}
.page-hero p:last-child {
  margin: 0;
  color: var(--green-2);
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.25;
}

.section {
  padding: 100px 0;
  border-top: 1px solid rgba(169, 141, 83, .22);
}
.section-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}
.section-lead {
  margin: 0;
  color: var(--green-2);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.18;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, .86fr);
  gap: 68px;
  align-items: center;
}
.image-frame {
  min-height: 560px;
  border: 1px solid var(--gold-2);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(25, 45, 19, .08);
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}
.copy p {
  color: var(--green-2);
  font-size: 27px;
  line-height: 1.32;
}
.quote {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 31px;
  font-style: italic;
}

.collection {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-category {
  scroll-margin-top: 116px;
}
.coming-soon {
  min-height: 220px;
  padding: 34px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .68);
}
.coming-soon p {
  max-width: 560px;
  margin: 0;
  color: var(--green-2);
  font-size: 26px;
  line-height: 1.25;
}
.product-card {
  display: grid;
  grid-template-rows: 370px auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
}
.product-thumb {
  display: grid;
  place-items: end center;
  padding: 24px 24px 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,239,229,.5));
}
.product-thumb img {
  height: 340px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}
.product-body {
  padding: 24px;
  border-top: 1px solid var(--line);
}
.product-body h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(27px, 2.6vw, 38px);
  letter-spacing: .07em;
  line-height: 1.05;
}
.product-size {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-body p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.32;
}
.price {
  display: block;
  margin: 0 0 18px;
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 23px;
  letter-spacing: .1em;
}
.demo {
  display: block;
  margin: 5px 0 18px;
  color: var(--muted);
  font-size: 17px;
  font-style: italic;
}
.product-actions {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.qty {
  height: 42px;
  min-width: 126px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}
.qty button {
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 20px;
}
.qty span {
  text-align: center;
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .14em;
}
.small-button {
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.small-button.outline {
  background: transparent;
  color: var(--green);
}

.feature-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature, .blog-card, .contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
}
.feature p, .blog-card p, .contact-card p {
  color: var(--muted);
  font-size: 21px;
}
.blog-card .date {
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.blog-card {
  color: inherit;
  text-decoration: none;
  min-height: 260px;
  display: grid;
  align-content: start;
}
.blog-card:hover h3 {
  color: var(--gold);
}

.home-blog {
  overflow: hidden;
}
.home-blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .62fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: end;
  margin-bottom: 46px;
}
.home-blog-hero h2 {
  max-width: 650px;
  font-size: clamp(38px, 4.6vw, 70px);
  letter-spacing: .065em;
  line-height: 1.04;
  white-space: normal;
}
.home-blog-hero p:last-child {
  margin: 0;
  color: var(--green);
  padding: 0 0 10px 32px;
  border-left: 1px solid var(--gold);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.24;
}
.home-blog-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}
.home-blog-collage img {
  width: 100%;
  height: clamp(280px, 31vw, 430px);
  object-fit: cover;
}
.home-blog-collage img:first-child {
  background: var(--green);
  object-fit: contain;
}
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.home-blog-card {
  min-height: 300px;
  position: relative;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: var(--green);
}
.home-blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(25, 45, 19, .18), rgba(25, 45, 19, .88)),
    rgba(25, 45, 19, .56);
}
.home-blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  filter: grayscale(.2) saturate(.7);
  mix-blend-mode: luminosity;
}
.home-blog-card span,
.home-blog-card h3 {
  position: relative;
  z-index: 2;
}
.home-blog-card span {
  color: var(--gold-2);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-blog-card h3 {
  color: var(--white);
  max-width: 330px;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.08;
}
.article {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}
.article p {
  color: var(--green-2);
  font-size: 27px;
  line-height: 1.34;
}
.article h2 {
  margin-top: 52px;
  font-size: clamp(25px, 2.8vw, 36px);
}
.article .lead {
  max-width: none;
}
.article-image {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 70px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.article-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}
.article-cta {
  margin-top: 54px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}

.about-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: end;
  overflow: hidden;
}
.about-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 3.8vw, 58px);
  letter-spacing: .06em;
  line-height: 1.05;
}
.about-hero > p {
  margin: 0 0 10px;
  padding-left: 30px;
  border-left: 1px solid var(--gold);
  color: var(--green-2);
  font-size: clamp(24px, 2vw, 33px);
  line-height: 1.24;
}
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-intro-image {
  min-height: 620px;
  overflow: hidden;
}
.about-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.about-intro-copy {
  padding: clamp(48px, 7vw, 110px);
  display: grid;
  align-content: center;
  background: var(--green);
}
.about-intro-copy h2,
.about-intro-copy p {
  color: var(--white);
}
.about-intro-copy .eyebrow {
  color: var(--gold-2);
}
.about-intro-copy h2 {
  font-size: clamp(38px, 5.4vw, 78px);
}
.about-intro-copy p:last-child {
  color: rgba(255, 255, 255, .78);
  font-size: 27px;
  line-height: 1.28;
}
.about-statement .section-inner {
  display: grid;
  gap: 22px;
}
.about-statement h2 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 82px);
}
.about-statement p:last-child {
  max-width: 760px;
  color: var(--green-2);
  font-size: 28px;
  line-height: 1.28;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-grid article,
.about-values-grid div {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
}
.about-grid span {
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 13px;
  letter-spacing: .16em;
}
.about-grid p,
.about-values-grid p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.32;
}
.about-ephesus .image-frame {
  background: var(--green);
}
.about-ephesus .image-frame img {
  object-fit: contain;
  padding: 50px;
  background: var(--green);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.legal-page {
  background: var(--paper);
}
.legal-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
}
.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green);
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: .06em;
  line-height: 1.05;
}
.legal-hero > p {
  margin: 0 0 8px;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  color: var(--green-2);
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.2;
}
.compact-section {
  padding-top: 28px;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.policy-grid.small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 34px;
}
.policy-card {
  min-height: 230px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.policy-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.policy-card span {
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.policy-card h2,
.policy-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}
.policy-card h3 {
  font-size: 30px;
}
.policy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.28;
}
.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 118px;
  display: grid;
  border-top: 1px solid var(--line);
}
.legal-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-2);
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.legal-nav a.active,
.legal-nav a:hover {
  color: var(--gold);
}
.legal-content {
  max-width: 900px;
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
}
.legal-content h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(32px, 3.2vw, 48px);
}
.legal-content h2:not(:first-child) {
  margin-top: 38px;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.34;
}
.legal-content ul {
  margin: 0 0 28px;
  padding-left: 22px;
}
.legal-content .button {
  margin-top: 20px;
}
.legal-table {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}
.legal-table div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.legal-table strong {
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.legal-table span {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.3;
}
.legal-note {
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(169, 141, 83, .1);
}
.service-steps {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-steps div {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.service-steps span {
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .16em;
}
.service-steps h3 {
  margin: 10px 0 8px;
  color: var(--green);
  font-size: 28px;
}
.service-steps p {
  margin: 0;
  font-size: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 32px;
}
.contact-card a {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 13px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-section {
  padding-top: 84px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 24px;
  align-items: stretch;
}
.contact-form,
.contact-info-panel,
.bank-info {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}
.contact-form {
  padding: clamp(26px, 4vw, 46px);
}
.contact-form h2,
.contact-info-panel h2,
.bank-info h2 {
  font-size: clamp(30px, 4vw, 54px);
}
.contact-form p {
  max-width: 720px;
  color: var(--green-2);
  font-size: 24px;
  line-height: 1.25;
}
.contact-info-panel {
  padding: clamp(26px, 3vw, 38px);
  display: grid;
  align-content: start;
}
.info-list {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.info-list div,
.bank-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.info-list span,
.bank-row span {
  color: var(--gold);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.info-list strong,
.bank-row strong {
  color: var(--green);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}
.contact-map-section {
  padding-top: 0;
}
.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 24px;
}
.map-card {
  min-height: 520px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--green);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(.18) contrast(.96) saturate(.75);
}
.bank-info {
  padding: clamp(26px, 3vw, 38px);
}
.bank-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
}
.product-detail-media {
  min-height: 680px;
  display: grid;
  place-items: end center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(244,239,229,.72));
  overflow: hidden;
}
.product-detail-media img {
  width: min(76%, 390px);
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}
.product-story p {
  color: var(--green-2);
  font-size: 27px;
  line-height: 1.3;
}
.product-story h1 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: .08em;
  line-height: 1.05;
}
.spec-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.spec-list strong {
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: start;
}
.checkout-form, .checkout-summary {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.checkout-form {
  display: grid;
  gap: 16px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  color: var(--green);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.field input, .field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  font-family: var(--body-font);
  font-size: 20px;
}
.field textarea {
  min-height: 104px;
  resize: vertical;
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.checkout-item.total {
  color: var(--green);
  font-family: var(--brand-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(20, 27, 17, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  width: min(460px, 100%);
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -28px 0 80px rgba(25, 45, 19, .18);
  transform: translateX(100%);
  transition: transform .24s ease;
}
.cart-panel.open { transform: translateX(0); }
.cart-head, .cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.cart-items {
  overflow: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cart-empty {
  margin: 26px 0;
  color: var(--muted);
  font-style: italic;
}
.cart-row {
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(169, 141, 83, .18);
}
.cart-row img {
  width: 70px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
}
.cart-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.cart-total {
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--brand-font);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  min-height: 620px;
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 13, 7, .94), rgba(25, 45, 19, .82)),
    url("../images/olive-grove-hero.png") center / cover;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(169, 141, 83, .22), transparent 28%),
    rgba(3, 6, 3, .36);
}
.footer-overlay {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 28px;
}
.footer-brand {
  display: grid;
  place-items: center;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 142px;
  opacity: .94;
  filter: brightness(0) invert(1) drop-shadow(0 20px 38px rgba(0, 0, 0, .28));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.35fr;
  gap: clamp(32px, 5vw, 78px);
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 13px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 17px;
  letter-spacing: .08em;
}
.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.35;
  text-decoration: none;
}
.footer-newsletter p {
  max-width: 390px;
}
.newsletter-form {
  height: 48px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid rgba(255, 255, 255, .62);
}
.newsletter-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 15px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .62);
}
.newsletter-form button {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .62);
  padding: 0 18px;
  background: rgba(169, 141, 83, .22);
  color: var(--white);
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-trust {
  margin-top: 64px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.footer-trust img {
  max-height: 34px;
  width: auto;
  max-width: min(48%, 560px);
  object-fit: contain;
  opacity: .82;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  padding-top: 26px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  text-align: center;
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    padding: 12px 0;
  }
  .menu-toggle {
    display: grid;
    grid-column: 1;
    grid-row: 1;
  }
  .brand {
    grid-column: 2;
    justify-content: center;
    justify-self: center;
    order: -1;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    grid-column: 3;
    grid-row: 1;
  }
  .hero, .page-hero, .split, .section-head, .contact-grid, .contact-layout, .contact-map-grid, .about-hero, .about-intro {
    grid-template-columns: 1fr;
  }
  .legal-hero,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
  }
  .policy-grid,
  .service-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-grid,
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-detail, .checkout-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-stage { min-height: 560px; order: -1; }
  .hero-banner {
    grid-template-columns: 1fr;
    padding: 54px 24px 64px;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .hero-banner .hero-stage {
    min-height: 420px;
    order: 2;
  }
  .brand-board-stage img { min-height: 560px; }
  .brand-icons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .collection, .feature-grid, .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  body { font-size: 18px; }
  .nav, .hero, .page-hero, .section-inner, .footer-overlay {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
  .site,
  main,
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }
  main {
    display: flex;
    flex-direction: column;
  }
  .hero-banner { order: 1; }
  .home-products { order: 2; }
  .home-features { order: 3; }
  .home-story { order: 4; }
  .home-blog { order: 5; }
  .brand img { width: 62px; height: 62px; }
  .nav {
    position: relative;
    grid-template-columns: 1fr auto 1fr;
    min-height: 76px;
    gap: 8px;
  }
  .nav-actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    justify-content: flex-start;
    gap: 6px;
    order: 0;
  }
  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    justify-content: center;
    order: 0;
  }
  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    order: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 10px 30px rgba(25, 45, 19, .08);
  }
  .menu-toggle span {
    background: var(--white);
  }
  .mobile-menu {
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    padding: 20px;
    border-right: 0;
    border-left: 1px solid var(--line);
    box-shadow: -28px 0 80px rgba(25, 45, 19, .18);
    transform: translateX(100%);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-links a {
    padding: 17px 0;
    font-size: 17px;
    letter-spacing: .12em;
  }
  .site-search label {
    width: 38px;
    min-width: 38px;
    height: 38px;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 0;
    padding: 0;
    border-radius: 999px;
    border-color: rgba(169, 141, 83, .34);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 10px 30px rgba(25, 45, 19, .08);
  }
  .site-search span {
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    border: 1.5px solid var(--green);
    border-radius: 50%;
    font-size: 0;
    letter-spacing: 0;
  }
  .site-search span::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1.5px;
    right: -5px;
    bottom: -3px;
    background: var(--green);
    transform: rotate(45deg);
    transform-origin: center;
  }
  .site-search input {
    width: 1px;
    height: 1px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .lang-text {
    width: 64px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
    border: 1px solid rgba(169, 141, 83, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 10px 30px rgba(25, 45, 19, .08);
  }
  .lang-text::before {
    content: "🌐";
    font-size: 13px;
    line-height: 1;
  }
  .lang-text span {
    display: none;
  }
  .lang-text button {
    font-size: 0;
    letter-spacing: 0;
  }
  .lang-text button::after {
    color: var(--green-3);
    font-family: var(--brand-font);
    font-size: 8px;
    letter-spacing: .06em;
  }
  .lang-text button[data-lang="tr"]::after { content: "TR"; }
  .lang-text button[data-lang="en"]::after { content: "EN"; }
  .lang-text button.active::after {
    color: var(--green);
  }
  .cart-button { display: none; }
  .cart-button .cart-label { display: none; }
  h1 { font-size: clamp(44px, 14vw, 70px); }
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(48px, 17vw, 68px);
    letter-spacing: .06em;
    overflow-wrap: anywhere;
  }
  .page-hero h1 {
    white-space: normal;
    font-size: clamp(28px, 7.5vw, 36px);
    letter-spacing: .045em;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }
  .page-hero p:last-child {
    max-width: 100%;
    font-size: 20px;
    overflow-wrap: anywhere;
  }
  .hero {
    padding-top: 34px;
    gap: 26px;
    overflow: visible;
  }
  .hero-banner {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    gap: 30px;
    overflow: hidden;
  }
  .hero-slide {
    min-height: auto;
    padding: 42px 12px 52px;
    gap: 30px;
  }
  .hero-banner .hero-copy {
    width: 100%;
    max-width: calc(100vw - 24px);
  }
  .hero-banner h1 {
    font-size: clamp(42px, 12.5vw, 54px);
    letter-spacing: .07em;
  }
  .hero-copy,
  .lead,
  .copy,
  .section-head,
  .product-card,
  .feature,
  .blog-card,
  .contact-card,
  .checkout-card,
  .product-detail-copy {
    min-width: 0;
    max-width: 100%;
  }
  .hero > *,
  .split > *,
  .section-inner > * {
    min-width: 0;
  }
  .hero-copy,
  .lead {
    width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-stage {
    display: none;
    min-height: 0;
    order: 2;
  }
  .hero-copy {
    order: 1;
  }
  .hero-stage::after { display: none; }
  .hero-stage img { width: min(78%, 292px); max-height: 430px; }
  .ephesus-banner-stage {
    min-height: 300px;
  }
  .grove-banner-stage {
    min-height: 300px;
  }
  .ephesus-banner-stage img {
    width: min(100%, 360px);
    max-height: none;
  }
  .grove-banner-stage img {
    width: min(100%, 360px);
    height: 300px;
  }
  .hero-banner .lead {
    max-width: min(100%, 360px);
    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.22;
  }
  .brand-board-stage {
    min-height: 0;
    width: 100%;
    max-width: calc(100vw - 24px);
  }
  .brand-board-stage img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .collection {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 0 14px;
  }
  .collection::-webkit-scrollbar {
    display: none;
  }
  .product-card {
    grid-template-rows: 260px auto;
    scroll-snap-align: start;
  }
  .product-thumb {
    padding: 18px 18px 0;
  }
  .product-thumb img {
    height: 240px;
  }
  .product-body {
    padding: 18px;
  }
  .product-body .eyebrow {
    font-size: 10px;
    letter-spacing: .16em;
  }
  .product-body p {
    font-size: 17px;
    line-height: 1.28;
  }
  .home-blog-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 0 14px;
  }
  .home-blog-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .home-blog-hero h2 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: .08em;
    white-space: normal;
  }
  .home-blog-hero p:last-child {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--gold);
    font-size: 22px;
    line-height: 1.22;
  }
  .home-blog-collage {
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78vw);
    grid-template-columns: none;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-bottom: 12px;
  }
  .home-blog-collage::-webkit-scrollbar {
    display: none;
  }
  .home-blog-collage img {
    height: 250px;
    scroll-snap-align: start;
  }
  .home-blog-grid::-webkit-scrollbar {
    display: none;
  }
  .home-blog-card {
    min-height: 300px;
    padding: 22px;
    scroll-snap-align: start;
  }
  .home-blog-card h3 {
    font-size: 25px;
  }
  .brand-icons {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
  }
  .brand-icons a {
    min-width: 0;
  }
  .brand-icons strong {
    max-width: 100%;
    text-align: center;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .brand-icon {
    width: 58px;
    height: 58px;
  }
  .section { padding: 74px 0; }
  .page-hero { padding: 42px 0 30px; }
  .about-hero {
    padding: 58px 0 42px;
    gap: 22px;
  }
  .about-hero h1 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: .055em;
    overflow-wrap: anywhere;
  }
  .about-hero > p {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--gold);
    font-size: 23px;
  }
  .legal-hero {
    padding: 58px 0 34px;
    gap: 22px;
  }
  .legal-hero h1 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: .06em;
    overflow-wrap: anywhere;
  }
  .legal-hero > p {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--gold);
    font-size: 22px;
  }
  .policy-grid,
  .policy-grid.small,
  .service-steps {
    grid-template-columns: 1fr;
  }
  .policy-card,
  .legal-content,
  .service-steps div {
    padding: 22px;
  }
  .legal-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 20px;
  }
  .about-intro-image,
  .about-intro-image img {
    min-height: 420px;
  }
  .about-intro-copy {
    padding: 34px 22px;
  }
  .about-intro-copy p:last-child,
  .about-statement p:last-child {
    font-size: 22px;
  }
  .about-intro-copy h2,
  .about-statement h2 {
    font-size: clamp(34px, 10vw, 50px);
    letter-spacing: .055em;
    overflow-wrap: anywhere;
  }
  .about-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-ephesus .image-frame img {
    padding: 24px;
  }
  .image-frame, .image-frame img { min-height: 420px; }
  .product-detail-media { min-height: 470px; }
  .product-detail-media img { max-height: 430px; }
  .field-grid { grid-template-columns: 1fr; }
  .contact-section {
    padding-top: 64px;
  }
  .contact-form,
  .contact-info-panel,
  .bank-info {
    padding: 22px;
  }
  .contact-form p {
    font-size: 20px;
  }
  .info-list div,
  .bank-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .map-card,
  .map-card iframe {
    min-height: 360px;
  }
  .product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-actions .qty {
    grid-column: 1 / -1;
  }
  .small-button {
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: .09em;
    line-height: 1.15;
    white-space: normal;
  }
  .site-footer {
    min-height: auto;
  }
  .footer-overlay {
    padding: 42px 0 24px;
  }
  .footer-brand {
    margin-bottom: 34px;
  }
  .footer-brand img {
    width: 112px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col {
    gap: 10px;
  }
  .footer-col h3 {
    font-size: 15px;
  }
  .footer-col a,
  .footer-col p {
    font-size: 18px;
  }
  .footer-trust {
    margin-top: 38px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-trust img {
    max-width: 100%;
    max-height: 30px;
  }
  .footer-bottom {
    text-align: left;
    font-size: 15px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .button, .small-button, .qty { width: 100%; }
.cart-panel { padding: 22px; }
}

.cookie-consent {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  background: rgba(22, 39, 17, .96);
  color: #fff;
  border: 1px solid rgba(181, 154, 94, .55);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  font-family: Cinzel, Georgia, serif;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cookie-consent p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.45;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-primary,
.cookie-secondary {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(181,154,94,.75);
  cursor: pointer;
  font-family: Cinzel, Georgia, serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cookie-primary {
  background: #b59a5e;
  color: #172410;
}
.cookie-secondary {
  background: transparent;
  color: #fff;
}
@media (max-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
