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

:root {
  --bg: #f5eee6;
  --bg-soft: #fff8f1;
  --terracotta: #bf744d;
  --terracotta-dark: #aa613f;
  --brown: #7a4d35;
  --brown-soft: #8a5a43;
  --border: #ead8cb;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, serif;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.7),
    rgba(245, 238, 230, 0.95) 45%,
    rgba(239, 225, 212, 1) 100%
  );
  color: var(--brown);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ad6947;
  border-bottom: 1px solid #8e5336;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

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

.logo {
  color: #fff8f2;
  font-size: 38px;
  font-style: italic;
  line-height: 1;
}

.logo span {
  font-style: normal;
  font-size: 26px;
}

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

.nav a {
  color: #fff8f2;
  font-size: 18px;
  opacity: 0.95;
  transition: 0.25s;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.hero {
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  min-height: 72vh;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: #b56d49;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
font-size: clamp(30px, 3vw, 54px);
font-weight: 600;
line-height: 1.2;
max-width: 650px;
}


.hero p.lead,
.page-hero p.lead {
  margin-top: 22px;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.5;
  color: var(--brown-soft);
  max-width: 720px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  max-width: 680px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(195, 122, 85, 0.15);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-item span:last-child {
  font-size: 24px;
  color: #9c5d3d;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 18px;
  transition: 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  border-color: #a8603d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: #b16742;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: #9a5a3b;
  border-color: #d6b49e;
}

.btn-secondary:hover {
  background: white;
}

.image-card-wrap {
  position: relative;
}

.image-glow {
  position: absolute;
  inset: 0;
  background: #ead7c8;
  border-radius: 40px;
  transform: scale(0.95);
  filter: blur(24px);
  opacity: 0.7;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: #e7d1c2;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(93, 55, 37, 0.2),
    transparent,
    rgba(255, 245, 235, 0.1)
  );
}

.image-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 248, 241, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 24px;
  box-shadow: var(--shadow);
}

.image-text small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: #b56d49;
  margin-bottom: 10px;
}

.image-text h2 {
  font-size: 32px;
  color: #9a5a3b;
  margin-bottom: 10px;
}

.image-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #7f5847;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  color: var(--terracotta-dark);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 20px;
  line-height: 1.7;
  color: #7f5847;
  max-width: 820px;
}

.cards-3,
.cards-2 {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(195, 122, 85, 0.15);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #9c5d3d;
}

.card p,
.card li {
  font-size: 18px;
  line-height: 1.7;
  color: #7f5847;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.price-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.price-card.featured {
  background: var(--bg-soft);
  border-color: var(--terracotta);
  box-shadow: 0 16px 38px rgba(191, 116, 77, 0.16);
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  font-size: 13px;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 30px;
  color: #9c5d3d;
}

.price-value {
  font-size: 48px;
  font-weight: bold;
  color: var(--terracotta-dark);
  margin-top: 10px;
}

.price-subtitle {
  margin: 6px 0 20px;
  color: var(--brown-soft);
  font-size: 17px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.price-card li::before {
  content: "•";
  color: var(--terracotta);
  margin-right: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-box,
.form-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-box {
  background: var(--bg-soft);
}

.info-block + .info-block {
  margin-top: 24px;
}

.info-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #b56d49;
  margin-bottom: 8px;
}

.info-value {
  font-size: 19px;
  color: #7f5847;
  line-height: 1.6;
}

form {
  width: 100%;
}

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

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b56d49;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ddc4b2;
  background: white;
  border-radius: 20px;
  padding: 16px 18px;
  font-size: 16px;
  color: var(--brown);
  outline: none;
  font-family: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--terracotta);
}

textarea {
  resize: vertical;
  min-height: 180px;
}

.error {
  color: #c0392b;
  font-size: 14px;
  margin-top: 8px;
}

.success {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff3ea;
  border: 1px solid #d8c0af;
  color: #9c5d3d;
  font-size: 15px;
  line-height: 1.6;
}

.site-footer {
  padding: 28px 0 40px;
  color: #8a5a43;
}

.site-footer .container {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.decor-1,
.decor-2,
.decor-3 {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  z-index: -1;
}

.decor-1 {
  top: 20px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(209, 161, 131, 0.2);
}

.decor-2 {
  bottom: 30px;
  right: -90px;
  width: 360px;
  height: 360px;
  background: rgba(217, 142, 105, 0.2);
}

.decor-3 {
  bottom: -40px;
  left: 10px;
  width: 220px;
  height: 220px;
  background: rgba(200, 140, 105, 0.2);
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .pricing-grid,
  .cards-3,
  .cards-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 480px;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .logo {
    font-size: 30px;
  }

  .logo span {
    font-size: 21px;
  }

  .nav {
    justify-content: center;
    gap: 16px;
  }

  .nav a {
    font-size: 16px;
  }

  .hero {
    padding-top: 40px;
  }

  .feature-item span:last-child {
    font-size: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .image-card img {
    height: 400px;
  }

  .image-text h2 {
    font-size: 24px;
  }

  .image-text p {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 34px;
  }
}

.card ul {
  margin-top: 16px;
  margin-left: 20px;
  padding-left: 10px;
}

.card li {
  margin-bottom: 8px;
}
.instagram-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #9c5d3d;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
}

.instagram-float:hover {
  transform: scale(1.1);
  background: #d8c0af;
}


.carousel-container{
position:relative;
max-width:1100px;
height:350px;
margin:auto;
overflow:hidden;
border-radius:20px;
}

.carousel-slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1s ease;
}

.carousel-slide.active{
opacity:1;
}


.carousel-slide img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
}

h1{
font-size: clamp(28px, 3vw, 38px);
line-height: 1.3;
}