/* Homefix West London */

:root {
  --color-bg: #e9e9e7;
  --color-surface: #f5f5f3;
  --color-card: #ffffff;
  --color-text: #252320;
  --color-text-muted: #6b6965;
  --color-accent: #c9940f;
  --color-accent-hover: #a87a0b;
  --color-accent-light: rgba(201, 148, 15, 0.1);
  --color-border: #d0d0cc;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 4px rgba(30, 28, 24, 0.07);
  --shadow-md: 0 4px 16px rgba(30, 28, 24, 0.1);
  --radius: 8px;
  --section-pad: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

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

/* ── Header ─────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(233, 233, 231, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.logo span {
  color: var(--color-accent);
}

.nav {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  transition: color 0.18s;
}

.nav a:hover,
.nav a.active {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: background 0.2s;
}

/* ── Container ───────────────────────────── */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Hero ────────────────────────────────── */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 148, 15, 0.06) 0%, transparent 70%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="g" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.7" fill="%23c0c0bc" opacity="0.4"/></pattern></defs><rect width="60" height="60" fill="url(%23g)"/></svg>');
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero .tagline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin-bottom: 2.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badges span::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* ── Buttons ─────────────────────────────── */

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ── Section base ────────────────────────── */

.section {
  padding: var(--section-pad) 0;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 0.9rem auto 2.5rem;
  border: none;
}

/* ── About (homepage) ────────────────────── */

.about-snippet {
  background: var(--color-card);
  padding: 2.5rem 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 740px;
  margin: 0 auto;
  border-left: 3px solid var(--color-accent);
  line-height: 1.8;
}

.about-snippet p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about-snippet p:last-child {
  margin-bottom: 0;
  color: var(--color-text);
}

/* ── Services ────────────────────────────── */

.section--services {
  background: var(--color-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

.service-card {
  background: var(--color-card);
  padding: 2rem 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-text);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.service-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.services-cta {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.services-cta a {
  color: var(--color-accent);
  font-weight: 600;
}

/* ── Areas ───────────────────────────────── */

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 2.5rem;
}

.areas-list li {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: border-color 0.18s, color 0.18s;
}

.areas-list li:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

/* ── Page header (inner pages) ───────────── */

.page-header {
  padding: 7.5rem 0 2.5rem;
  text-align: center;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.page-header .section-subtitle {
  margin-bottom: 0;
}

/* ── Pricing ─────────────────────────────── */

.section--pricing {
  padding: var(--section-pad) 0;
}

.pricing-card {
  background: var(--color-card);
  padding: 2.5rem 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.pricing-card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card ul {
  list-style: none;
}

.pricing-card li {
  padding: 0.65rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card li span:first-child {
  color: var(--color-text-muted);
}

.pricing-card .price {
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
  font-size: 1rem;
}

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.pricing-cta {
  text-align: center;
}

/* ── Gallery ─────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.gallery-placeholder::before {
  content: '📷';
  font-size: 1.75rem;
  opacity: 0.4;
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Contact ─────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.contact-info .contact-detail {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
}

.contact-form-wrapper {
  background: var(--color-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.18s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
}

/* ── Footer ──────────────────────────────── */

.site-footer {
  padding: 2.25rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

.site-footer p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.site-footer strong {
  color: var(--color-text);
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 768px) {
  :root {
    --section-pad: 3.5rem;
  }

  .site-header .container {
    padding: 1rem 1.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
    border-bottom: 1px solid var(--color-border);
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.28s ease, visibility 0s linear 0s;
  }

  .nav-toggle {
    display: block;
  }

  .about-snippet {
    padding: 2rem 1.5rem;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 1.75rem;
  }

  .pricing-card {
    padding: 2rem 1.75rem;
  }
}
