:root {
  --cream: #F6F2EA;
  --olive: #4B5A46;
  --terracotta: #C65A3A;
  --stone: #DCCBB3;
  --espresso: #3B2E26;
  --white: #FFFFFF;

  --font-heading: "Playfair Display", serif;
  --font-body: "Nunito Sans", sans-serif;
  --font-label: "Montserrat", sans-serif;

  --container: 1160px;
  --radius-large: 28px;
  --radius-medium: 20px;
  --shadow-soft: 0 20px 50px rgba(59, 46, 38, 0.10);
}

/* GENEL AYARLAR */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.6;
}

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

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

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

/* ÜST MENÜ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75, 90, 70, 0.14);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--olive);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--olive);
  background: rgba(255, 255, 255, 0.35);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  color: rgba(59, 46, 38, 0.82);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--terracotta);
}

.header-instagram {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--cream);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.header-instagram:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}

/* ORTAK BAŞLIK YAPILARI */

.section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--olive);
  line-height: 1.12;
}

h1 {
  font-size: clamp(64px, 9vw, 118px);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 28px;
}

p {
  margin: 0;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading p {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(59, 46, 38, 0.76);
}

/* BUTONLAR */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--olive);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(75, 90, 70, 0.35);
  color: var(--olive);
  background: rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--olive);
}

.btn-light:hover {
  background: var(--white);
  color: var(--terracotta);
  transform: translateY(-2px);
}

/* HERO */

.hero-section {
  padding: 96px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -160px;
  top: 40px;
  background: rgba(198, 90, 58, 0.10);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.hero-content {
  max-width: 680px;
}

.hero-slogan {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--terracotta);
  line-height: 1.15;
}

.hero-description {
  max-width: 580px;
  margin-top: 24px;
  font-size: 21px;
  color: rgba(59, 46, 38, 0.78);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.label-card {
  width: min(100%, 430px);
  min-height: 470px;
  padding: 44px;
  border: 1.5px solid rgba(75, 90, 70, 0.32);
  border-radius: var(--radius-large);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(220, 203, 179, 0.46)),
    var(--stone);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.label-card::before {
  content: "G";
  position: absolute;
  top: 22px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 170px;
  line-height: 1;
  color: rgba(75, 90, 70, 0.08);
}

.label-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(75, 90, 70, 0.24);
  border-radius: 22px;
  pointer-events: none;
}

.label-small {
  position: relative;
  z-index: 1;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--terracotta);
}

.label-card h2 {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 50px);
}

.label-card p {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 17px;
  color: rgba(59, 46, 38, 0.78);
}

/* MARKA HİKAYESİ */

.story-section {
  padding: 90px 0;
  background: rgba(220, 203, 179, 0.28);
  border-top: 1px solid rgba(75, 90, 70, 0.10);
  border-bottom: 1px solid rgba(75, 90, 70, 0.10);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.section-text {
  display: grid;
  gap: 22px;
  font-size: 19px;
  color: rgba(59, 46, 38, 0.78);
}

/* ÜRÜN DÜNYASI */

.products-section {
  padding: 96px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  min-height: 330px;
  padding: 32px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(75, 90, 70, 0.16);
  box-shadow: 0 12px 34px rgba(59, 46, 38, 0.06);
  transition: all 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 90, 58, 0.35);
  box-shadow: 0 22px 44px rgba(59, 46, 38, 0.10);
}

.card-number {
  display: inline-flex;
  margin-bottom: 34px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  color: var(--terracotta);
}

.product-card h3 {
  margin-bottom: 14px;
}

.product-card p {
  font-size: 18px;
  color: rgba(59, 46, 38, 0.80);
}

.product-card small {
  display: block;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(59, 46, 38, 0.64);
}

/* YAKLAŞIM */

.approach-section {
  padding: 96px 0;
  background: var(--olive);
  color: var(--cream);
}

.approach-section h2,
.approach-section h3 {
  color: var(--cream);
}

.approach-section .center-heading p {
  color: rgba(246, 242, 234, 0.78);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.approach-card {
  padding: 32px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(246, 242, 234, 0.18);
  background: rgba(246, 242, 234, 0.06);
}

.approach-card p {
  margin-top: 14px;
  color: rgba(246, 242, 234, 0.76);
  font-size: 17px;
}

/* YAKINDA */

.coming-soon-section {
  padding: 96px 0;
}

.coming-soon-card {
  padding: 54px;
  border-radius: var(--radius-large);
  background: var(--terracotta);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.coming-soon-card h2 {
  color: var(--cream);
}

.coming-soon-card .section-eyebrow {
  color: rgba(246, 242, 234, 0.82);
}

.coming-soon-card p {
  max-width: 740px;
  margin-top: 14px;
  font-size: 18px;
  color: rgba(246, 242, 234, 0.84);
}

/* İLETİŞİM */

.contact-section {
  padding: 96px 0;
  background: rgba(220, 203, 179, 0.28);
  border-top: 1px solid rgba(75, 90, 70, 0.10);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.contact-section p {
  max-width: 600px;
  margin-top: 20px;
  font-size: 18px;
  color: rgba(59, 46, 38, 0.76);
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius-medium);
  background: var(--cream);
  border: 1px solid rgba(75, 90, 70, 0.16);
  box-shadow: 0 16px 40px rgba(59, 46, 38, 0.08);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(75, 90, 70, 0.14);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item span {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.contact-item a {
  font-weight: 700;
  color: var(--olive);
}

.contact-item a:hover {
  color: var(--terracotta);
}

/* FOOTER */

.site-footer {
  padding: 34px 0;
  background: var(--espresso);
  color: var(--cream);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  font-family: var(--font-heading);
  font-size: 26px;
}

.footer-inner p {
  margin: 4px 0 0;
  color: rgba(246, 242, 234, 0.72);
}

/* MOBİL UYUM */

@media (max-width: 920px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .header-instagram {
    margin-left: auto;
  }

  .hero-section {
    padding: 70px 0 72px;
  }

  .hero-grid,
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .product-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .brand-name {
    font-size: 22px;
  }

  .header-instagram {
    padding: 9px 14px;
    font-size: 12px;
  }

  .site-nav {
    font-size: 12px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .label-card {
    min-height: 390px;
    padding: 32px;
  }

  .story-section,
  .products-section,
  .approach-section,
  .coming-soon-section,
  .contact-section {
    padding: 70px 0;
  }

  .product-card,
  .approach-card,
  .contact-card {
    padding: 26px;
  }

  .coming-soon-card {
    padding: 34px 24px;
  }

  .contact-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
