/* =============================================
   STYLE.CSS — SK Version 3
   design-style: warm-vintage | color-mode: mixed
   border-style: rounded | shadow-style: subtle
   ============================================= */

:root {
  --primary-color: #D4554E;
  --secondary-color: #F79C92;
  --accent-color: #A83C36;
  --light-color: #FDF4F3;
  --dark-color: #2C1210;
  --gradient-primary: linear-gradient(135deg, #A83C36 0%, #D4554E 100%);
  --hover-color: #8E2E28;
  --background-color: #FFFAF9;
  --text-color: #3D1F1C;
  --border-color: rgba(212, 85, 78, 0.2);
  --divider-color: rgba(212, 85, 78, 0.14);
  --shadow-color: rgba(212, 85, 78, 0.09);
  --highlight-color: #E8A020;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-btn: 10px;
  --shadow-card: 0 2px 14px rgba(212,85,78,0.08);
  --shadow-hover: 0 10px 32px rgba(212,85,78,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  font-size: clamp(14px, 4vw, 17px);
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; transition: color .25s; }
a:hover { color: var(--hover-color); }
h1, h2, h3, h4 { font-family: var(--main-font); line-height: 1.25; color: var(--dark-color); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ── PATTERN BG ── */
.pattern-bg {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212,85,78,0.1) 1px, transparent 0);
  background-size: 28px 28px;
}

/* ── HEADER ── */
header {
  position: relative;
  width: 100%;
  background-color: var(--dark-color);
  border-bottom: 3px solid var(--highlight-color);
  z-index: 100;
  padding: 1.1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img { height: 42px; width: auto; }

#nav-toggle { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--highlight-color);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
#nav-toggle:checked ~ header .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ header .hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ header .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-color);
  border-bottom: 2px solid var(--highlight-color);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  padding: 16px;
  z-index: 99;
}
#nav-toggle:checked ~ header .navigation { display: block; }

.navigation ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.navigation a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  min-height: 44px;
  font-family: var(--alt-font);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.navigation a:hover { background: rgba(232,160,32,0.12); color: var(--highlight-color); }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .navigation {
    display: block !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .navigation ul { flex-direction: row; gap: 4px; align-items: center; }
}

/* ── BTN ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  min-height: 44px;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary { background: var(--primary-color); color: #fff; }
.btn-primary:hover { background: var(--hover-color); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: #fff; }
.btn-gold { background: var(--highlight-color); color: #fff; }
.btn-gold:hover { background: #c8881a; transform: translateY(-2px); }

/* ── HERO — floating-card ── */
.hero {
  position: relative;
  min-height: 78vh;
  background: url('./img/bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 18, 16, 0.58);
  z-index: 0;
}
.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255,250,249,0.97);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.hero-card-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-btn);
  margin-bottom: 20px;
}
.hero-card h1 { font-size: clamp(26px, 5vw, 44px); color: var(--dark-color); margin-bottom: 16px; }
.hero-card p { font-size: clamp(14px, 2.5vw, 16px); color: var(--text-color); margin-bottom: 28px; line-height: 1.75; }
@media (min-width: 768px) { .hero { padding: 80px 24px; } }

/* ── INTRO ── */
.intro-section {
  padding: 48px 16px;
  background: var(--light-color);
}
@media (min-width: 768px) { .intro-section { padding: 80px 24px; } }
.intro-section h2 { font-size: clamp(22px, 4vw, 36px); margin-bottom: 18px; color: var(--primary-color); }
.intro-section p { font-size: clamp(14px, 3vw, 17px); max-width: 800px; line-height: 1.85; }

