/* =============================================
   PERFEKT ÚKLID — style.css
   Colors:
     Deep forest green: #1a3a2a
     Dark green (nav):  #112618
     Warm white:        #f9faf8
     Gold accent:       #c8952a
     Charcoal (bar):    #1c1c1c
     Text dark:         #1e2d24
     Text muted:        #5a6e62
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #1a3a2a;
  --green-dark:   #112618;
  --green-mid:    #22503a;
  --warm-white:   #f9faf8;
  --gold:         #c8952a;
  --gold-light:   #e5b455;
  --charcoal:     #1c1c1c;
  --text-dark:    #1e2d24;
  --text-muted:   #5a6e62;
  --border:       rgba(26,58,42,0.12);

  --phone-bar-h:  40px;
  --nav-h:        64px;
  --offset:       calc(var(--phone-bar-h) + var(--nav-h));

  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg:    0 12px 32px rgba(0,0,0,.14);

  --ff-heading:   'Fraunces', Georgia, serif;
  --ff-body:      'DM Sans', system-ui, sans-serif;

  --transition:   0.22s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--offset);
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- Utility ---- */
.container {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--hero {
  background: var(--gold);
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(200,149,42,.4);
  letter-spacing: 0.01em;
}
.btn--hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,149,42,.5);
}
.btn--hero:active { transform: translateY(0); }

.btn--primary {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- Phone Bar ---- */
.phone-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--charcoal);
  height: var(--phone-bar-h);
}

.phone-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 100%;
  padding-inline: 1rem;
  font-size: 0.85rem;
}

.phone-bar__hours {
  color: rgba(255,255,255,.65);
}

.phone-bar__number {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.phone-bar__number:hover { color: var(--gold-light); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: var(--phone-bar-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--green-dark);
  height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1rem, 4vw, 2rem);
  gap: 1rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.navbar__logo-text {
  color: rgba(255,255,255,.85);
  letter-spacing: 0.01em;
}
.navbar__logo-text strong {
  color: #fff;
  font-weight: 600;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__menu a {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.navbar__menu a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.navbar__cta {
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.1rem !important;
}
.navbar__cta:hover {
  background: var(--gold-light) !important;
  color: #fff !important;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--offset);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 38, 24, 0.82) 0%,
    rgba(17, 38, 24, 0.60) 50%,
    rgba(17, 38, 24, 0.45) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem clamp(1rem, 6vw, 3rem);
  max-width: 780px;
}

.hero__headline {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 600;
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: rgba(255,255,255,.9); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Stats Band ---- */
.stats {
  background: var(--green-deep);
  padding: 2rem 0;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1rem 2.5rem;
  flex: 1 1 160px;
  min-width: 130px;
}

.stats__number {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stats__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
  text-align: center;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ---- Services ---- */
.services {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--warm-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,149,42,.3);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(26,58,42,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-deep);
}

.service-card__title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- How it works ---- */
.how {
  background: #f0f4f1;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 680px;
  margin-inline: auto;
  counter-reset: steps;
}

.how__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.how__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.how__step-body h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.how__step-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.how__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---- Contact ---- */
.contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--warm-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  width: 40px;
  height: 40px;
  background: rgba(26,58,42,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-deep);
}

.contact__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact__value {
  font-size: 0.97rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact__phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  transition: color var(--transition);
}
.contact__phone:hover { color: var(--gold); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact__map iframe { display: block; }

/* ---- Footer ---- */
.footer {
  background: var(--green-dark);
  padding: 2.5rem 1rem;
}

.footer__inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  justify-content: center;
}

.footer__links a {
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }

.footer__copy {
  color: rgba(255,255,255,.35);
  font-size: 0.78rem;
}

/* ---- Floating Call Button (mobile) ---- */
.fab-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(200,149,42,.55);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.fab-call:hover {
  background: var(--gold-light);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(200,149,42,.65);
}
.fab-call:active { transform: scale(0.97); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .stats__divider { display: none; }
}

@media (max-width: 680px) {
  .navbar__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--offset);
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 1.25rem 1rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .navbar__menu.is-open {
    display: flex;
  }
  .navbar__menu li {
    width: 100%;
  }
  .navbar__menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
  }
  .navbar__cta {
    text-align: center;
    margin-top: 0.25rem;
  }

  .navbar__toggle { display: flex; }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .how__step {
    flex-direction: column;
    gap: 1rem;
  }

  .fab-call { display: flex; }

  .phone-bar__hours { display: none; }
}

@media (max-width: 380px) {
  .stats__item { padding: 0.75rem 1.25rem; }
}
