* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2c2c2c;
  background-color: #fffaf3;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Hlavička stránky */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e0d5;
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #263238;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #c87b32;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 3px;
  background-color: #c87b32;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
/* Úvodní sekce */

.hero {
  padding: 70px 0;
  background-color: #fffaf3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.hero-text {
  width: 100%;
  max-width: 540px;
  padding: 0;
}

.hero-label {
  margin: 0 0 16px;
  color: #c87b32;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 24px;
  color: #263238;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
}

.hero-description {
  margin: 0 0 32px;
  color: #4d5558;
  font-size: 18px;
  line-height: 1.7;
}

.button {
  display: inline-block;
  padding: 15px 26px;
  color: #ffffff;
  background-color: #c87b32;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  background-color: #a95f20;
  transform: translateY(-2px);
}
/* Sekce služeb */

.services-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-label {
  margin: 0 0 12px;
  color: #c87b32;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 20px;
  color: #263238;
  font-size: 42px;
  line-height: 1.2;
}

.section-description {
  margin: 0;
  color: #60686b;
  font-size: 17px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 36px 30px;
  background-color: #fffaf3;
  border: 1px solid #eee2d4;
  border-radius: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.service-number {
  display: inline-block;
  margin-bottom: 24px;
  color: #c87b32;
  font-size: 18px;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 16px;
  color: #263238;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: #60686b;
  font-size: 16px;
  line-height: 1.7;
}

.services-button {
  margin-top: 42px;
  text-align: center;
}

.button-outline {
  color: #c87b32;
  background-color: transparent;
  border: 2px solid #c87b32;
}

.button-outline:hover {
  color: #ffffff;
  background-color: #c87b32;
}
/* Proč si vybrat právě nás */

.why-section {
  padding: 90px 0;
  background-color: #263238;
}

.why-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.why-text h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
}

.why-text > p:not(.section-label) {
  margin: 0 0 32px;
  color: #d2d8da;
  font-size: 17px;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background-color: #ffffff;
  border-radius: 14px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background-color: #c87b32;
  border-radius: 50%;
  font-size: 19px;
  font-weight: 700;
}

.benefit-card h3 {
  margin: 4px 0 10px;
  color: #263238;
  font-size: 19px;
}

.benefit-card p {
  margin: 0;
  color: #60686b;
  font-size: 15px;
  line-height: 1.6;
}
/* Ukázky realizací */

.portfolio-section {
  padding: 90px 0;
  background-color: #fffaf3;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-card {
  margin: 0;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card figcaption {
  padding: 20px 22px;
  color: #263238;
  font-size: 17px;
  font-weight: 700;
}

.portfolio-button {
  margin-top: 42px;
  text-align: center;
}
/* Závěrečná kontaktní výzva */

.cta-section {
  padding: 75px 0;
  color: #ffffff;
  background-color: #c87b32;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-text {
  max-width: 680px;
}

.cta-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-text h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.2;
}

.cta-text > p:last-child {
  margin: 0;
  color: #fff4e8;
  font-size: 17px;
  line-height: 1.7;
}

.cta-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.button-light {
  color: #263238;
  background-color: #ffffff;
}

.button-light:hover {
  color: #ffffff;
  background-color: #263238;
}

