/* =====================================================
   Westbourne Walls — Main Stylesheet
   Elegant Architectural Minimal Design
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --black:     #1a1a1a;
  --white:     #fafaf8;
  --stone:     #e8e6e1;
  --stone-dk:  #d4d0c8;
  --gold:      #b8956a;
  --beige:     #f5f1eb;
  --gray-txt:  #3d3d3d;
  --border:    #ddd9d0;
  --radius:    3px;
  --shadow:    0 2px 8px rgba(26,26,26,.06);
  --trans:     .3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-txt);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  letter-spacing: 0.3px;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; }

/* ---------- Utility ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Segoe UI', sans-serif;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-txt);
  max-width: 680px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--trans);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-minimal {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-minimal:hover {
  background: var(--black);
  color: var(--white);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--stone);
  color: var(--gray-txt);
  font-size: .8rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.2px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gray-txt); transition: color var(--trans); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--black);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1.05rem; font-weight: 700; color: var(--black); letter-spacing: 0.3px; }
.logo-tagline { font-size: .68rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-txt);
  transition: color var(--trans);
  position: relative;
  letter-spacing: 0.2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--black);
  border-radius: 1px;
  transition: transform var(--trans), opacity var(--trans);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.65) 0%, rgba(26,26,26,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--white);
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,149,106,.25);
  border: 1px solid rgba(184,149,106,.5);
  color: #dab89a;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 22px;
  font-family: 'Segoe UI', sans-serif;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.hero h1 span { color: var(--gold); }
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 52px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.trust-item .label { font-size: .8rem; color: rgba(255,255,255,.8); font-weight: 600; }

/* ---------- Featured Services Strip ---------- */
.featured-services {
  background: var(--beige);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.featured-item {
  background: var(--beige);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--trans);
  text-align: center;
}
.featured-item:hover { background: var(--stone); }
.fi-icon { font-size: 1.4rem; flex-shrink: 0; }
.fi-text strong { display: block; color: var(--black); font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.fi-text span { font-size: .75rem; color: var(--gray-txt); }

/* ---------- About ---------- */
.about { padding: 88px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 2px;
  font-weight: 700;
  font-size: .85rem;
  line-height: 1.3;
}
.about-badge span { display: block; font-size: 1.5rem; font-weight: 700; }
.about-content .section-sub { margin-bottom: 24px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}
.stat-box {
  background: var(--beige);
  border-radius: 2px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-box .num { font-size: 1.8rem; font-weight: 700; color: var(--black); line-height: 1; }
.stat-box .lbl { font-size: .75rem; color: var(--gray-txt); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Services ---------- */
.services { padding: 88px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--beige);
  border-radius: 2px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: all var(--trans);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26,26,26,.1);
  border-color: var(--gold);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(184,149,106,.12);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--gray-txt); line-height: 1.7; }

/* ---------- Why Choose ---------- */
.why { padding: 88px 0; background: var(--beige); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 18px;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--trans);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(184,149,106,.12);
}
.why-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.why-item h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.why-item p  { font-size: .88rem; color: var(--gray-txt); line-height: 1.7; }

/* ---------- Process ---------- */
.process { padding: 88px 0; background: var(--white); }
.process .section-title { color: var(--black); }
.process .section-sub   { color: var(--gray-txt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.step-icon { font-size: 1.3rem; margin-bottom: 12px; color: var(--gold); }
.step h3 { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.step p  { font-size: .82rem; color: var(--gray-txt); line-height: 1.65; }

/* ---------- Gallery ---------- */
.gallery { padding: 88px 0; background: var(--beige); border-top: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  background: var(--stone);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.5);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Contact ---------- */
.contact { padding: 88px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 700; color: var(--black); margin-bottom: 16px; }
.contact-info p  { color: var(--gray-txt); margin-bottom: 28px; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.cd-icon {
  width: 42px; height: 42px;
  background: var(--beige);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cd-text strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-txt); margin-bottom: 3px; }
.cd-text a, .cd-text span { font-size: .95rem; color: var(--black); font-weight: 600; }
.cd-text a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--beige);
  border-radius: 2px;
  padding: 44px;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: .9rem;
  color: var(--gray-txt);
  background: var(--white);
  transition: all var(--trans);
  font-family: inherit;
  letter-spacing: 0.2px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,106,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 13px; font-size: .95rem; justify-content: center; }

#form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  border-radius: 2px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Map ---------- */
.map-section { background: var(--beige); border-top: 1px solid var(--border); }
.map-section .container { padding: 0 24px 0; }
.map-header { text-align: center; padding: 64px 0 40px; }
.map-embed {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 64px;
  border: 1px solid var(--border);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.15rem; }
.footer-brand .logo-tagline { color: var(--gold); }
.footer-brand p { font-size: .85rem; margin-top: 16px; line-height: 1.75; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 18px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .85rem; }
.footer-contact-item .fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid  { grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .form-row    { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
