:root {
  --bg: #0e0d0b;
  --surface: #151311;
  --ink: #f7e7c1;
  --muted: #d0bd8f;
  --brand: #8f6b1b;
  --brand-soft: #221d13;
  --accent: #f2d27c;
  --ring: rgba(240, 201, 106, 0.35);
  --radius: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 22px 50px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(240, 201, 106, 0.22), transparent 34%),
    radial-gradient(circle at 100% 92%, rgba(202, 161, 74, 0.16), transparent 30%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 7, 0.94);
  color: #f5f5f5;
  font-size: 0.92rem;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(240, 201, 106, 0.35);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.75rem 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.35rem 0.92rem;
  border: 2px solid white;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  color: white;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  background: black;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(240, 201, 106, 0.16);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 80vh;
  isolation: isolate;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.7) 52%, rgba(8, 8, 8, 0.8) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 11vh 0 9vh;
  color: #fff5db;
  max-width: 760px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -1.1rem -1.25rem;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.66), rgba(24, 19, 12, 0.45));
  border: 1px solid rgba(240, 201, 106, 0.32);
  border-radius: 22px;
  backdrop-filter: blur(3px);
  z-index: -1;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.62);
}

h1,
h2,
h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  margin: 0.8rem 0 0.9rem;
  max-width: 14ch;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  max-width: 54ch;
  margin: 0;
  font-size: 1.05rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.86rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #6f5315, #c79e4a 50%, #f0d181);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(202, 161, 74, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7a5a18, #d4ab56 50%, #f5db92);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  backdrop-filter: blur(2px);
}

.section-pad {
  padding: clamp(3.2rem, 8vw, 6rem) 0;
}

.about {
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.94), rgba(13, 11, 9, 0.96));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.about-copy {
  background: var(--surface);
  border: 1px solid rgba(240, 201, 106, 0.24);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.about-eyebrow {
  color: var(--accent);
  text-shadow: none;
  margin-bottom: 0.58rem;
}

.about-visual {
  border-radius: var(--radius);
  padding: 1.4rem;
  background: linear-gradient(155deg, rgba(240, 201, 106, 0.2), rgba(25, 20, 14, 0.86));
  border: 1px solid rgba(240, 201, 106, 0.28);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-logo {
  width: min(320px, 88%);
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(240, 201, 106, 0.38);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.services h2,
.contact h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
}

.services-page-hero {
  padding-bottom: 1rem;
}

.services-page-head {
  text-align: center;
}

.services-page-head h1 {
  color: var(--ink);
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
  max-width: 16ch;
}

.services-page-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.services-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.services-cta-secondary {
  color: #ffffff;
  background: rgba(240, 201, 106, 0.1);
  border: 1px solid rgba(240, 201, 106, 0.45);
}

.section-lead {
  color: var(--muted);
  max-width: 65ch;
  margin-top: -0.3rem;
}

.service-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(240, 201, 106, 0.2);
}

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

.service-card-body {
  padding: 1.1rem 1rem 1.2rem;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.contact {
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.92), rgba(10, 9, 7, 0.96));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.contact-info {
  background: linear-gradient(140deg, #221b10, #16120d);
  border: 1px solid rgba(240, 201, 106, 0.25);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.contact-numbers {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 1.5rem;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  width: fit-content;
  font-weight: 700;
}

.contact-number::before {
  content: "\260E";
  color: var(--accent);
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(240, 201, 106, 0.12);
  border: 1px solid rgba(240, 201, 106, 0.26);
  transition: transform 180ms ease, background-color 200ms ease;
}

.social-links a:hover {
  background: rgba(240, 201, 106, 0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: #f5d389;
}

.contact-form {
  background: #14110e;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 201, 106, 0.25);
  padding: 1.45rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  padding: 0.74rem 0.9rem;
  font-family: inherit;
  font-size: 0.98rem;
  background: #ffffff;
  color: #1f1f1f;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #808080;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 57px;
  height: 57px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: var(--shadow-strong);
  z-index: 40;
}

.floating-whatsapp svg {
  width: 33px;
  height: 33px;
  fill: #ffffff;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 700px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wordmark {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
  }

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

  .hero {
    min-height: 74vh;
  }

  .hero-content {
    padding-top: 9.5vh;
  }

  .hero-content::before {
    inset: -0.8rem -0.7rem;
  }
}
