:root {
  --cream: #f4efe2;
  --cream-2: #efe7d6;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.75);
  --amber: #f6a300;
  --amber-2: #ffb11a;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: #000;
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}

/* Header / Nav */
.header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 20px 0;
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--cream);
  color: #231f1a;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  height: 56px;
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

/* Simple inline "logo" */
.logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    #fff 0%,
    #fff 35%,
    var(--cream-2) 36%,
    var(--cream-2) 100%
  );
  border: 2px solid rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.logo::before,
.logo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-50%);
}
.logo::before {
  left: -55px;
}
.logo::after {
  right: -55px;
}
.logo span {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.navlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 14px;
}
.navlinks a {
  opacity: 0.85;
}
.navlinks a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn-amber {
  background: var(--amber);
  color: #12100c;
  box-shadow: 0 10px 22px rgba(246, 163, 0, 0.35);
}
.btn-amber:hover {
  background: var(--amber-2);
}

.hamburger {
  display: none;
  width: 42px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.hamburger svg {
  width: 22px;
  height: 22px;
}

/* Mobile nav dropdown */
.mobile-menu {
  display: none;
  max-width: var(--container);
  margin: 10px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 60;
}
.mobile-panel {
  background: var(--cream);
  color: #231f1a;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 12px;
  display: none;
}
.mobile-panel a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 800;
  opacity: 0.9;
}
.mobile-panel a:hover {
  background: rgba(0, 0, 0, 0.06);
}
.mobile-contact {
  margin-top: 8px;
  width: 100%;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 24px; /* topbar */
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.64) 0%,
      rgba(0, 0, 0, 0.4) 42%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.85;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 20px 34px;
  position: relative;
  z-index: 2;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.mini-tag .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 40px;
  align-items: start;
}

h1 {
  margin: 22px 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.lead {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn-primary {
  height: 42px;
  padding: 0 18px 0 16px;
}
.btn-primary .arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.12);
  font-weight: 900;
}

.link-amber {
  font-weight: 800;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-amber:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Bottom features (left) */
.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  pointer-events: none;
}
.hero-footer .wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}
.feature {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 12px;
  pointer-events: auto;
}
.feature svg {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}

/* Review card (bottom-right) */
.review {
  position: absolute;
  right: 26px;
  bottom: 64px;
  width: 320px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  z-index: 4;
}
.stars {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 10px;
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--amber);
}
.review p {
  margin: 0 0 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}
.review .meta {
  display: grid;
  gap: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}
.review .meta strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0 40px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  margin-bottom: 18px;
}
.footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 13px;
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
    padding: 0 10px;
  }
  .navlinks {
    display: none;
  }
  .nav-cta .btn-amber {
    display: none;
  }
  .hamburger {
    display: inline-grid;
    place-items: center;
  }
  .mobile-menu {
    display: block;
  }

  .hero-inner {
    padding-top: 120px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .review {
    right: 16px;
    width: min(340px, calc(100% - 32px));
  }

  .hero-footer .wrap {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header {
    padding: 12px 12px 0;
  }
  .hero-inner {
    padding: 112px 14px 30px;
  }
  .review {
    bottom: 92px;
  }
}
/* ------------------------------
   Shared helpers
------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.sec {
  padding: 64px 0;
}
.center {
  text-align: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.78);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.pill-dark {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.h2 {
  margin: 10px 0 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #2a1a12;
}
.h2.light {
  color: #fff;
}
.p {
  margin: 0 0 16px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  line-height: 1.6;
  max-width: 62ch;
}
.img-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  background: #fff;
}
.img-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------
   Services section
------------------------------ */
.sec-services {
  background: #fbf5da;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}
.svc-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.svc-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.svc-item.is-active {
  background: rgba(255, 255, 255, 0.82);
}
.svc-ic {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(246, 163, 0, 0.18);
  border: 1px solid rgba(246, 163, 0, 0.25);
}
.svc-body h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #2a1a12;
}
.svc-body p {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 600;
  line-height: 1.45;
  font-size: 12px;
}
.services-right .img-card {
  height: 380px;
}

/* ------------------------------
   Value dark hero section
------------------------------ */
.sec-value-hero {
  padding: 0;
}
.value-hero {
  min-height: 420px;
  padding: 56px 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    var(--vh-img);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.vh-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.vh-caption {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
}

/* ------------------------------
   Why choose section
------------------------------ */
.sec-why {
  background: #fbf7e6;
}
.why-head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.why-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 16px;
}
.why-ic {
  opacity: 0.8;
  font-size: 18px;
  margin-bottom: 10px;
}
.why-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: #2a1a12;
}
.why-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.55;
}