.cta-phone {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.cta-phone:hover {
  text-decoration: underline;
}
/* Patička */

.site-footer {
  color: #d2d8da;
  background-color: #1d282d;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 55px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.footer-about p {
  max-width: 390px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 18px;
}

.footer-nav li + li {
  margin-top: 12px;
}

.footer-nav a,
.footer-contact a {
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #c87b32;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-bottom {
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid #344147;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
/* Úvod podstránky */

.subpage-hero {
  padding: 95px 0;
  text-align: center;
  background-color: #fffaf3;
}

.subpage-hero-content {
  max-width: 820px;
}

.subpage-hero h1 {
  margin: 0 0 24px;
  color: #263238;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.1;
}

.subpage-hero p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: #60686b;
  font-size: 18px;
  line-height: 1.8;
}
/* Podrobná nabídka služeb */

.services-page-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-detail-card {
  padding: 38px 34px;
  background-color: #fffaf3;
  border: 1px solid #eee2d4;
  border-radius: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.service-detail-card h3 {
  margin: 0 0 16px;
  color: #263238;
  font-size: 24px;
}

.service-detail-card > p {
  margin: 0 0 22px;
  color: #60686b;
  font-size: 16px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  color: #4d5558;
  line-height: 1.6;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #c87b32;
  font-weight: 700;
}
/* Postup spolupráce */

.process-section {
  padding: 90px 0;
  background-color: #fffaf3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.process-step {
  padding: 34px 30px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.process-step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: #ffffff;
  background-color: #c87b32;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 14px;
  color: #263238;
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: #60686b;
  line-height: 1.7;
}
/* Stránka galerie */

.gallery-page-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  background-color: #fffaf3;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card figcaption {
  padding: 20px 22px;
  color: #263238;
  font-size: 17px;
  font-weight: 700;
}
/* Stránka ceníku */

.pricing-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.price-list {
  max-width: 920px;
  display: grid;
  gap: 18px;
  margin: 0 auto;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 32px;
  background-color: #fffaf3;
  border: 1px solid #eee2d4;
  border-radius: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.price-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.price-item h3 {
  margin: 0 0 8px;
  color: #263238;
  font-size: 20px;
}

.price-item p {
  margin: 0;
  color: #60686b;
  line-height: 1.6;
}

.price-item strong {
  flex-shrink: 0;
  color: #c87b32;
  font-size: 20px;
  white-space: nowrap;
}

.price-notice {
  max-width: 920px;
  margin: 38px auto 0;
  padding: 30px 32px;
  color: #d2d8da;
  background-color: #263238;
  border-radius: 14px;
}

.price-notice h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
}

.price-notice p {
  margin: 0;
  line-height: 1.7;
}
/* Faktory ovlivňující cenu */

.price-factors-section {
  padding: 90px 0;
  background-color: #fffaf3;
}

.price-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.price-factor {
  padding: 32px 28px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.price-factor span {
  display: inline-block;
  margin-bottom: 22px;
  color: #c87b32;
  font-size: 18px;
  font-weight: 700;
}

.price-factor h3 {
  margin: 0 0 14px;
  color: #263238;
  font-size: 20px;
}

.price-factor p {
  margin: 0;
  color: #60686b;
  line-height: 1.7;
}
/* Stránka O nás */

.about-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.about-text h2 {
  margin: 0 0 24px;
  color: #263238;
  font-size: 42px;
  line-height: 1.2;
}

.about-text > p:not(.section-label) {
  margin: 0 0 18px;
  color: #60686b;
  font-size: 17px;
  line-height: 1.8;
}

.about-text .button {
  margin-top: 14px;
}

.about-highlights {
  display: grid;
  gap: 20px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 30px;
  background-color: #fffaf3;
  border: 1px solid #eee2d4;
  border-radius: 14px;
}

.about-highlight > span {
  flex-shrink: 0;
  color: #c87b32;
  font-size: 18px;
  font-weight: 700;
}

.about-highlight h3 {
  margin: 0 0 10px;
  color: #263238;
  font-size: 21px;
}

.about-highlight p {
  margin: 0;
  color: #60686b;
  line-height: 1.7;
}
/* Hodnoty firmy */

.values-section {
  padding: 90px 0;
  background-color: #fffaf3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  padding: 32px 28px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.value-card .benefit-icon {
  margin-bottom: 22px;
}

.value-card h3 {
  margin: 0 0 14px;
  color: #263238;
  font-size: 20px;
}

.value-card p {
  margin: 0;
  color: #60686b;
  line-height: 1.7;
}
/* Kontaktní stránka */

.contact-page-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 70px;
}

.contact-details h2,
.contact-form-wrapper h2 {
  margin: 0 0 22px;
  color: #263238;
  font-size: 38px;
  line-height: 1.2;
}

.contact-intro {
  margin: 0 0 34px;
  color: #60686b;
  font-size: 17px;
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  font-style: normal;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background-color: #fffaf3;
  border: 1px solid #eee2d4;
  border-radius: 14px;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background-color: #c87b32;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.contact-card h3 {
  margin: 0 0 6px;
  color: #263238;
  font-size: 18px;
}

.contact-card p {
  margin: 0;
  color: #60686b;
}

.contact-card a {
  color: #60686b;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #c87b32;
}

.opening-hours {
  margin-top: 28px;
  padding: 28px;
  color: #d2d8da;
  background-color: #263238;
  border-radius: 14px;
}

.opening-hours h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 20px;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid #3b484e;
}

.opening-hours-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.opening-hours-row strong {
  color: #ffffff;
  text-align: right;
}
/* Kontaktní formulář */

.contact-form-wrapper {
  padding: 42px;
  background-color: #fffaf3;
  border: 1px solid #eee2d4;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  color: #263238;
  font-size: 15px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  color: #263238;
  background-color: #ffffff;
  border: 1px solid #d9d2c9;
  border-radius: 7px;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c87b32;
  box-shadow: 0 0 0 3px rgba(200, 123, 50, 0.16);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #60686b;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.form-consent input {
  flex-shrink: 0;
  margin-top: 4px;
  accent-color: #c87b32;
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: #7b8183;
  font-size: 13px;
  line-height: 1.6;
}
.demo-notice {
  margin-top: 8px;
  color: #9da8ac;
  font-size: 13px;
}

/* Menší obrazovky */

@media (max-width: 800px) {
  .header-content {
    padding: 18px 0;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .main-nav a::after {
    bottom: 1px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image img {
    height: auto;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .services-section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-section {
    padding: 60px 0;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .why-text h2 {
    font-size: 34px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-section {
    padding: 60px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .cta-text h2 {
    font-size: 34px;
  }

  .cta-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 55px;
    padding-bottom: 45px;
  }

  .subpage-hero {
    padding: 65px 0;
  }

  .subpage-hero h1 {
    font-size: 40px;
  }

  .services-page-section,
  .process-section {
    padding: 60px 0;
  }

  .service-details-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 32px 26px;
  }

  .gallery-page-section {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section,
  .price-factors-section {
    padding: 60px 0;
  }

  .price-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 26px 24px;
  }

  .price-factors-grid {
    grid-template-columns: 1fr;
  }

  .price-notice {
    padding: 26px 24px;
  }

  .about-section,
  .values-section {
    padding: 60px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-text h2 {
    font-size: 34px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight {
    padding: 26px 24px;
  }

  .contact-page-section {
    padding: 60px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-details h2,
  .contact-form-wrapper h2 {
    font-size: 32px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .opening-hours-row {
    align-items: flex-start;
  }
}

