:root {
  --wine: #7b0f3d;
  --wine-dark: #3c061d;
  --wine-soft: #9b1a50;
  --green: #145c34;
  --green-dark: #07331d;
  --cream: #fff8eb;
  --cream-2: #f8efd9;
  --gold: #c6a15b;
  --gold-soft: #f2d485;
  --white: #ffffff;
  --black: #111111;
  --gray: #626262;
  --light: #fff9ef;
  --line: rgba(16, 16, 16, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  --container: 1180px;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
}

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

::selection {
  background: var(--wine);
  color: var(--cream);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 78px;
}

section {
  position: relative;
}

img {
  max-width: 100%;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 248, 235, 0.94);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 255px;
  height: 70px;
  padding: 4px 12px;
  border-radius: 22px;
  background: rgba(255, 248, 235, 0.72);
  overflow: hidden;
}

.brand-logo img {
  width: 230px;
  max-width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: contrast(1.06) saturate(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 900;
}

.nav a {
  opacity: 0.82;
  transition: 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--wine);
}

.nav-cta {
  background: var(--wine);
  color: var(--cream) !important;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 1 !important;
  box-shadow: 0 12px 28px rgba(123, 15, 61, 0.28);
}

.language-switch {
  display: flex;
  gap: 5px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(123, 15, 61, 0.1);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 0.75rem;
  font-weight: 950;
  color: var(--wine);
  background: transparent;
}

.lang-btn.active {
  color: var(--cream);
  background: var(--wine);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--wine);
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--cream);
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 140px 0 90px;
  background: var(--green);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets-photos/background/background.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(1.08) contrast(1.04);
}

.hero-natural-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.1)),
    linear-gradient(to top, rgba(0, 0, 0, 0.32), transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 950;
  margin-bottom: 16px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-label {
  color: var(--wine);
}

.hero h1,
h2,
.hero-card h2,
.modal-box h3,
.admin-page h1 {
  font-family: var(--font-heading);
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-text {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
}

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

.btn {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  transition: 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(123, 15, 61, 0.36);
}

.btn-light {
  background: linear-gradient(135deg, var(--cream), #ffffff);
  color: var(--wine);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.btn-soft {
  background: var(--cream);
  color: var(--wine);
}

.hero-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 160px));
  gap: 12px;
}

.hero-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold-soft);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: .8rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  background: rgba(255, 248, 235, 0.94);
  color: var(--black);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
}

.hero-logo-wrap {
  width: 100%;
  max-width: 360px;
  padding: 10px 14px;
  border-radius: 24px;
  background: rgba(255, 248, 235, 0.78);
  margin-bottom: 26px;
  overflow: hidden;
}

.hero-logo-img {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(1.05);
}

.hero-card h2 {
  color: var(--green);
  font-size: 2.5rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.quick-tags {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-tags span {
  background: rgba(123, 15, 61, 0.1);
  color: var(--wine);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.85rem;
  border: 1px solid rgba(123, 15, 61, 0.1);
}

.card-cta {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(123, 15, 61, 0.24);
}

.strip {
  background: linear-gradient(90deg, var(--wine-dark), var(--wine), var(--green));
  color: var(--cream);
  overflow: hidden;
}

.strip-track {
  min-width: max-content;
  display: flex;
  gap: 42px;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.strip-track span {
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

h2 {
  color: var(--green);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-heading p,
.area-grid p,
.estimate-inner p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 16px;
}

.services {
  background:
    radial-gradient(circle at top right, rgba(20, 92, 52, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(123, 15, 61, 0.09), transparent 32%),
    var(--cream);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab-btn {
  border: 1px solid rgba(123, 15, 61, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--wine);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 950;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--wine);
  color: var(--cream);
}

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

.service-card {
  min-height: 360px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
}

.service-card.hide {
  display: none;
}

.large {
  grid-column: span 2;
}

.photo-card {
  background: var(--green);
}

.service-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1);
  transition: transform 0.45s ease;
}

.service-photo.static-photo {
  background-size: cover;
  background-position: center;
}

.slide-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 2.35s ease,
    transform 4.2s ease;
  will-change: opacity, transform;
}

.slide-layer.active {
  opacity: 1;
  transform: scale(1.08);
}

.service-card:hover .service-photo {
  transform: scale(1.025);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 18, 11, 0.92), rgba(5, 18, 11, 0.5), rgba(0, 0, 0, 0.04));
}

