:root {
  --bg: #f6efe2;
  --bg-soft: rgba(255, 248, 238, 0.8);
  --card: rgba(24, 22, 20, 0.86);
  --card-soft: rgba(255, 248, 238, 0.64);
  --surface: rgba(255, 248, 238, 0.9);
  --line: rgba(36, 31, 28, 0.12);
  --line-strong: rgba(255, 248, 238, 0.16);
  --ink: #151310;
  --ink-soft: #4c433c;
  --light: #fff7ec;
  --accent: #b85b34;
  --accent-strong: #8d3f21;
  --accent-soft: #d59a60;
  --forest: #24473d;
  --shadow: 0 24px 60px rgba(31, 19, 13, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 144, 83, 0.2), transparent 28%),
    radial-gradient(circle at right 10% top 20%, rgba(36, 71, 61, 0.16), transparent 22%),
    linear-gradient(180deg, #f7f1e7 0%, #f2e6d3 38%, #efe6d8 100%);
  min-height: 100vh;
}

img,
iframe {
  max-width: 100%;
  border: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(300deg, rgba(184, 91, 52, 0.08), transparent 28%);
  z-index: -1;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.article-hero h1 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-lead,
.article-lead {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 241, 231, 0.72);
  border-bottom: 1px solid rgba(36, 31, 28, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--light);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent), #cd8753);
  box-shadow: var(--shadow);
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav .nav-instagram {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--light);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 24px rgba(141, 63, 33, 0.18);
}

.main-nav a:hover,
.article-breadcrumb a:hover,
.article-links a:hover,
.contact-link:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.hero {
  padding-top: 56px;
}

.hero-grid,
.contacts-layout,
.showcase-layout,
.two-column {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.86fr);
}

.hero-copy {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 251, 246, 0.88), rgba(244, 229, 204, 0.9)),
    var(--surface);
  border: 1px solid rgba(36, 31, 28, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -40px -56px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 71, 61, 0.2), transparent 70%);
}

.hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-subtitle span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 247, 236, 0.74);
  border: 1px solid rgba(36, 31, 28, 0.08);
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn:hover,
.chip:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.btn-solid {
  color: var(--light);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 18px 30px rgba(141, 63, 33, 0.24);
}

.btn-secondary {
  color: var(--light);
  background: linear-gradient(135deg, #284c42, #3d6a5e);
}

.btn-instagram {
  color: var(--light);
  background: linear-gradient(135deg, #8d3f21, #cc6f43);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 248, 238, 0.72);
  border-color: rgba(36, 31, 28, 0.1);
}

.hero-panel,
.story-card,
.sketch-panel,
.tourist-banner,
.contact-form-card,
.map-card,
.portfolio-card,
.pricing-card,
.review-card,
.step-card,
.article-section,
.article-cta,
.related-card,
.check-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  padding: 30px;
  color: var(--light);
  background:
    linear-gradient(160deg, rgba(19, 18, 17, 0.98), rgba(46, 30, 22, 0.94)),
    var(--card);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 248, 238, 0.08);
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.1);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
}

.hero-stat + .hero-stat {
  margin-top: 18px;
}

.hero-stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.hero-stat span,
.hero-note {
  color: rgba(255, 248, 238, 0.78);
  line-height: 1.7;
}

.hero-note {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.hero-profile {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 248, 238, 0.12);
}

.hero-profile-title {
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
}

.hero-profile-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 248, 238, 0.82);
  line-height: 1.75;
}

.hero-profile-seo {
  margin-top: 14px;
  color: rgba(255, 248, 238, 0.92);
  font-weight: 700;
}

.two-column {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
}

.story-card {
  padding: 34px;
  background: rgba(255, 248, 238, 0.85);
  border: 1px solid rgba(36, 31, 28, 0.08);
}

.story-card p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.85;
}

.story-card p + p {
  margin-top: 12px;
}

.check-grid,
.pricing-grid,
.reviews-grid,
.steps-grid,
.portfolio-grid,
.article-links,
.related-grid {
  display: grid;
  gap: 18px;
}

.check-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.check-card {
  position: relative;
  padding: 26px 24px 26px 58px;
  background: rgba(255, 248, 238, 0.82);
  border: 1px solid rgba(36, 31, 28, 0.08);
  font-size: 1rem;
  font-weight: 800;
}

