:root {
  --green-950: #071b10;
  --green-900: #0d2a18;
  --green-800: #12351f;
  --green-700: #1f4a2d;
  --green-100: #e9f1e7;
  --cream-50: #fffaf2;
  --cream-100: #f8efe2;
  --cream-200: #f0e0c9;
  --gold: #b98d38;
  --gold-soft: #e6cf95;
  --rose: #8c1747;
  --teal: #177a73;
  --ink: #182018;
  --muted: #6e756a;
  --line: rgba(18, 53, 31, .14);
  --shadow: 0 24px 70px rgba(7, 27, 16, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf3 0%, #f7efe2 52%, #fffaf3 100%);
  line-height: 1.55;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
::selection { background: var(--green-800); color: var(--cream-50); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 50;
  background: var(--green-900);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 242, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 27, 16, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 42px;
    max-width: 190px;
  }
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--cream-50);
  background: radial-gradient(circle at 70% 20%, #2f6f3f, var(--green-900));
  box-shadow: 0 14px 35px rgba(18, 53, 31, .18);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 700;
}
.brand-text strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--green-900);
  letter-spacing: .08em;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}
.brand-text span {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(24, 32, 24, .76);
  font-weight: 650;
  font-size: 14px;
  transition: .2s ease;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-900);
  background: rgba(18, 53, 31, .08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff8ed;
  border-radius: 999px;
  color: var(--green-900);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 53, 31, .2);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--green-900); }
.btn-light {
  background: rgba(255,255,255,.76);
  border-color: rgba(255,255,255,.72);
  color: var(--green-900);
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-outline {
  border-color: var(--line);
  color: var(--green-900);
  background: rgba(255,250,242,.7);
}
.btn-outline:hover { border-color: rgba(18, 53, 31, .36); background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .8;
}
.hero::before {
  inset: -180px auto auto -120px;
  width: 380px;
  height: 380px;
  background: rgba(185, 141, 56, .16);
}
.hero::after {
  right: -160px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  background: rgba(31, 74, 45, .12);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
}
.hero h1 em,
.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero-text {
  max-width: 660px;
}
.hero-text > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(24, 32, 24, .78);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 640px;
}
.hero-point {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.54);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.hero-point strong {
  display: block;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1;
}
.hero-point span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.hero-visual {
  position: relative;
  min-height: 650px;
}
.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-card.main {
  inset: 0 44px 82px 52px;
}
.visual-card.small-a {
  width: 44%;
  height: 38%;
  left: 0;
  bottom: 0;
  transform: rotate(-4deg);
}
.visual-card.small-b {
  width: 40%;
  height: 34%;
  right: 0;
  bottom: 24px;
  transform: rotate(5deg);
}
.floating-seal {
  position: absolute;
  right: 10px;
  top: 54px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .92);
  border: 1px dashed rgba(18, 53, 31, .45);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--green-900);
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(18, 53, 31, .16);
}

.section {
  padding: 78px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.section-title {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--green-900);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.04em;
}
.section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 660px;
  font-size: 17px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.72);
  color: #fff;
  background: var(--green-900);
  box-shadow: var(--shadow);
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,27,16,.05), rgba(7,27,16,.74));
  z-index: 1;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card > *:not(img) { position: relative; z-index: 2; }
.category-card span {
  font-weight: 850;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.category-card h3 {
  margin: 8px 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  line-height: 1;
}
.category-card p { margin: 10px 0 0; color: rgba(255,255,255,.82); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18, 53, 31, .12);
  box-shadow: 0 20px 55px rgba(7, 27, 16, .08);
  transition: .25s ease;
}
.product-card:hover,
.product-card.is-highlighted {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(7, 27, 16, .14);
  border-color: rgba(185, 141, 56, .42);
}
.product-image {
  position: relative;
  aspect-ratio: 4 / 4.75;
  overflow: hidden;
  background: #f1e7d6;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}
.product-card:hover .product-image img { transform: scale(1.035); }
.product-image span {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255,250,242,.88);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 12px;
}
.product-content { padding: 22px; }
.product-content h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  line-height: 1.05;
}
.product-content p:not(.eyebrow) { color: rgba(24,32,24,.72); margin: 12px 0 0; }
.product-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.product-content li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-800);
  background: rgba(233,241,231,.66);
  font-size: 12px;
  font-weight: 750;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-bar button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  color: var(--green-900);
  padding: 10px 15px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.filter-bar button.is-active {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
}