.service-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 24px;
  color: var(--cream);
}

.service-content span {
  display: inline-flex;
  color: var(--gold-soft);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 950;
  margin-bottom: 10px;
}

.service-content h3 {
  color: var(--cream);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-content p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.service-open {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
}

.areas {
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 212, 133, 0.15), transparent 26%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--cream);
}

.areas h2 {
  color: var(--cream);
}

.areas .section-label {
  color: var(--gold-soft);
}

.areas p {
  color: rgba(255,255,255,.78);
}

.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.city-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list button {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.city-list button.active,
.city-list button:hover {
  background: var(--wine);
  color: var(--cream);
}

.google-map-card {
  background: var(--cream);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
}

.map-top {
  min-height: 78px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--wine);
  color: var(--cream);
}

.map-top strong {
  display: block;
  font-size: 1.1rem;
}

.map-top span {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.72);
  margin-top: 2px;
}

.map-top a {
  background: var(--cream);
  color: var(--wine);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
}

.google-map-card iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.gallery {
  background: var(--light);
}

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

.gallery-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,.07);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-item h3 {
  padding: 18px 20px 22px;
  color: var(--green);
  font-size: 1.2rem;
}

.reviews {
  background:
    radial-gradient(circle at top left, rgba(123, 15, 61, 0.09), transparent 34%),
    var(--light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.review-card {
  border-radius: 30px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 22px 58px rgba(0,0,0,.07);
}

.featured-review {
  background: var(--wine);
  color: var(--cream);
}

.stars {
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.review-card p {
  color: var(--gray);
  font-size: 1.05rem;
}

.featured-review p {
  color: rgba(255,255,255,.86);
}

.review-person {
  display: grid;
  gap: 3px;
  margin-top: 24px;
}

.review-person strong {
  color: var(--green);
}

.featured-review .review-person strong {
  color: var(--cream);
}

.review-person span {
  color: var(--gray);
  font-size: .9rem;
}

.featured-review .review-person span {
  color: rgba(255,255,255,.7);
}

.review-submit-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: 30px;
  border-radius: 34px;
  background: var(--cream);
  border: 1px solid rgba(16,16,16,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.07);
}

.review-submit-card h3 {
  font-family: var(--font-heading);
  color: var(--green);
  font-size: 2.3rem;
  line-height: .98;
  letter-spacing: -.04em;
}

.review-submit-card p {
  color: var(--gray);
  margin-top: 12px;
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(16,16,16,.12);
  background: var(--white);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
}

.estimate-banner {
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 212, 133, 0.13), transparent 24%),
    linear-gradient(135deg, var(--wine-dark), var(--wine));
  color: var(--cream);
  padding: 76px 0;
}

.estimate-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.estimate-inner h2 {
  color: var(--cream);
}

.estimate-inner .section-label {
  color: var(--gold-soft);
}

.estimate-inner p {
  color: rgba(255,255,255,.78);
}

.estimate-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact {
  background: var(--light);
}

.contact-cards {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-cards a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid rgba(16,16,16,.08);
}

.contact-cards span {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: .75rem;
  font-weight: 950;
}

.contact-cards strong {
  color: var(--wine);
}

.contact-form {
  background: var(--white);
  border-radius: 32px;
  padding: 30px;
  border: 1px solid rgba(16,16,16,.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: var(--green);
  font-weight: 950;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16,16,16,.12);
  background: var(--light);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(123, 15, 61, .09);
}

.full-btn {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  color: var(--wine);
  font-weight: 900;
}

.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.72);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.footer-logo-wrap {
  width: 270px;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 22px;
  background: rgba(255, 248, 235, 0.92);
  margin-bottom: 20px;
  overflow: hidden;
}

.footer-logo {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
}

