:root {
  --font-bengali: "Poppins", "Hind Siliguri", sans-serif;
  --font-english: "Poppins", "Hind Siliguri", sans-serif;
  --ink: #2b2421;
  --muted: #756761;
  --paper: #fffaf5;
  --cream: #f5eee6;
  --rose: #bd745f;
  --wine: #6f2d34;
  --gold: #c39b61;
  --line: rgba(43, 36, 33, 0.14);
  --shadow: 0 22px 60px rgba(54, 35, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-bengali);
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(29, 20, 18, 0.72), rgba(29, 20, 18, 0));
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 8px 28px rgba(48, 35, 27, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-bengali);
  font-size: 0.93rem;
}

.mobile-bottom-nav {
  display: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 160px clamp(18px, 5vw, 72px) 58px;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #1f1413;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 78% 42%, rgba(31, 20, 19, 0.12), rgba(31, 20, 19, 0.42) 42%, rgba(31, 20, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(14, 10, 10, 0.9), rgba(31, 20, 19, 0.58), rgba(31, 20, 19, 0.16));
}

.hero-media span {
  position: absolute;
  inset: 0;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroSlideshow 30s infinite;
}

.hero-media span:nth-child(2) {
  animation-delay: 6s;
}

.hero-media span:nth-child(3) {
  animation-delay: 12s;
}

.hero-media span:nth-child(4) {
  animation-delay: 18s;
}

.hero-media span:nth-child(5) {
  animation-delay: 24s;
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }

  6%,
  20% {
    opacity: 1;
  }

  26%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 790px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.52);
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd45a;
  font-family: var(--font-english);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-bengali);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-bengali);
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: #8c2635;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.hero-card {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 5vw, 72px);
  bottom: 54px;
  display: grid;
  gap: 6px;
  width: min(280px, calc(100% - 36px));
  padding: 20px;
  font-family: var(--font-english);
  color: var(--ink);
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  background: var(--cream);
}

.intro h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.intro > p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-bengali);
  font-size: 1.06rem;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  display: grid;
  gap: 8px;
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  color: var(--wine);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.stats span,
.gallery figcaption,
.package li,
.package a,
.team-member p,
.team-member span,
.testimonial p,
.footer,
label,
input,
select,
textarea {
  font-family: var(--font-bengali);
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(30, 22, 20, 0.58);
  border-radius: 999px;
  font-size: 0.82rem;
}

