:root {
  --black: #101010;
  --dark: #171717;
  --gold: #d9a928;
  --gold-light: #f2cf66;
  --cream: #fbf7ed;
  --white: #ffffff;
  --muted: #666666;
  --border: #e9e1cf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.top-header { background: var(--black); color: var(--white); font-size: 14px; }
.top-row { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-row p { margin: 0; color: #f7e7b2; }
.top-links { display: flex; gap: 22px; align-items: center; color: #ececec; }
.top-links a { font-weight: 700; color: var(--gold-light); }

.navbar { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 145px; height: 60px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; font-weight: 700; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-cta, .btn { border-radius: 999px; padding: 14px 22px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease; border: 0; cursor: pointer; }
.nav-cta, .btn.primary { background: var(--gold); color: var(--black); box-shadow: 0 12px 30px rgba(217,169,40,.28); }
.btn.secondary { border: 1px solid rgba(255,255,255,.45); color: var(--white); }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: 0; font-size: 30px; }

.hero { position: relative; min-height: 760px; color: var(--white); background: linear-gradient(135deg, rgba(16,16,16,.92), rgba(16,16,16,.6)), url('assets/gallery/patio-porcelain-4.jpg'); background-size: cover; background-position: center; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: auto -10% -45% 35%; height: 520px; background: radial-gradient(circle, rgba(217,169,40,.35), transparent 65%); }
.hero-content { position: relative; z-index: 2; min-height: 760px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 900; color: var(--gold); }
h1, h2 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.04; margin: 0; }
h1 { font-size: clamp(46px, 6vw, 78px); max-width: 780px; }
h2 { font-size: clamp(34px, 4vw, 52px); }
.hero-subtitle { font-size: 19px; line-height: 1.8; color: #f3f3f3; max-width: 680px; margin: 26px 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-strip { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-strip span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 14px; color: #f8e8b6; font-weight: 700; }

.section { padding: 96px 0; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-section { background: var(--cream); }
.about-section p, .section-heading p, .contact-section p { color: var(--muted); line-height: 1.8; font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.feature-grid div { background: var(--white); padding: 22px; border: 1px solid var(--border); border-radius: 18px; }
.feature-grid strong { display: block; font-size: 20px; margin-bottom: 5px; }
.feature-grid span { color: var(--muted); }
.quote-panel { background: var(--black); color: var(--white); padding: 42px; border-radius: 30px; box-shadow: var(--shadow); }
.quote-panel h3 { font-size: 30px; margin: 0 0 22px; }
.quote-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.quote-panel li { padding-left: 30px; position: relative; font-weight: 700; }
.quote-panel li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border: 1px solid var(--border); border-radius: 24px; padding: 30px; background: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), var(--gold-light)); font-size: 28px; font-weight: 900; margin-bottom: 24px; }
.service-card h3 { margin: 0 0 12px; font-size: 22px; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.cta-band { background: var(--gold); color: var(--black); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner .eyebrow { color: var(--black); }
.cta-inner p { max-width: 680px; line-height: 1.8; }
.btn.dark { background: var(--black); color: var(--white); box-shadow: none; }

.reviews-section { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--border); padding: 30px; border-radius: 24px; }
.stars { color: var(--gold); font-size: 22px; margin-bottom: 14px; }
.review-card p { color: var(--muted); line-height: 1.7; }

.contact-section { background: var(--white); }
.contact-cards { display: grid; gap: 14px; margin-top: 28px; }
.contact-cards a { border: 1px solid var(--border); border-radius: 18px; padding: 22px; background: var(--cream); }
.contact-cards span { display: block; color: var(--muted); margin-bottom: 5px; }
.contact-cards strong { font-size: 19px; }
.contact-form { background: var(--black); color: var(--white); border-radius: 30px; padding: 34px; box-shadow: var(--shadow); }
.contact-form h3 { margin: 0 0 20px; font-size: 30px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: var(--white); padding: 15px 16px; border-radius: 14px; font: inherit; }
.contact-form option { color: var(--black); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #b8b8b8; }
.form-note { font-size: 13px !important; color: #c8c8c8 !important; margin-bottom: 0; }

.footer { background: var(--black); color: var(--white); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .9fr; gap: 40px; }
.footer img { width: 180px; border-radius: 12px; margin-bottom: 18px; }
.footer p { color: #cfcfcf; line-height: 1.7; }
.footer h3 { margin: 0 0 16px; color: var(--gold-light); }
.footer a { display: block; color: #f2f2f2; margin-bottom: 11px; }
.footer-bottom { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px; color: #b8b8b8; font-size: 14px; }
.floating-call { position: fixed; right: 20px; bottom: 20px; z-index: 30; background: var(--gold); color: var(--black); font-weight: 900; border-radius: 999px; padding: 15px 20px; box-shadow: var(--shadow); }

@media (max-width: 900px) {
  .top-row, .top-links, .cta-inner { flex-direction: column; align-items: flex-start; }
  .top-row { padding: 12px 0; }
  .nav-inner { min-height: 76px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.active { position: absolute; top: 76px; left: 0; right: 0; display: grid; background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); }
  .hero-content, .split, .contact-split, .footer-grid { grid-template-columns: 1fr; }
  .hero, .hero-content { min-height: auto; }
  .hero-content { padding: 72px 0; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand img { height: 54px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .quote-panel, .contact-form { padding: 24px; border-radius: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* ===== Service card photos ===== */
.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-photo { width: 100%; height: 210px; object-fit: cover; }
.service-body { padding: 26px 28px 30px; }
.service-body .service-icon { margin-bottom: 18px; }
.service-link { display: inline-flex; margin-top: 14px; font-weight: 800; color: var(--black); border-bottom: 3px solid var(--gold); }

/* ===== Our Work gallery ===== */
.work-section { background: var(--white); }
.work-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.work-filters button { border: 1px solid var(--border); background: var(--cream); border-radius: 999px; padding: 12px 20px; font: inherit; font-weight: 800; cursor: pointer; transition: all .2s ease; }
.work-filters button:hover { border-color: var(--gold); }
.work-filters button.active { background: var(--gold); border-color: var(--gold); color: var(--black); box-shadow: 0 10px 24px rgba(217,169,40,.3); }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-item { position: relative; border-radius: 18px; overflow: hidden; cursor: pointer; border: 1px solid var(--border); background: var(--cream); aspect-ratio: 4 / 3; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.work-item:hover img { transform: scale(1.06); }
.work-item .tag { position: absolute; left: 12px; bottom: 12px; background: rgba(16,16,16,.78); color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; }
.work-item.hidden { display: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(10,10,10,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 18px; right: 22px; background: none; border: 0; color: var(--white); font-size: 38px; cursor: pointer; line-height: 1; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-photo { height: 190px; }
}

/* ===== TrustATrader rating badge ===== */
.rating-badge { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 12px 22px; margin: 18px 0 10px; box-shadow: 0 10px 28px rgba(0,0,0,.06); }
.rating-badge strong { font-size: 18px; }
.rating-badge .stars { margin: 0; font-size: 18px; }
.rating-badge a { font-weight: 800; border-bottom: 2px solid var(--gold); }
.review-meta { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.reviews-link { text-align: center; margin: 34px 0 0; }
.reviews-link a { font-weight: 800; border-bottom: 3px solid var(--gold); padding-bottom: 2px; }

/* logo sizing tweaks for new transparent PNG */
.brand img { width: auto; height: 64px; }
.footer img { width: 170px; border-radius: 0; }

/* ===== Hero logo ===== */
.hero-logo { display: flex; align-items: center; justify-content: center; }
.hero-logo img { width: min(440px, 90%); height: auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,.45)); }
@media (max-width: 900px) {
  .hero-logo { order: -1; }
  .hero-logo img { width: min(280px, 70%); }
}

/* ===== Gallery "Show more" button ===== */
.work-item.collapsed { display: none; }
.work-more-wrap { text-align: center; margin-top: 28px; }
.work-more { display: none; }        /* shown by JS on mobile when needed */

/* ===== Mobile typography & spacing refinements ===== */
@media (max-width: 560px) {
  h1 { font-size: 32px; line-height: 1.12; }
  h2 { font-size: 25px; }
  .eyebrow { font-size: 11px; }
  .hero-subtitle { font-size: 15.5px; line-height: 1.7; margin: 20px 0; }
  .about-section p, .section-heading p, .contact-section p,
  .cta-inner p { font-size: 15px; line-height: 1.7; }
  .section { padding: 56px 0; }
  .cta-band { padding: 52px 0; }
  .section-heading { margin-bottom: 32px; }

  .feature-grid strong { font-size: 17px; }
  .quote-panel h3, .contact-form h3 { font-size: 22px; }
  .service-card h3 { font-size: 19px; }
  .service-body { padding: 22px 22px 26px; }

  .trust-strip span { font-size: 13px; padding: 8px 12px; }
  .btn, .nav-cta { padding: 13px 20px; }

  .reviews-grid { gap: 16px; }
  .review-card { padding: 24px; }
  .rating-badge { padding: 10px 16px; gap: 8px; }
  .rating-badge strong, .rating-badge .stars { font-size: 16px; }

  .floating-call { padding: 13px 18px; font-size: 14px; }
}

/* extra-small phones */
@media (max-width: 380px) {
  h1 { font-size: 28px; }
  h2 { font-size: 23px; }
  .brand img { height: 48px; }
}