.footer h4 {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer a {
  display: block;
  margin: 9px 0;
}

.footer a:hover {
  color: var(--cream);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .9rem;
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(calc(100% - 24px), 620px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  border-radius: 26px;
  background: rgba(60, 6, 29, .9);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  backdrop-filter: blur(18px);
}

.sticky-actions a {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--wine);
  color: var(--cream);
  text-align: center;
}

.sticky-actions span {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
  opacity: .75;
}
.sticky-actions strong {
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 950;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 20px;
}

.service-modal.active {
  display: grid;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  background: var(--cream);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-size: 1.5rem;
}

.modal-box h3 {
  color: var(--green);
  font-size: 2.2rem;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.modal-box p {
  color: var(--gray);
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(123,15,61,.14), transparent 30%),
    var(--cream);
}

.thank-you-card {
  width: min(100%, 620px);
  text-align: center;
  background: var(--white);
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.thank-you-card img {
  width: 290px;
  max-width: 100%;
  mix-blend-mode: multiply;
  margin-bottom: 24px;
}

.thank-you-card h1 {
  font-family: var(--font-heading);
  color: var(--green);
  font-size: 4rem;
  line-height: .9;
}

.thank-you-card p {
  margin: 18px auto 28px;
  color: var(--gray);
  max-width: 460px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ADMIN */
.admin-body {
  padding-bottom: 0;
  background:
    radial-gradient(circle at top right, rgba(123,15,61,.13), transparent 30%),
    radial-gradient(circle at bottom left, rgba(20,92,52,.14), transparent 30%),
    var(--cream);
}

.admin-page {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 40px 0;
}

.admin-login-card {
  width: min(100%, 520px);
  margin: 70px auto;
  background: var(--white);
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.admin-logo-wrap {
  width: 280px;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 22px;
  background: var(--cream);
  margin-bottom: 20px;
  overflow: hidden;
}

.admin-logo-wrap img {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
}

.admin-login-card h1,
.admin-top h1 {
  color: var(--green);
  font-size: 3rem;
  line-height: .95;
  letter-spacing: -.04em;
}

.admin-login-card p,
.admin-top p,
.admin-panel p {
  color: var(--gray);
  margin-top: 10px;
}

.admin-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 950;
}

.admin-form input {
  width: 100%;
  border: 1px solid rgba(16,16,16,.12);
  background: var(--light);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-panel {
  background: var(--white);
  border: 1px solid rgba(16,16,16,.08);
  box-shadow: 0 22px 58px rgba(0,0,0,.07);
  border-radius: 30px;
  padding: 28px;
}

.admin-panel h2 {
  font-size: 2.1rem;
}

.admin-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.admin-review {
  padding: 18px;
  border-radius: 20px;
  background: var(--light);
  border: 1px solid rgba(16,16,16,.08);
}

.admin-review strong {
  color: var(--green);
}

.admin-review small {
  display: block;
  color: var(--gray);
  margin: 4px 0 12px;
}

.admin-review p {
  color: var(--black);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.admin-actions button {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 950;
}

.approve-btn {
  background: var(--green);
  color: var(--cream);
}

.delete-btn {
  background: var(--wine);
  color: var(--cream);
}

.admin-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-gallery-item {
  overflow: hidden;
  border-radius: 20px;
  background: var(--light);
  border: 1px solid rgba(16,16,16,.08);
}

.admin-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.admin-gallery-item div {
  padding: 12px;
}

.admin-gallery-item strong {
  color: var(--green);
  font-size: .9rem;
}

.admin-gallery-item button {
  margin-top: 10px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--wine);
  color: var(--cream);
  font-weight: 950;
}

@media (max-width: 1000px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,248,235,.98);
    padding: 18px;
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .language-switch {
    width: fit-content;
  }

  .hero-grid,
  .area-grid,
  .contact-grid,
  .estimate-inner,
  .review-submit-card {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 650px) {
  body {
    padding-bottom: 86px;
  }

  .header-inner {
    height: 76px;
  }

  .brand-logo {
    width: 235px;
    height: 68px;
    padding: 4px 10px;
    border-radius: 0 0 18px 18px;
    align-self: flex-start;
  }

  .brand-logo img {
    width: 220px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card h2 {
    font-size: 2.1rem;
  }

  .section {
    padding: 82px 0;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .large {
    grid-column: span 1;
  }

  .service-card {
    min-height: 330px;
  }

  .google-map-card iframe {
    height: 430px;
  }

  .map-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-top a {
    width: 100%;
    text-align: center;
  }

  .btn,
  .hero-actions,
  .estimate-buttons,
  .modal-actions {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-actions {
    width: calc(100% - 18px);
  }

  .sticky-actions strong {
    font-size: .68rem;
  }

  .admin-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-gallery {
    grid-template-columns: 1fr;
  }
}