.services {
  background: #fff;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid article,
.package {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-grid span {
  color: var(--rose);
  font-family: var(--font-english);
  font-weight: 700;
}

.service-grid h3,
.package h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.service-grid p,
.package ul {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-bengali);
  line-height: 1.65;
}

.package {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 16px 38px rgba(54, 35, 24, 0.08);
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.package h3 {
  margin: 0 0 16px;
  max-width: 78%;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.package:not(.featured) h3 {
  max-width: 100%;
}

.package.featured {
  color: #fff;
  background: var(--wine);
  box-shadow: var(--shadow);
}

.package.featured .price,
.package.featured ul,
.package.featured a {
  color: #fff;
}

.tag {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-family: var(--font-english);
  font-size: 0.78rem;
  font-weight: 700;
}

.price {
  margin: 0 0 22px;
  color: var(--wine);
  font-size: clamp(2.15rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.price-line .price {
  margin-bottom: 4px;
}

.old-price {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-english);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.coverage-label {
  display: inline-flex;
  width: fit-content;
  margin: 2px 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(126, 42, 52, 0.08);
  font-family: var(--font-english);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.package.featured .coverage-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.discount-badge {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(135deg, #8b2f3b, #4b1f22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  font-family: var(--font-english);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(78, 28, 33, 0.18);
}

.discount-badge small {
  display: block;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.92;
}

.package.featured .discount-badge {
  color: var(--wine);
  background: linear-gradient(135deg, #f4ca73, #fff1ca);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 26px rgba(20, 10, 10, 0.18);
}

.package.featured .discount-badge small {
  border-top-color: rgba(126, 42, 52, 0.18);
}

.package ul {
  display: grid;
  gap: 11px;
  padding-left: 20px;
  font-size: 0.98rem;
}

.package a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 26px;
  color: var(--wine);
  font-weight: 700;
}

.premium-addons {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: linear-gradient(135deg, #2b2421, #6f2d34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.premium-addons .eyebrow {
  margin-bottom: 10px;
  color: #ffd45a;
}

.premium-addons h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.premium-addons ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-addons li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-english);
}

.premium-addons li:last-child {
  border-bottom: 0;
}

.premium-addons span {
  color: rgba(255, 255, 255, 0.82);
}

.premium-addons strong {
  color: #ffd45a;
  white-space: nowrap;
}

.terms-card {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(54, 35, 24, 0.08);
}

.terms-card .eyebrow {
  margin-bottom: 16px;
}

.terms-card ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-family: var(--font-english);
  line-height: 1.65;
}

.terms-card strong {
  color: var(--ink);
}

.team {
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.team-member {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(54, 35, 24, 0.08);
}

.team-member:first-child {
  border-color: var(--line);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(54, 35, 24, 0.08);
}

.team-member img {
  aspect-ratio: 4 / 5;
  height: 345px;
  object-fit: cover;
}

.team-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  height: 345px;
  background:
    radial-gradient(circle at 50% 34%, rgba(244, 202, 115, 0.2), transparent 34%),
    linear-gradient(135deg, #2b2421, #6f2d34);
}

.team-placeholder svg {
  width: 92px;
  height: 92px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-member div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 22px;
}

.team-member:first-child div {
  padding: 22px;
  color: inherit;
  background: transparent;
  text-align: left;
}

.team-member p {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 10px;
  color: #fff;
  background: var(--wine);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-member:first-child p {
  justify-content: center;
  margin: 0 0 12px;
  padding: 6px 10px;
  color: #fff;
  background: var(--wine);
  border: 0;
  font-family: var(--font-english);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.team-member h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.team-member:first-child h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.team-member span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.team-member:first-child div > span {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: auto;
  width: fit-content;
  min-height: 26px;
  padding: 5px 8px;
  color: var(--wine);
  background: #fff;
  border: 1px solid rgba(111, 45, 52, 0.18);
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--font-english);
  font-size: 0.66rem;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.team-member:first-child .instagram-link {
  margin-top: auto;
  padding: 5px 8px;
  color: var(--wine);
  background: #fff;
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.66rem;
  font-weight: 500;
}

.instagram-link:hover {
  color: #fff;
  background: var(--wine);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(111, 45, 52, 0.28);
}

.team-member:first-child .instagram-link:hover {
  color: #fff;
  background: var(--wine);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(111, 45, 52, 0.28);
}

.instagram-link svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.testimonial {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 12vw, 160px);
  color: #fff;
  background:
    linear-gradient(rgba(66, 35, 36, 0.82), rgba(66, 35, 36, 0.82)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.testimonial-heading {
  margin-bottom: 28px;
}

.testimonial-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.testimonial blockquote {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.7rem);
  line-height: 1.22;
}

.testimonial p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 90px);
  background: var(--cream);
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(54, 35, 24, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

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

.footer {
  width: 100%;
  padding: 34px 30px 0;
  color: #fff;
  background:
    linear-gradient(90deg, #17100f 0%, #2f1719 44%, #5e202b 100%);
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-english);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-english);
  font-size: clamp(0.94rem, 1vw, 1.03rem);
  line-height: 1.55;
}

.footer p {
  margin: 0;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
  color: #f2a43a;
}

.footer-studio {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.footer-logo {
  width: 82px;
  height: 82px;
  margin-bottom: 8px;
  object-fit: cover;
  background: #f4dfb5;
  border: 3px solid rgba(242, 164, 58, 0.32);
  border-radius: 50%;
}

.footer-tagline {
  margin-bottom: 2px;
  color: #f2a43a;
  font-weight: 700;
}

.footer-links h2,
.footer-contact h2 {
  color: #f2a43a;
}

.footer-links div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 46px;
}

.footer-links a {
  width: fit-content;
  font-weight: 500;
}

.footer-links a:hover {
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-copy {
  margin-top: 2px;
}

.footer-credit-bar {
  max-width: none;
  margin: 28px -30px 0;
  padding: 14px 30px;
  background: rgba(18, 11, 10, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-credit-bar span {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-english);
  font-size: 0.82rem;
  font-weight: 400;
}

@media (max-width: 920px) {
  .menu-button {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed !important;
    top: auto !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 3px !important;
    z-index: 9999 !important;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    padding: 8px;
    color: #fff;
    background: linear-gradient(135deg, rgba(32, 24, 22, 0.96), rgba(54, 38, 34, 0.96));
    border: 1px solid rgba(255, 212, 90, 0.16);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    padding: 7px 4px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .mobile-bottom-nav svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
  }

  .mobile-bottom-nav span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-nav a:hover {
    color: #ffd45a;
    background: rgba(255, 212, 90, 0.1);
  }

  .mobile-bottom-nav a:active {
    color: #241b19;
    background: #ffd45a;
    transform: translateY(-1px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro,
  .contact,
  .premium-addons {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 30px 24px 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-studio {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .footer h2 {
    font-size: 1.55rem;
  }

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

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

  .service-grid,
  .package-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 132px 18px 126px;
  }

  .site-header .nav-links {
    display: none !important;
  }

  .mobile-bottom-nav {
    gap: 5px;
    padding: 7px;
  }

  .mobile-bottom-nav a {
    min-height: 56px;
    padding: 7px 3px;
    font-size: clamp(0.58rem, 2.65vw, 0.68rem);
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.55rem);
    line-height: 0.95;
  }

  .hero-copy {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 28px;
  }

  .hero-media {
    background: #1f1413;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(31, 20, 19, 0.45), rgba(31, 20, 19, 0.9)),
      linear-gradient(90deg, rgba(14, 10, 10, 0.86), rgba(31, 20, 19, 0.22));
  }

  .button {
    width: 100%;
  }

  .section-heading {
    display: grid;
  }

  .stats,
  .gallery,
  .service-grid,
  .package-grid,
  .team-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .price-line {
    align-items: flex-start;
    gap: 12px;
  }

  .discount-badge {
    min-width: 94px;
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .discount-badge small {
    font-size: 0.62rem;
  }

  .footer {
    padding: 26px 18px 0;
  }

  .footer-credit-bar {
    margin-top: 26px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 14px 18px 92px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    width: 68px;
    height: 68px;
  }

  .footer-links div {
    max-width: 280px;
    margin: 0 auto;
    gap: 10px 20px;
  }

  .footer-links a {
    width: auto;
  }

  .footer-contact {
    justify-items: center;
  }

  .premium-addons li {
    display: grid;
    gap: 4px;
  }

  .gallery {
    grid-auto-rows: 300px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 920px) {
  .site-header .nav-links {
    display: none !important;
  }

  .mobile-bottom-nav {
    position: fixed !important;
    top: auto !important;
    bottom: 3px !important;
    left: 10px !important;
    right: 10px !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    z-index: 9999 !important;
  }
}
