/* =============================================
   FÁBÓLSZÍVVEL – Styles
   Egyedi kézműves fa ajándéktárgyak
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --brown-dark: #3D2B1F;
  --brown: #5C3D2E;
  --brown-medium: #8B6F4E;
  --brown-light: #A8896C;
  --green-dark: #2E5A3A;
  --green: #4A7C59;
  --green-light: #6B9F7E;
  --cream: #FDF8F0;
  --cream-dark: #F0E6D6;
  --warm: #D4A574;
  --warm-light: #E8C9A0;
  --warm-glow: #F5DFC5;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --text-muted: #8A8A8A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(60,43,31,0.08);
  --shadow-md: 0 4px 20px rgba(60,43,31,0.12);
  --shadow-lg: 0 8px 40px rgba(60,43,31,0.16);
  --shadow-warm: 0 4px 24px rgba(212,165,116,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--brown-dark); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--brown); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--brown-medium); }
p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--white); }
.section--warm { background: linear-gradient(135deg, var(--cream-dark) 0%, var(--warm-glow) 100%); }
.text-center { text-align: center; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: var(--radius-xl);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 16px rgba(74,124,89,0.3);
}
.btn--primary:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,124,89,0.4);
}
.btn--secondary {
  background: transparent; color: var(--brown);
  border: 2px solid var(--brown-light);
}
.btn--secondary:hover {
  background: var(--brown); color: var(--white);
  border-color: var(--brown);
}
.btn--warm {
  background: var(--warm); color: var(--brown-dark);
  box-shadow: 0 4px 16px rgba(212,165,116,0.3);
}
.btn--warm:hover {
  background: var(--brown-medium); color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,240,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,137,108,0.15);
  transition: all var(--transition);
}
.nav--scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(253,248,240,0.97);
}
.nav__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 1.5rem; display: flex;
  align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.nav__logo-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brown) 0%, var(--warm) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; font-weight: 700;
  font-family: var(--font-display);
}
.nav__logo-text {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--brown-dark);
}
.nav__links {
  display: flex; align-items: center; gap: 0.3rem;
  list-style: none;
}
.nav__links a {
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 500; color: var(--text-light);
  transition: all var(--transition); text-decoration: none;
}
.nav__links a:hover,
.nav__links a.router-link-active {
  color: var(--brown-dark); background: rgba(212,165,116,0.12);
}
.nav__mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem; color: var(--brown);
  font-size: 1.5rem;
}
.nav__mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md); padding: 1rem;
}
.nav__mobile-menu.open { display: block; }
.nav__mobile-menu a {
  display: block; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  color: var(--text); font-weight: 500; text-decoration: none;
}
.nav__mobile-menu a:hover { background: var(--cream-dark); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 40%, var(--warm-glow) 100%);
  padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,0.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 1.5rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.hero__text { animation: slideUp 0.8s ease forwards; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__badge {
  display: inline-block; padding: 0.4rem 1rem;
  background: rgba(74,124,89,0.1); color: var(--green);
  border-radius: var(--radius-xl); font-size: 0.85rem;
  font-weight: 600; margin-bottom: 1.5rem;
  border: 1px solid rgba(74,124,89,0.2);
}
.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin-bottom: 1.5rem; line-height: 1.15;
}
.hero__title em { color: var(--green); font-style: italic; }
.hero__subtitle {
  font-size: 1.15rem; color: var(--text-light);
  margin-bottom: 2rem; max-width: 480px; line-height: 1.8;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual {
  position: relative; animation: slideUp 1s ease 0.2s forwards; opacity: 0;
}
.hero__image-wrapper {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--warm-light) 0%, var(--cream-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero__image-placeholder {
  text-align: center; padding: 2rem; color: var(--brown-light);
}
.hero__image-placeholder .icon { font-size: 4rem; margin-bottom: 1rem; }
.hero__float-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.8rem;
  animation: slideUp 1.2s ease 0.5s forwards; opacity: 0;
}
.hero__float-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
}
.hero__float-text span { display: block; font-size: 0.8rem; color: var(--text-muted); }
.hero__float-text strong { color: var(--brown-dark); font-size: 0.95rem; }

@media (max-width: 768px) {
  .hero__content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; max-width: 320px; margin: 0 auto; }
  .hero__float-card { left: auto; right: -10px; }
}

/* ===== MELÁNI SECTION ===== */
.melani { padding: 5rem 0; background: var(--white); }
.melani__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start;
}
.melani__photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--warm-glow), var(--cream-dark));
  aspect-ratio: 3/4; display: flex;
  align-items: center; justify-content: center;
  color: var(--brown-light); font-size: 0.9rem;
}
.melani__content { padding-top: 0.5rem; }
.melani__label {
  font-family: var(--font-display); font-size: 0.9rem;
  color: var(--warm); font-weight: 600; margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.melani__quote {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--brown); line-height: 1.9; font-style: italic;
  position: relative; padding-left: 1.5rem;
  border-left: 3px solid var(--warm);
}
.melani__quote p { color: var(--brown); margin-bottom: 1.2rem; }

