/*
Theme Name: MOVA Theme
Theme URI: 
Author: MOVA Method
Description: MOVA Method egyedi sablon
Version: 1.0
*/
:root {
  --bg: #F4EFE8;
  --text: #222222;
  --muted: #6A625C;
  --accent: #66745E;
  --accent-dark: #4F6047;
  --accent-soft: #DDE4D6;
  --card: #FAF8F4;
  --sand: #EFE6DA;
  --line: #E2D8CC;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

::selection {
  background: var(--accent-soft);
  color: var(--text);
}

header {
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 237, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 13px;
  flex: 0 0 auto;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

nav a:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 90px 6% 80px;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(46px, 7.1vw, 80px);
  line-height: 1.04;
  margin: 0 0 24px;
  letter-spacing: -0.035em;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
}

h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.08;
  margin: 0 0 12px;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--accent-dark);
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  color: var(--accent-dark);
}

.btn-secondary:hover {
  background: #ffffff;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.hero-card .placeholder {
  height: 300px;
  border-radius: 22px;
  background:
	linear-gradient(rgba(79, 96, 71, 0.68), rgba(79, 96, 71, 0.68)),
	radial-gradient(circle at 20% 20%, #F4EFE8, transparent 32%),
	linear-gradient(135deg, #EFE6DA, #DDE4D6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 24px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

section {
  padding: 72px 6%;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(79, 96, 71, 0.06);
}

.product {
  background: linear-gradient(135deg, #FAF8F4 0%, #DDE4D6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.tag {
  display: inline-block;
  background: rgba(255,255,255,0.65);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--line);
}

.list li::before {
  content: "💭";
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 18px;
  line-height: 1;
}

.quote {
  background: var(--accent);
  color: #ffffff;
  border-radius: 30px;
  padding: 42px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 44px rgba(79, 96, 71, 0.16);
}

.cta {
  text-align: center;
  background: var(--sand);
}

.cta .container {
  max-width: 760px;
}

footer {
  padding: 56px 6%;
  background: #2B2A28;
  color: #ffffff;
  text-align: center;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-tagline {
  color: #e9e2d9;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}

footer a:hover {
  border-bottom-color: #ffffff;
}

.small {
  font-size: 14px;
  color: #d7d0c7;
  margin: 0;
}

@media (max-width: 850px) {
  header {
	position: static;
	align-items: flex-start;
	gap: 14px;
	flex-direction: column;
  }

  nav a {
	margin: 0 14px 0 0;
  }

  .brand-logo {
	height: 50px;
  }

  .brand-name {
	font-size: 15px;
	letter-spacing: 0.04em;
  }

  .nav-dropdown {
	display: block;
	margin-top: 4px;
  }

  .dropdown-menu {
	position: static;
	display: block;
	margin-top: 6px;
	padding: 6px;
	box-shadow: none;
  }

  .dropdown-menu a {
	padding: 7px 8px;
  }

  .footer-links {
	flex-direction: column;
	gap: 10px;
  }

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

  .hero {
	padding-top: 56px;
  }

  section {
	padding: 54px 6%;
  }

  .quote {
	font-size: 20px;
	padding: 28px;
  }
}