:root {
  --black: #0b0b0d;
  --dark-gray: #151518;
  --gold: #c49a6c;
  --gold-soft: #e1b17c;
  --gold-deep: #a6825b;
  --white: #ffffff;
  --text-muted: #b3b3b8;
  --border-subtle: #2b2b30;
  --accent: #e1b17c;
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.35s ease;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a1a1f 0, var(--black) 60%);
  color: var(--white);
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* HEADER / NAV */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.45rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 200px;
  max-width: 200px;
}

.brand-logo {
  width: 200px;
  height: 100px;
  min-height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.nav-links,
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a::after,
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transition: width var(--transition-med);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after,
.nav-list a:hover::after,
.nav-list a.nav-active::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-item.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(10, 10, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.6rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 30;
  list-style: none;
  margin: 0;
}

.nav-submenu .nav-submenu {
  top: 0;
  left: 100%;
  margin-left: 0;
}

.nav-item:hover > .nav-submenu {
  display: flex;
}

.nav-submenu .nav-link {
  display: block;
  width: 100%;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.nav-submenu .nav-item {
  width: 100%;
}

.nav-submenu .nav-item.has-children::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.5rem;
  width: 0.5rem;
  height: 100%;
}

.nav-submenu .nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-caret {
  margin-left: 0.45rem;
  border: 5px solid transparent;
  border-top-color: var(--gold);
  display: inline-block;
  transform: translateY(2px);
}

.mobile-nav {
  display: none;
  padding: 0.85rem 1.3rem 1rem;
  background: rgba(5, 5, 8, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mnav-submenu {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0 0 0 0.75rem;
}

.mnav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.2rem;
}

.mnav-link {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex: 1;
}

.mnav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  flex: none;
}

.mnav-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--gold);
  transition: transform 0.2s ease;
}

.mnav-toggle[aria-expanded="false"] .mnav-arrow {
  transform: rotate(0deg);
}

.mnav-toggle[aria-expanded="true"] .mnav-arrow {
  transform: rotate(180deg);
}

