* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ece7df;
  --bg-2: #f4efe8;
  --text: #2f2620;
  --muted: #6f655b;
  --line: #c7b9a7;
  --line-soft: #d9cec1;
  --white: #ffffff;
  --dark: #201915;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.site-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(236, 231, 223, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 1.15rem;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--text);
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  font-size: 1.2rem;
  opacity: 0.9;
}

.page-section {
  padding: 44px 0 80px;
}

.editorial-block {
  border-top: 1px solid var(--line);
  padding-top: 46px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-title {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--text);
}

.hero-copy {
  max-width: 820px;
  margin: 22px auto 0;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--muted);
}

.hero-slider-wrap {
  margin-top: 42px;
  position: relative;
  overflow: hidden;
  background: #d8d0c4;
}

.hero-slide {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-size: 1.4rem;
  transition: 0.2s ease;
}

.slider-btn:hover {
  background: var(--white);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.page-title {
  max-width: 1000px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 300;
}

.page-intro {
  max-width: 760px;
  margin-top: 22px;
  font-size: 1.16rem;
  line-height: 1.9;
  color: var(--muted);
}

.design-group {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  margin-top: 34px;
}

.design-group-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.design-group-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-controls button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  transition: 0.2s ease;
}

.carousel-controls button:hover:not(:disabled) {
  background: var(--white);
}

.carousel-controls button:disabled {
  opacity: 0.38;
  cursor: default;
}

.design-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.design-card {
  overflow: hidden;
  background: var(--white);
}

.design-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.design-card:hover img {
  transform: scale(1.03);
}

.pricing-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.price-big {
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 8px 0 22px;
}

.price-lead {
  max-width: 820px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.55;
  font-weight: 300;
}

.side-copy {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.95;
  display: grid;
  gap: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.process-card {
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}

.process-step {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.process-card h3 {
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 300;
}

.process-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.pdf-card {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.6);
  padding: 28px;
  transition: 0.2s ease;
}

.pdf-card:hover {
  background: var(--white);
}

.pdf-card .eyebrow {
  margin-bottom: 12px;
}

.pdf-card h3 {
  font-size: 2rem;
  font-weight: 300;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.faq-question span:first-child {
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 300;
}

.faq-plus {
  font-size: 2rem;
  color: var(--muted);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 900px;
  display: none;
  padding: 0 0 28px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.06rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-details .label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-details p:last-child,
.contact-details a:last-child {
  font-size: 1.3rem;
  color: var(--text);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 18px;
  font: inherit;
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a99682;
}

.contact-form textarea {
  grid-column: span 2;
  min-height: 190px;
  resize: vertical;
}

.contact-form .full {
  grid-column: span 2;
}

.mailto-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: var(--dark);
  color: var(--white);
  padding: 17px 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  transition: 0.2s ease;
}

.mailto-btn:hover {
  background: #17120f;
}

.site-footer {
  padding: 26px 0 40px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .pricing-grid,
  .contact-grid,
  .process-grid,
  .design-track {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 1100px) {
    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 760px) {
    .process-grid {
      grid-template-columns: 1fr;
    }
  }

  .design-track .design-card:last-child {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    padding: 18px 0;
  }

  .header-left {
    gap: 18px;
  }

  .logo {
    height: 60px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .hero-slide {
    height: 320px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .pricing-grid,
  .contact-grid,
  .pdf-grid,
  .process-grid,
  .design-track,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .contact-form .full {
    grid-column: span 1;
  }

  .design-group-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question span:first-child {
    font-size: 1.2rem;
  }
}