.check-card::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 23px;
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 800;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(36, 31, 28, 0.12);
  color: var(--ink-soft);
  background: rgba(255, 248, 238, 0.7);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.chip.is-active {
  color: var(--light);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  border-color: transparent;
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.portfolio-card,
.pricing-card,
.review-card,
.step-card,
.related-card {
  padding: 26px;
  background: rgba(255, 248, 238, 0.84);
  border: 1px solid rgba(36, 31, 28, 0.08);
}

.portfolio-card[hidden] {
  display: none;
}

.card-tag,
.article-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(184, 91, 52, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-card h3,
.pricing-card h3,
.step-card h3,
.review-card h3,
.article-section h2,
.related-card h3,
.contact-form-card h3,
.map-card h3 {
  margin: 16px 0 12px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.portfolio-card p,
.pricing-card p,
.step-card p,
.review-card p,
.article-section p,
.article-cta p,
.related-card p,
.contact-form-card p,
.map-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.showcase-layout,
.contacts-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.sketch-panel {
  padding: 32px;
  color: var(--light);
  background:
    radial-gradient(circle at top right, rgba(213, 154, 96, 0.26), transparent 26%),
    linear-gradient(160deg, #1f1d1b, #3b241a);
  border: 1px solid rgba(255, 248, 238, 0.12);
}

.sketch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.sketch-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.1);
  font-weight: 700;
}

.sketch-panel p {
  color: rgba(255, 248, 238, 0.78);
  line-height: 1.75;
}

.pricing-grid,
.steps-grid,
.reviews-grid,
.article-links,
.related-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price {
  margin-top: 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}

.tourist-banner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 30px;
  padding: clamp(28px, 5vw, 44px);
  color: var(--light);
  background:
    linear-gradient(115deg, rgba(32, 19, 16, 0.96), rgba(36, 71, 61, 0.92)),
    linear-gradient(90deg, transparent, rgba(255, 248, 238, 0.04));
  border: 1px solid rgba(255, 248, 238, 0.12);
}

.tourist-quote {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  color: var(--accent-soft);
}

.tourist-banner p:last-child {
  color: rgba(255, 248, 238, 0.82);
  line-height: 1.8;
}

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--light);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--forest), #42695d);
}

.review-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.review-media span {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(36, 31, 28, 0.16);
  color: var(--ink-soft);
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 248, 238, 0.9), rgba(240, 226, 205, 0.7));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 238, 0.84);
  border: 1px solid rgba(36, 31, 28, 0.08);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.04rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.article-links a,
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 238, 0.8);
  border: 1px solid rgba(36, 31, 28, 0.08);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.article-links a::after,
.contact-link::after,
.related-card::after {
  content: "↗";
  color: var(--accent-strong);
  font-size: 1rem;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-instagram {
  width: 100%;
  margin-bottom: 24px;
}

.map-card {
  padding: 24px;
  background: rgba(255, 248, 238, 0.82);
  border: 1px solid rgba(36, 31, 28, 0.08);
}

.map-frame {
  margin-top: 16px;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  min-height: 320px;
}

.contact-form-card {
  padding: 30px;
  background: rgba(255, 248, 238, 0.84);
  border: 1px solid rgba(36, 31, 28, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(36, 31, 28, 0.12);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(184, 91, 52, 0.55);
  box-shadow: 0 0 0 4px rgba(184, 91, 52, 0.1);
}

.form-note,
.form-success {
  font-size: 0.93rem;
}

.form-success {
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  padding: 20px 0 28px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p,
.site-footer a,
.article-breadcrumb {
  color: var(--ink-soft);
}

.article-body .site-header {
  position: relative;
}

.article-shell {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 52px 0 88px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.article-hero,
.article-section,
.article-cta {
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 248, 238, 0.84);
  border: 1px solid rgba(36, 31, 28, 0.08);
}

.article-hero {
  margin-bottom: 22px;
}

.article-hero h1 {
  max-width: 12ch;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 248, 238, 0.72);
  border: 1px solid rgba(36, 31, 28, 0.08);
  font-weight: 700;
}

.article-stack {
  display: grid;
  gap: 22px;
}

.article-section ul,
.article-cta ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.article-section p + p,
.article-cta p + p {
  margin-top: 14px;
}

.article-cta {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(184, 91, 52, 0.12), rgba(36, 71, 61, 0.08)),
    rgba(255, 248, 238, 0.86);
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.related-grid {
  margin-top: 24px;
}

.related-card {
  display: block;
}

.related-card::after {
  display: inline-block;
  margin-top: 14px;
}

.reveal {
  opacity: 0;
  animation: rise 0.8s ease forwards;
}

.rise-1 {
  animation-delay: 0.05s;
}

.rise-2 {
  animation-delay: 0.16s;
}

.rise-3 {
  animation-delay: 0.27s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .contacts-layout,
  .showcase-layout,
  .two-column,
  .tourist-banner {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .section,
  .article-shell {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .header-inner {
    min-height: 72px;
  }
}

@media (max-width: 720px) {
  .shell,
  .article-shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .hero-copy,
  .hero-panel,
  .story-card,
  .portfolio-card,
  .pricing-card,
  .review-card,
  .step-card,
  .sketch-panel,
  .contact-form-card,
  .map-card,
  .tourist-banner,
  .article-hero,
  .article-section,
  .article-cta,
  .check-card {
    border-radius: 24px;
  }

  .brand-text {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-actions,
  .article-cta-actions {
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .review-media {
    grid-template-columns: 1fr;
  }

  .article-links,
  .related-grid,
  .pricing-grid,
  .steps-grid,
  .reviews-grid,
  .portfolio-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
}