/* ------------------------------
   CTA split section
------------------------------ */
.sec-cta-split {
  background: #fbf7e6;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.cta-left {
  height: 420px;
}
.cta-right .p {
  max-width: 70ch;
}
.mini-review {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mini-review p {
  margin: 10px 0 10px;
  font-size: 12px;
  font-weight: 650;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.55;
  max-width: 66ch;
}
.mini-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 800;
}
.mini-review-meta .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(246, 163, 0, 0.7);
}

/* ------------------------------
   Gallery dark section
------------------------------ */
.sec-gallery {
  background: #3b1a08; /* dark brown */
  padding: 74px 0;
}
.gallery-head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.work-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.work-img {
  height: 220px;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-body {
  background: #fff3dc;
  padding: 14px 14px 16px;
}
.work-body h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: #2a1a12;
}
.work-body p {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.5;
}

/* ------------------------------
   Testimonials cards
------------------------------ */
.sec-testimonials {
  background: #fbf7e6;
}
.testi-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.testi-nav {
  display: flex;
  gap: 10px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.72);
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.62) 100%),
    var(--timg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.testi-text {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 36px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}
.testi-sub {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
}

/* ------------------------------
   CTA banner
------------------------------ */
.sec-cta-banner {
  padding: 0;
}
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffe7a8 0%, #ffd37c 100%);
}

/* ------------------------------
   Contact section
------------------------------ */
.sec-contact {
  background: #fbf7e6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.contact-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cc-ic {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(246, 163, 0, 0.18);
  border: 1px solid rgba(246, 163, 0, 0.25);
}
.cc-title {
  font-size: 12px;
  font-weight: 900;
  color: #2a1a12;
  margin-bottom: 4px;
}
.cc-link {
  color: rgba(0, 0, 0, 0.72);
  font-weight: 800;
  font-size: 12px;
}
.cc-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cc-text {
  font-size: 12px;
  font-weight: 650;
  color: rgba(0, 0, 0, 0.62);
}

.contact-form {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-form label {
  display: block;
  margin-bottom: 12px;
}
.contact-form span {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.72);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(246, 163, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(246, 163, 0, 0.12);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note {
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}

/* ------------------------------
   Responsiveness
------------------------------ */
@media (max-width: 980px) {
  .services-grid,
  .cta-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-right .img-card {
    height: 320px;
  }
  .cta-left {
    height: 320px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .sec {
    padding: 48px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.form-alert {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
}
.form-alert.ok {
  border-color: rgba(34, 197, 94, 0.35);
}
.form-alert.err {
  border-color: rgba(239, 68, 68, 0.35);
}
.form-alert .li {
  width: 18px;
  height: 18px;
}
/* Gallery page variations */
.gallery-grid-page--var {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-grid-page--var .gcard {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  height: 170px;
}

.gallery-grid-page--var .gcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* wide card */
.gallery-grid-page--var .gcard--wide {
  grid-column: span 2;
  height: 220px;
}

/* tall card */
.gallery-grid-page--var .gcard--tall {
  height: 360px;
}

@media (max-width: 520px) {
  .gallery-grid-page--var {
    grid-template-columns: 1fr;
  }

  .gallery-grid-page--var .gcard,
  .gallery-grid-page--var .gcard--wide,
  .gallery-grid-page--var .gcard--tall {
    grid-column: auto;
    height: 200px;
  }
}