/* ── BETWEEN — expert-quote ── */
.between-section {
  width: 100%;
  padding: 56px 16px;
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}
.between-section::before {
  content: '\201C';
  font-family: var(--main-font);
  font-size: clamp(160px, 25vw, 260px);
  color: rgba(232,160,32,0.07);
  position: absolute;
  top: -40px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
@media (min-width: 768px) { .between-section { padding: 80px 24px; } }

.expert-quote-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.quote-mark { font-family: var(--main-font); font-size: 60px; color: var(--highlight-color); line-height: .8; margin-bottom: 16px; display: block; }
.expert-quote-text { font-family: var(--main-font); font-size: clamp(18px, 3vw, 26px); font-style: italic; color: rgba(255,255,255,0.92); line-height: 1.65; margin-bottom: 28px; }
.expert-divider { width: 60px; height: 3px; background: var(--highlight-color); border-radius: 2px; margin-bottom: 18px; }
.expert-signature { font-size: 15px; color: var(--highlight-color); font-weight: 700; }
.expert-signature span { display: block; font-weight: 400; color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 4px; }

/* ── FEATURES — 2x2 ── */
.features-section {
  padding: 48px 16px;
  background: var(--background-color);
}
@media (min-width: 768px) { .features-section { padding: 80px 24px; } }

.section-title { font-size: clamp(22px, 4vw, 38px); text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; font-size: clamp(14px, 3vw, 17px); color: var(--text-color); max-width: 600px; margin: 0 auto 48px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

.feature-card-2x2 {
  padding: 36px 30px;
  background: var(--light-color);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.feature-card-2x2:nth-child(2) { border-top-color: var(--highlight-color); }
.feature-card-2x2:nth-child(3) { border-top-color: var(--accent-color); }
.feature-card-2x2:nth-child(4) { border-top-color: var(--secondary-color); }
.feature-card-2x2:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}
.feature-icon-big { font-size: 48px; line-height: 1; }
.feature-card-2x2 h3 { font-size: clamp(18px, 2.5vw, 22px); margin-bottom: 12px; color: var(--dark-color); }
.feature-card-2x2 p { font-size: clamp(14px, 2.5vw, 15px); line-height: 1.8; }

/* ── IMG FULLWIDTH ── */
.imgtext-section {
  background: var(--light-color);
}

.imgtext-full {
  width: 100%;
  height: clamp(200px, 35vw, 360px);
  overflow: hidden;
}
.imgtext-full img { width: 100%; height: 100%; object-fit: cover; }

.imgtext-content-below {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .imgtext-content-below { padding: 72px 24px; grid-template-columns: 1fr 1fr; gap: 56px; } }

.imgtext-content-below h2 { font-size: clamp(22px, 4vw, 36px); margin-bottom: 18px; color: var(--primary-color); }
.imgtext-content-below p { font-size: clamp(14px, 2.5vw, 16px); line-height: 1.85; margin-bottom: 12px; }

/* ── TESTIMONIALS — minimal ── */
.testimonials-section {
  padding: 48px 16px;
  background: var(--dark-color);
}
@media (min-width: 768px) { .testimonials-section { padding: 80px 24px; } }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.55); }

.testimonials-minimal-list { max-width: 760px; margin: 40px auto 0; }
.testi-item { padding: 24px 0; border-bottom: 1px solid rgba(232,160,32,0.18); }
.testi-item:first-child { border-top: 1px solid rgba(232,160,32,0.18); }
.testi-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 8px; }
.testi-name { font-family: var(--main-font); font-size: 16px; color: var(--highlight-color); font-weight: 700; }
.stars { color: var(--highlight-color); font-size: 14px; letter-spacing: 2px; }
.testi-text { font-size: clamp(14px, 2.5vw, 15px); line-height: 1.8; color: rgba(255,255,255,0.78); }

/* ── CONTACT ── */
.contact-section {
  padding: 48px 16px;
  background: var(--background-color);
}
@media (min-width: 768px) { .contact-section { padding: 80px 24px; } }

.contact-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .contact-wrap { width: 80%; grid-template-columns: 1fr 1.4fr; } }

.contact-info h2 { font-size: clamp(20px, 3.5vw, 30px); margin-bottom: 20px; color: var(--primary-color); }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-detail-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail p { font-size: 15px; line-height: 1.6; }

.contact-form h3 { font-size: clamp(17px, 2.5vw, 22px); margin-bottom: 22px; color: var(--dark-color); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--dark-color); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  min-height: 44px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--alt-font);
  font-size: 15px;
  color: var(--text-color);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(212,85,78,0.1); }
.form-group textarea { min-height: 110px; resize: vertical; }

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: var(--alt-font);
  min-height: 44px;
  transition: background .25s, transform .2s;
}
.btn-submit:hover { background: var(--hover-color); transform: translateY(-2px); }

/* ── FAQ ── */
.faq-section {
  padding: 48px 16px;
  background: var(--light-color);
}
@media (min-width: 768px) { .faq-section { padding: 80px 24px; } }

.faq-list { margin-top: 36px; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--divider-color); }
.faq-item:first-child { border-top: 1px solid var(--divider-color); }
.faq-question { font-family: var(--main-font); font-size: clamp(16px, 2.5vw, 19px); color: var(--primary-color); margin-bottom: 12px; }
.faq-answer { font-size: clamp(14px, 2.5vw, 16px); line-height: 1.8; }

/* ── FOOTER ── */
footer {
  background: var(--dark-color);
  color: rgba(255,255,255,0.72);
  padding: 48px 16px 24px;
  border-top: 3px solid var(--highlight-color);
}
footer img[alt="logo"] { filter: brightness(0) invert(1); }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img { height: 40px; width: auto; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-nav a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color .2s; display: flex; align-items: center; min-height: 44px; }
.footer-nav a:hover { color: var(--highlight-color); }
.footer-copy { max-width: 1200px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 13px; color: rgba(255,255,255,0.32); }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: center; }
  .footer-nav ul { flex-direction: row; gap: 24px; align-items: center; }
}