.story-band {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-900), #1f4a2d 62%, #8c6a29);
  color: #fff;
  box-shadow: var(--shadow);
}
.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  align-items: stretch;
}
.story-image {
  min-height: 520px;
  background: #203;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-content { padding: clamp(34px, 5vw, 64px); }
.story-content h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
}
.story-content p { color: rgba(255,255,255,.82); font-size: 17px; }
.story-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.story-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.story-list b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: var(--gold-soft);
}
.story-list strong { display: block; font-size: 17px; }
.story-list span { color: rgba(255,255,255,.7); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 22px;
}
.feature-card h3 { margin: 18px 0 8px; color: var(--green-900); }
.feature-card p { margin: 0; color: var(--muted); }

.cta {
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 62px);
  background:
    radial-gradient(circle at 10% 20%, rgba(185,141,56,.24), transparent 32%),
    linear-gradient(135deg, #fff8ec, #edf4e8);
  border: 1px solid rgba(18, 53, 31, .12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}
.cta p { color: var(--muted); margin: 12px 0 0; max-width: 720px; }

.page-hero {
  padding: 72px 0 36px;
  text-align: center;
}
.page-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(7, 27, 16, .07);
}
.panel h2,
.panel h3 {
  margin-top: 0;
  color: var(--green-900);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  line-height: 1.05;
}
.panel p { color: var(--muted); }
.panel ul { padding-left: 18px; color: var(--muted); }
.panel li + li { margin-top: 10px; }
.contact-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.62);
  margin-top: 14px;
}
.contact-card span { display: block; color: var(--muted); font-size: 14px; }
.contact-card strong { display: block; color: var(--green-900); margin-top: 4px; font-size: 18px; }

.site-footer {
  margin-top: 70px;
  color: rgba(255,255,255,.78);
  background: var(--green-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 28px;
  padding: 54px 0;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  letter-spacing: .06em;
}
.footer-brand span {
  display: block;
  margin-top: 5px;
  color: var(--gold-soft);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-grid h3 { color: #fff; margin: 0 0 14px; }
.footer-grid p { margin: 12px 0 0; max-width: 520px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-size: 13px;
}
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  .header-actions .btn { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 82px 18px auto 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,250,242,.96);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a { padding: 14px 16px; }
  .hero-grid,
  .story-grid,
  .about-grid,
  .contact-grid,
  .cta { grid-template-columns: 1fr; }
  .hero-visual { min-height: 580px; }
  .category-strip,
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 44px; height: 44px; border-radius: 15px; }
  .brand-text strong { font-size: 17px; }
  .brand-text span { font-size: 10px; letter-spacing: .18em; }
  .site-nav { inset-top: 72px; }
  .hero { padding-top: 44px; }
  .hero-points,
  .category-strip,
  .feature-grid,
  .product-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 450px; }
  .visual-card.main { inset: 0 22px 70px 22px; }
  .visual-card.small-a { width: 45%; height: 32%; }
  .visual-card.small-b { width: 43%; height: 30%; }
  .floating-seal { width: 104px; height: 104px; font-size: 12px; right: 4px; }
  .section { padding: 52px 0; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 18px; }
  .story-image { min-height: 340px; }
  .footer-bottom { flex-direction: column; }
}

/* Güncelleme: gerçek Lorella logosu, WhatsApp ve ürün görsel taşma düzeltmeleri */
html { scroll-padding-top: 128px; }
.brand {
  min-width: auto;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 215px;
  max-width: 34vw;
  height: auto;
}
.header-inner { min-height: 112px; }

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-image {
  display: block;
  aspect-ratio: 4 / 5;
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf2, #f5ebdc);
  border-bottom: 1px solid rgba(18, 53, 31, .08);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
}
.product-card:hover .product-image img { transform: scale(1.015); }
.product-image span { z-index: 2; }
.product-card { scroll-margin-top: 130px; }
.footer-bottom a { color: inherit; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-800);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(7, 27, 16, .24);
  border: 1px solid rgba(255,255,255,.22);
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--green-900);
}

@media (max-width: 980px) {
  .site-nav { inset: 112px 18px auto 18px; }
  .brand-logo { width: 185px; max-width: 48vw; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 92px; }
  .header-inner { min-height: 88px; }
  .brand-logo { width: 145px; max-width: 50vw; }
  .site-nav { inset: 88px 12px auto 12px; }
  .product-image { padding: 8px; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-height: 44px; padding: 10px 15px; font-size: 14px; }
}