@media (max-width: 768px) {
  .melani__inner { grid-template-columns: 1fr; }
  .melani__photo { max-width: 240px; margin: 0 auto; }
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-glow) 100%);
}
.about-preview__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: center;
}
.about-preview__photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--cream-dark), var(--warm-light));
  aspect-ratio: 1; display: flex;
  align-items: center; justify-content: center;
  color: var(--brown-light);
}
@media (max-width: 768px) {
  .about-preview__inner { grid-template-columns: 1fr; }
  .about-preview__photo { max-width: 280px; margin: 0 auto; order: -1; }
}

/* ===== INSPIRATION GRID ===== */
.inspiration { padding: 5rem 0; background: var(--white); }
.inspiration__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 769px) {
  .inspiration__grid { grid-template-columns: repeat(2, 1fr); }
}
.inspiration__card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--cream); box-shadow: var(--shadow-sm);
  transition: all var(--transition); cursor: pointer;
}
.inspiration__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.inspiration__card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-dark), var(--warm-glow));
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-light); font-size: 2.5rem;
  position: relative; overflow: hidden;
}
.inspiration__card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.4) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.inspiration__card:hover .inspiration__card-img::after { opacity: 1; }
.inspiration__card-body { padding: 1.2rem 1.5rem; }
.inspiration__card-title {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--brown-dark); margin-bottom: 0.4rem;
}
.inspiration__card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.process { padding: 5rem 0; background: var(--cream); }
.process__steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.process__step {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); position: relative;
  transition: all var(--transition);
}
.process__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process__step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white); font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; box-shadow: 0 4px 12px rgba(74,124,89,0.25);
}
.process__step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--brown-dark); }
.process__step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 5rem 0; background: var(--white); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--cream); padding: 2rem; border-radius: var(--radius-md);
  border-left: 4px solid var(--warm); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card__quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--brown); line-height: 1.8;
  margin-bottom: 1.2rem;
}
.testimonial-card__author { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--brown-medium) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section__inner {
  position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-section h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-section p { color: var(--warm-light); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-section .btn { font-size: 1.1rem; padding: 1rem 2.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark); color: var(--cream-dark); padding: 3rem 0 1.5rem;
}
.footer__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
}
.footer__brand h3 { font-family: var(--font-display); color: var(--warm); font-size: 1.3rem; margin-bottom: 0.5rem; }
.footer__brand p { color: var(--brown-light); font-size: 0.9rem; }
.footer__links h4 { color: var(--warm); font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.8rem; }
.footer__links a { display: block; color: var(--brown-light); font-size: 0.9rem; padding: 0.2rem 0; transition: color var(--transition); }
.footer__links a:hover { color: var(--cream); }
.footer__bottom {
  max-width: var(--max-width); margin: 2rem auto 0; padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(168,137,108,0.2);
  text-align: center; font-size: 0.8rem; color: var(--brown-light);
}
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 8rem 0 3rem; text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--warm-glow) 100%);
}
.page-header h1 { margin-bottom: 0.8rem; }
.page-header p { color: var(--text-light); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.about-full { padding: 4rem 0; }
.about-full__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}
.about-full__text { font-size: 1.05rem; line-height: 1.9; }
.about-full__text p { margin-bottom: 1.5rem; color: var(--text); }
.about-full__sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.about-full__sidebar-img {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-dark); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; color: var(--brown-light);
}
@media (max-width: 768px) {
  .about-full__inner { grid-template-columns: 1fr; }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; padding: 3rem 0 5rem;
}
@media (min-width: 769px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-dark), var(--warm-glow));
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-light); font-size: 3rem;
}
.gallery-item__body { padding: 1.2rem 1.5rem; }
.gallery-item__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--brown-dark); margin-bottom: 0.3rem; }
.gallery-item__desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.gallery-item__tag {
  display: inline-block; padding: 0.2rem 0.7rem;
  background: var(--cream-dark); border-radius: var(--radius-xl);
  font-size: 0.75rem; color: var(--brown-medium); font-weight: 600;
}

