:root {
  --deep-blue: #0b193b;
  --gold: #f1ddaa;
  --off-white: #f7f7f9;
  --text-main: #1c1c24;
  --text-muted: #6e7280;
  --border-soft: #e1e2e8;
  --card-bg: #ffffff;
}

/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--deep-blue);
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-divider {
    height: 0.6cm;
    background-color: #b8a89a; /* soft beige */
  }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 25, 59, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

/* Logo with placeholder mark */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: radial-gradient(circle at 30% 20%, #ffffff33, transparent 55%);
}

.logo-mark span {
  color: var(--gold);
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.logo-tagline {
    font-family: "Great Vibes", cursive;
    font-size: 1rem;
    color: #f1ddaa; /* soft metallic gold tone */
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #20315f 0, #050918 55%, #020309 100%);
  color: #ffffff;
  padding: 5.5rem 0 5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.9rem;
}

.logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
}  

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: "Great Vibes", cursive;
  font-size: 1.6rem;
  color: #f1ddaa;
  margin-bottom: 1rem;
}

.hero-copy {
  font-size: 0.98rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.15s ease;
}

.primary-btn {
  background: var(--gold);
  color: #1a1a1a;
}

.primary-btn:hover {
  background: #f5c800;
  transform: translateY(-1px);
}

.ghost-btn {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.ghost-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Hero image */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  width: min(440px, 100%);
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Services */
/* Services – background image with dark overlay */
.services {
    position: relative;
    padding: 5rem 0;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
      url("Images/Modular Kitchen & Living Interiors.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  /* Keep existing grid layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
  
  /* Section heading on dark background */
  .services .section-header h2 {
    color: #ffffff;
  }
  
  .services .section-header p {
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* Cards on dark background */
  .service-card {
    background: rgba(11, 25, 59, 0.78);
    border-radius: 1.25rem;
    padding: 1.8rem 1.7rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
      border-color 0.18s ease;
  }
  
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.8);
  }
  
  .service-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.6rem;
  }
  
  .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }
  
  .service-card ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .service-card li::before {
    content: "—";
    margin-right: 0.35rem;
    color: var(--gold);
  }

/* About */
/* About – background image with dark overlay */
.about {
    position: relative;
    padding: 5rem 0;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
      url("Images/Bedroom window space.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .about-inner {
    display: flex;
    align-items: center;
    min-height: 360px;
  }
  
  .about-content {
    max-width: 640px;
  }
  
  .about-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
  }
  
  .about-content p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
  }

/* About image placeholder */
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  border: 1px dashed rgba(11, 25, 59, 0.3);
  background: linear-gradient(
      135deg,
      rgba(11, 25, 59, 0.06),
      rgba(11, 25, 59, 0.02)
    ),
    #f4f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background-color: var(--deep-blue);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact h4,
.footer-links h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.9rem;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  font-size: 0.9rem;
  display: grid;
  gap: 0.25rem;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0 1.1rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-visual {
    order: 2;
  }

  .about-content {
    order: 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}