:root {
  --ink: #220812;
  --muted: #624049;
  --surface: #fff1f3;
  --panel: #ffffff;
  --cream: #fff7ea;
  --pink: #f3a9bd;
  --rose: #c93b62;
  --wine: #8f1738;
  --wine-dark: #430816;
  --gold: #d2a33e;
  --line: rgba(67, 8, 22, 0.18);
  --shadow: 0 28px 70px rgba(67, 8, 22, 0.3);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at top right, rgba(243, 169, 189, 0.98), transparent 30rem),
    radial-gradient(circle at 7% 14%, rgba(210, 163, 62, 0.22), transparent 18rem),
    radial-gradient(circle at 90% 72%, rgba(143, 23, 56, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(255, 247, 234, 0.98), rgba(255, 241, 243, 0.98)),
    var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 12px clamp(14px, 4vw, 18px);
  overflow: hidden;
  background: rgba(255, 245, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 9px;
  min-width: 0;
  overflow: hidden;
  color: var(--wine-dark);
  font-size: clamp(1rem, 4.5vw, 1.18rem);
  font-weight: 900;
}

.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(199, 152, 63, 0.65);
  border-radius: 50%;
  background: linear-gradient(145deg, #a91f45, var(--wine-dark));
  color: #fff9ed;
  box-shadow: 0 8px 18px rgba(75, 14, 29, 0.18);
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 52px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--wine-dark);
  font-weight: 800;
}

.hero,
.section,
.offer,
.site-footer {
  width: 100%;
  max-width: 1120px;
  min-width: 0;
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 24px;
  padding: 28px clamp(14px, 4.5vw, 18px) 34px;
  overflow: hidden;
}


.hero-plate,
.gallery-card {
  margin: 0;
}

.hero-plate {
  width: 100%;
  max-width: 430px;
  justify-self: center;
  min-width: 0;
}

.hero-plate {
  width: 100%;
  max-width: 430px;
  justify-self: center;
}



.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
  color: var(--wine-dark);
  font-size: clamp(2.15rem, 10vw, 4.9rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  overflow-wrap: anywhere;
  color: var(--wine-dark);
  font-size: clamp(1.55rem, 6.6vw, 3rem);
  line-height: 1.08;
}

.intro,
.section-copy,
.services-note,
.gallery-note,
.offer-details p {
  color: var(--muted);
}

.intro {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 1.04rem;
}

.hero-actions {
  display: grid;
  width: 100%;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--wine), var(--wine-dark));
  color: #fff;
  box-shadow: 0 15px 32px rgba(123, 23, 48, 0.34);
}

.button-secondary {
  border: 1px solid rgba(123, 23, 48, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--wine-dark);
}

.button-dark {
  background: var(--wine-dark);
  color: #fff;
}

.offer {
  padding: 0 clamp(14px, 4.5vw, 18px) 34px;
}

.offer-grid {
  display: grid;
  gap: 18px;
  padding: 24px 18px;
  overflow: hidden;
  border: 1px solid rgba(199, 152, 63, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 6%, rgba(199, 152, 63, 0.24), transparent 8rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(244, 186, 201, 0.9)),
    var(--cream);
  box-shadow: 0 18px 42px rgba(75, 14, 29, 0.15);
}

.offer h2 {
  margin-bottom: 6px;
  color: var(--wine);
  font-size: clamp(3.1rem, 17vw, 6.5rem);
  line-height: 0.9;
}

.offer-audience {
  margin-bottom: 0;
  color: var(--wine-dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.offer-details {
  display: grid;
  gap: 8px;
  align-content: center;
}

.offer-details p {
  margin-bottom: 0;
  font-weight: 700;
}

.offer-details .button {
  margin-top: 10px;
}

.section {
  padding: 34px clamp(14px, 4.5vw, 18px);
}

.services-note {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: 1.03rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.service-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(123, 23, 48, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--wine);
  flex: 1 1 calc(50% - 8px);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.service-item:focus-visible {
  outline: 0;
  border-color: rgba(210, 163, 62, 0.88);
  box-shadow: 0 0 0 3px rgba(210, 163, 62, 0.22), 0 8px 18px rgba(67, 8, 22, 0.1);
}

.service-item:active {
  border-color: rgba(143, 23, 56, 0.34);
  background: rgba(255, 247, 234, 0.96);
  color: var(--wine-dark);
}

.gallery-note {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 1.03rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.gallery-card {
  position: relative;
  display: grid;
  gap: 11px;
  width: min(100%, 350px);
  justify-self: center;
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(199, 152, 63, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 10%, rgba(255, 255, 255, 0.92), transparent 8rem),
    radial-gradient(circle at 18% 86%, rgba(210, 163, 62, 0.24), transparent 7rem),
    linear-gradient(150deg, rgba(255, 247, 234, 0.98), rgba(243, 169, 189, 0.78) 58%, rgba(143, 23, 56, 0.22)),
    var(--cream);
  box-shadow: 0 22px 44px rgba(67, 8, 22, 0.2);
}




.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}






.gallery-card figcaption {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(199, 152, 63, 0.25);
  border-radius: 999px;
  background: rgba(255, 247, 234, 0.9);
  color: var(--wine-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.gallery-cta {
  display: grid;
  width: 100%;
  margin-top: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-block: 10px 4px;
  border-block: 1px solid rgba(199, 152, 63, 0.2);
  background:
    radial-gradient(circle at 95% 20%, rgba(244, 186, 201, 0.52), transparent 12rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.86), rgba(255, 245, 242, 0.96));
}

address {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--wine-dark);
  font-size: 1.05rem;
  font-style: normal;
  box-shadow: 0 14px 30px rgba(75, 14, 29, 0.12);
}

address strong {
  color: var(--wine-dark);
  font-size: 1.12rem;
}

address span,
address a {
  color: var(--wine-dark);
  font-weight: 800;
}

.site-footer {
  padding: 28px clamp(14px, 4.5vw, 18px) 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .site-header {
    padding-inline: 24px;
  }

  .hero,
  .section,
  .offer,
  .site-footer {
    padding-inline: 28px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
    min-width: 188px;
  }

  .offer-grid {
    padding: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .gallery-cta {
    display: flex;
  }

  .gallery-card {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding-inline: 32px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    align-items: center;
    min-height: 650px;
    padding-block: 56px;
  }

  .hero-plate {
    order: 2;
    width: min(100%, 430px);
  }

  .hero-content {
    order: 1;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    align-items: center;
  }

  .service-list {
    max-width: 760px;
  }

  .service-item {
    flex: 0 1 auto;
  }

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

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2) {
    grid-column: span 1;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
    align-items: center;
  }
}


@media (min-width: 1120px) {
  .gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