/* ===== CUSTOM ORDER ===== */
.custom-order { padding: 4rem 0 5rem; }
.custom-order__intro { max-width: 720px; margin: 0 auto 3rem; text-align: center; font-size: 1.05rem; }
.custom-order__big-quote { font-family: var(--font-display); font-size: 1.5rem; color: var(--brown); font-style: italic; margin-bottom: 1.5rem; }
.custom-order__process { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 700px; margin: 0 auto 3rem; }
.custom-order__step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.custom-order__step-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.custom-order__step h3 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.custom-order__step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== FAQ ===== */
.faq { max-width: 700px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--cream-dark); padding: 1.2rem 0; }
.faq__question {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--brown-dark); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  background: none; border: none; width: 100%; text-align: left;
  padding: 0; font-weight: 600;
}
.faq__question::after { content: '+'; font-size: 1.5rem; color: var(--green); transition: transform var(--transition); }
.faq__question.open::after { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.faq__answer.open { max-height: 300px; padding-top: 0.8rem; }

/* ===== CONTACT ===== */
.contact { padding: 4rem 0 5rem; }
.contact__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact__info h3 { margin-bottom: 1rem; }
.contact__detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact__detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-dark); display: flex;
  align-items: center; justify-content: center;
  color: var(--green); font-weight: 700; flex-shrink: 0;
}
.contact__detail span { font-size: 0.85rem; color: var(--text-muted); display: block; }
.contact__detail strong { color: var(--text); }
.contact__form { background: var(--white); padding: 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--brown); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 2px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text); background: var(--cream);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; }
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem; padding: 3rem 0 5rem;
}
.review-card {
  background: var(--white); padding: 2rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--warm);
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card__text { font-family: var(--font-display); font-style: italic; color: var(--brown); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1rem; }
.review-card__author { font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }
.review-card__date { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ===== ADMIN ===== */
.admin { padding-top: 72px; min-height: 100vh; background: #F5F0EA; }
.admin__layout {
  display: grid; grid-template-columns: 260px 1fr;
  max-width: 1400px; margin: 0 auto; min-height: calc(100vh - 72px);
}
.admin__sidebar { background: var(--brown-dark); padding: 1.5rem 0; color: var(--cream-dark); }
.admin__sidebar h3 { color: var(--warm); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1.5rem; margin-bottom: 0.3rem; }
.admin__nav { list-style: none; }
.admin__nav li a {
  display: block; padding: 0.6rem 1.5rem;
  color: var(--brown-light); font-size: 0.9rem;
  transition: all var(--transition); text-decoration: none;
  border-left: 3px solid transparent;
}
.admin__nav li a:hover,
.admin__nav li a.active { background: rgba(255,255,255,0.05); color: var(--cream); border-left-color: var(--warm); }
.admin__content { padding: 2rem; overflow-y: auto; }
.admin__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.admin__header h2 { color: var(--brown-dark); }
.admin-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 1.5rem; margin-bottom: 1.5rem; }
.admin-card h4 { color: var(--brown); margin-bottom: 1rem; font-size: 1rem; }
.admin-field { margin-bottom: 1rem; }
.admin-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.3rem; }
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%; padding: 0.6rem 0.8rem;
  border: 1px solid #ddd; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.9rem; background: var(--white);
}
.admin-field textarea { min-height: 100px; resize: vertical; }
.admin-field input:focus,
.admin-field textarea:focus { outline: none; border-color: var(--green); }
.admin-btn {
  padding: 0.5rem 1.2rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--transition);
}
.admin-btn--save { background: var(--green); color: white; }
.admin-btn--save:hover { background: var(--green-dark); }
.admin-btn--add { background: var(--warm); color: var(--brown-dark); }
.admin-btn--add:hover { background: var(--brown-medium); color: white; }
.admin-btn--danger { background: #dc3545; color: white; }
.admin-btn--danger:hover { background: #a71d2a; }
.admin-success { background: #d4edda; color: #155724; padding: 0.6rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.admin__image-upload {
  border: 2px dashed var(--cream-dark); border-radius: var(--radius-sm);
  padding: 2rem; text-align: center; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.admin__image-upload:hover { border-color: var(--green); background: rgba(74,124,89,0.03); }

@media (max-width: 900px) {
  .admin__layout { grid-template-columns: 1fr; }
  .admin__sidebar { display: none; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--brown-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brown-medium); }