.mnav-panel {
  padding-left: 0.8rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.phone-badge i {
  font-size: 0.9rem;
  color: var(--gold-soft);
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    filter var(--transition-fast);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.btn i {
  font-size: 0.9rem;
}

.btn:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.65);
  background: var(--gold-soft);
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(196, 154, 108, 0.16);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.cart-nav-btn {
  min-width: 54px;
  padding-inline: 0.95rem;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.cart-drawer[hidden],
.cart-backdrop[hidden] {
  display: none !important;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.45);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  z-index: 99;
  background: #0f1014;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.cart-drawer-header,
.cart-drawer-footer {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer-footer {
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 10px 14px;
  display: grid;
  gap: 10px;
}

.cart-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(255,255,255,.05) center center/cover no-repeat;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-item-qty input {
  width: 60px;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 6px 8px;
}

.cart-close {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* HERO / SLIDESHOW */
.hero {
  padding: 2.5rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 154, 108, 0.12);
  font-size: 0.75rem;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(196, 154, 108, 0.35);
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--gold-soft);
}

.hero-subtitle {
  max-width: 34rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.9rem;
}

.hero-badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-badge i {
  font-size: 0.85rem;
  color: var(--gold-soft);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-footnote i {
  color: var(--accent);
  font-size: 0.9rem;
}

.hero-slideshow {
  background: radial-gradient(circle at top left, #26262c, var(--dark-gray));
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.slideshow-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.slideshow-tag i {
  color: var(--gold-soft);
}

.slides {
  position: relative;
  height: 280px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.65s ease,
    transform 0.75s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide::after {
  content: "Project Photo Placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: linear-gradient(135deg, rgba(11, 11, 13, 0.9), rgba(0, 0, 0, 0.5));
  mix-blend-mode: multiply;
}

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

.slideshow-footer {
  position: relative;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(to right, #111115, #1a1a20);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.slideshow-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slideshow-caption span {
  color: var(--white);
  font-weight: 500;
}

.slideshow-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.slide-dots {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    width var(--transition-fast);
}

.slide-dot.active {
  width: 18px;
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.slide-arrow-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast);
  font-size: 0.85rem;
  color: var(--white);
}

.slide-arrow-btn:hover {
  background: rgba(196, 154, 108, 0.26);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

/* CONTACT STRIP */
.contact-strip {
  margin-top: 2.7rem;
  background: linear-gradient(135deg, #131318, #1e1e24);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.contact-strip-header {
  border-right: 1px solid var(--border-subtle);
  padding-right: 1.4rem;
}

.contact-strip-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-strip-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 154, 108, 0.2);
  color: var(--gold-soft);
  flex-shrink: 0;
}

/* more flexible email text */
.contact-pill-text {
  font-size: 0.8rem;
  flex: 1;
  min-width: 0;
}

.contact-pill-label {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.contact-pill-value {
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* GENERIC SECTIONS */
section {
  margin-top: 3.25rem;
}

.section-header {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.section-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title span {
  color: var(--gold-soft);
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 26rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.about-body {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.about-body p + p {
  margin-top: 1rem;
}

.about-highlight {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

.about-stat {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.82rem;
}

.about-stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--gold-soft);
}

.about-tag-card {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at top, rgba(196, 154, 108, 0.18), rgba(0, 0, 0, 0.75));
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-tag-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.tag-chip {
  font-size: 0.75rem;
  padding: 0.18rem 0.6rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  background: #121216;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 1.1rem 1rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(196, 154, 108, 0.22), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
}

.testimonial-rating {
  position: relative;
  z-index: 1;
  color: #ffca28;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-meta {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* PROJECTS PAGE */
.projects-hero {
  margin-top: 2.5rem;
}

.projects-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.projects-section {
  margin-top: 2.5rem;
}

.projects-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-pill-active,
.badge-pill:hover {
  background: rgba(196, 154, 108, 0.2);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.project-card {
  background: #121216;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-image {
  height: 160px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-image-placeholder {
  background: linear-gradient(135deg, #2b2b31, #151518);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.project-body {
  padding: 1rem 1.1rem 1.1rem;
}

.project-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.project-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.project-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.projects-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CONTACT PAGE */
.contact-page {
  margin-top: 2.5rem;
}

.contact-banner {
  margin: 0 0 1.6rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(196, 154, 108, 0.25), rgba(196, 154, 108, 0.08));
  border: 1px solid rgba(196, 154, 108, 0.45);
  color: #f6e3c7;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-page-info {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.contact-highlight {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.contact-highlight-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-highlight-item i {
  margin-top: 0.15rem;
  color: var(--gold-soft);
}

.contact-highlight-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-highlight-value {
  font-size: 0.9rem;
}

.contact-small-print {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CONTACT FORM */
.contact-form {
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111117;
  color: var(--white);
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(225, 177, 124, 0.4);
  background: #14141b;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.1rem;
}

.form-submit-btn {
  margin-top: 0.3rem;
  width: 100%;
  justify-content: center;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding: 1.5rem 1.5rem 2.2rem;
  background: #070708;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.footer-links a:hover {
  color: var(--gold-soft);
}


.disclaimer-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  background: rgba(12, 12, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.disclaimer-close {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.disclaimer-close:hover {
  background: rgba(196, 154, 108, 0.2);
  color: var(--white);
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .slides {
    height: 260px;
  }
  .contact-strip {
    grid-template-columns: 1fr;
  }
  .contact-strip-header {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
  .nav-inner {
    padding-inline: 1.1rem;
  }

  .brand-logo {
    width: 180px;
    height: 70px;
    min-height: 70px;
  }

  .nav-links,
  .nav-list {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .phone-badge {
    display: inline-flex;
  }

  .hamburger {
    display: flex;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    padding: 1.1rem 1.05rem;
  }

  .wrapper {
    padding-inline: 1.1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1150px) {
  .nav-submenu .nav-submenu {
    left: auto;
    right: 100%;
    margin-right: 0;
  }
}

/* Blog */
.blog-hero {
  padding: 40px 0 20px;
}

.blog-hero-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.blog-hero-inner h1 {
  font-size: 36px;
  margin: 0 0 6px;
}

.blog-hero-inner p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.blog-filters {
  padding: 10px 0 20px;
}

.blog-filter-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.3fr 1fr 1fr 150px 150px auto;
  align-items: end;
  max-width: 980px;
  margin: 0 auto;
}

.blog-filter-form input,
.blog-filter-form select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}

.blog-filter-form input:focus,
.blog-filter-form select:focus {
  border-color: rgba(196, 154, 108, 0.55);
}

.blog-date-label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding-bottom: 40px;
  justify-items: center;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  width: 100%;
  max-width: 450px;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-image {
  height: 180px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.04);
  position: relative;
}

.blog-card-image.placeholder {
  background: rgba(255, 255, 255, 0.05);
}

.blog-card-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
}

.blog-card-body {
  padding: 16px;
}

.blog-card-body h2 {
  margin: 6px 0 8px;
  font-size: 20px;
}

.blog-card-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.blog-card-tags {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.blog-post {
  padding: 24px 0 60px;
}

.blog-post-header {
  background: transparent;
}

.blog-post-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.blog-post-header h1 {
  font-size: 38px;
  margin: 10px 0;
}

.blog-post-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 14px;
}

.blog-post-sep {
  margin: 0 8px;
}

.blog-post-excerpt {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin: 12px 0 0;
}

.blog-post-image {
  display: block;
  width: 100%;
  max-width: 520px;
  max-height: 320px;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-post-tags {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .blog-filter-form {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .blog-post-image {
    max-width: 100%;
  }
}
