:root {
  --ink: #090b0f;
  --ink-2: #11151b;
  --ink-3: #1a2029;
  --paper: #f5f4f0;
  --white: #ffffff;
  --muted: #a9b0bb;
  --text: #16191e;
  --gold: #caa64a;
  --gold-light: #e4c979;
  --blue: #164f83;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.22);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6.6vw, 6.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.28rem; }
p { margin-top: 0; }
ul { padding-left: 1.2rem; }

/* NAVIGATION */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(9,11,15,.1);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 220px; height: 58px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 23px; list-style: none; padding: 0; margin: 0; }
.main-nav a {
  color: #171a1f;
  font-size: .91rem;
  font-weight: 650;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.main-nav a:not(.cta-nav)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -9px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--blue); }
.cta-nav {
  padding: 11px 17px;
  color: #fff !important;
  background: linear-gradient(135deg, #0e3558, #17619c);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(22,79,131,.22);
}
.nav-toggle {
  display: none;
  width: 46px; height: 42px;
  border: 1px solid #d6d9de;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 1.45rem;
  cursor: pointer;
}
.mobile-menu { display: none; }

/* LAYOUT */
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: clamp(72px, 9vw, 124px) 0; }
.section.tight { padding: 58px 0; }
.light { background: var(--paper); color: var(--text); }
.dark { background: var(--ink); color: #fff; }
.dark-alt { background: var(--ink-2); color: #fff; }
.gold-wash { background: linear-gradient(135deg, #f7f3e7, #efeadf); color: var(--text); }
.section-heading { max-width: 840px; margin-bottom: 45px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { font-size: 1.08rem; color: #606671; }
.dark .section-heading p, .dark-alt .section-heading p { color: #bbc0c9; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.light .eyebrow, .gold-wash .eyebrow { color: #876b22; }

/* HEROES */
.home-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(7,9,13,.94) 0%, rgba(7,9,13,.77) 44%, rgba(7,9,13,.22) 100%),
    linear-gradient(0deg, rgba(7,9,13,.64), transparent 50%),
    url('../assets/images/vorx-premium-porcelain-hero-20260801.webp') center/cover no-repeat;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(202,166,74,.16), transparent 35%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 88px;
}
.hero-content h1 { max-width: 900px; margin-bottom: 24px; }
.hero-content h1 span, .hero h1 span, .cta h2 span { color: var(--gold-light); }
.hero-content > p { max-width: 720px; color: #e0e3e7; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.hero-badge {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(12,15,20,.54);
  color: #f2f3f5;
  font-size: .84rem;
  backdrop-filter: blur(9px);
}
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background:
    linear-gradient(115deg, rgba(7,9,13,.98), rgba(7,9,13,.8)),
    url('../assets/images/landscaping-retaining-wall.webp') center/cover no-repeat;
}
.hero-inner { width: min(1180px, calc(100% - 40px)); margin: auto; position: relative; z-index: 2; }
.hero h1 { max-width: 900px; margin-bottom: 22px; }
.hero p { max-width: 760px; color: #d1d5da; font-size: 1.12rem; }
.residential-hero {
  background:
    linear-gradient(90deg, rgba(7,9,13,.94), rgba(7,9,13,.42)),
    url('../assets/images/premium-uk-garden.webp') center/cover no-repeat;
}
.projects-hero {
  background:
    linear-gradient(90deg, rgba(7,9,13,.95), rgba(7,9,13,.38)),
    url('../assets/images/landscaping-hero.webp') center/cover no-repeat;
}

/* BUTTONS */
.btn, .btn-primary, .btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  color: #111 !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 15px 34px rgba(202,166,74,.24);
}
.btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.05); }
.light .btn-secondary, .gold-wash .btn-secondary { color: #111; border-color: #bbc0c6; background: #fff; }
.btn:hover, .btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 18px 35px rgba(0,0,0,.25); }

/* GRIDS + CARDS */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .service-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(18,22,28,.09);
  box-shadow: 0 15px 50px rgba(15,18,22,.08);
  overflow: hidden;
}
.card::before, .service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(var(--gold-light), var(--gold));
}
.card p, .service-card p { color: #5d646e; }
.card li { margin-bottom: 7px; color: #4e555e; }
.dark .card, .dark-alt .card, .dark .service-card, .dark-alt .service-card {
  background: linear-gradient(145deg, #131820, #0e1218);
  border-color: rgba(255,255,255,.1);
  color: #fff;
  box-shadow: none;
}
.dark .card p, .dark-alt .card p, .dark .card li, .dark-alt .card li,
.dark .service-card p, .dark-alt .service-card p { color: #b8bec7; }
.card-number { color: var(--gold); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-link { color: var(--blue); font-weight: 750; text-decoration: none; }
.dark .card-link { color: var(--gold-light); }

/* FEATURE SPLITS */
.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.split.reverse { grid-template-columns: .92fr 1.08fr; }
.split-copy p { color: #626873; font-size: 1.05rem; }
.dark .split-copy p, .dark-alt .split-copy p { color: #bdc3cb; }
.feature-image { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); min-height: 440px; }
.feature-image img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.image-note {
  position: absolute;
  right: 18px; bottom: 18px;
  max-width: 260px;
  padding: 15px 17px;
  border-radius: 13px;
  background: rgba(8,10,14,.84);
  color: #fff;
  font-size: .86rem;
  backdrop-filter: blur(10px);
}
.check-list { list-style: none; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

/* VIDEO */
.video-showcase { display: grid; grid-template-columns: minmax(280px, 410px) 1fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.video-frame {
  padding: 9px;
  border-radius: 28px;
  background: linear-gradient(145deg, #252b34, #080a0d);
  box-shadow: 0 32px 85px rgba(0,0,0,.46);
}
.video-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 21px; background: #000; }
.video-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.video-meta span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #cdd2d9; font-size: .82rem; }

/* GALLERIES */
.project-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 270px; gap: 15px; }
.project-shot { position: relative; overflow: hidden; border-radius: 16px; background: #181b20; }
.project-shot.large { grid-row: span 2; }
.project-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-shot:hover img { transform: scale(1.035); }
.project-shot span {
  position: absolute;
  left: 14px; bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: .78rem;
  font-weight: 750;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag, .trust-pill { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: #ece8de; color: #4e4327; font-size: .76rem; font-weight: 700; }
.dark .tag, .dark .trust-pill, .dark-alt .tag, .dark-alt .trust-pill { background: rgba(202,166,74,.12); color: var(--gold-light); border: 1px solid rgba(202,166,74,.25); }
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px 0; }

/* STATS / PROCESS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; overflow: hidden; }
.stat { padding: 27px; background: #10151b; }
.stat strong { display: block; color: var(--gold-light); font-size: 1.35rem; }
.stat span { color: #bfc4cb; font-size: .88rem; }
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding: 26px; border-top: 1px solid #cec7b6; }
.process-step::before { counter-increment: step; content: '0' counter(step); display: block; margin-bottom: 18px; color: #987c32; font-weight: 850; letter-spacing: .1em; }

/* CTA */
.cta {
  padding: 90px 20px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(202,166,74,.17), transparent 42%), #0b0e12;
  border-top: 1px solid rgba(255,255,255,.09);
}
.cta p { max-width: 740px; margin: 0 auto; color: #bdc2ca; }
.cta .hero-actions { justify-content: center; }

/* FORMS */
.contact-grid { display: grid; grid-template-columns: 1.55fr .8fr; gap: 35px; align-items: start; }
.form-box, .contact-box {
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}
.contact-box { background: #10151b; color: #fff; box-shadow: none; }
.contact-box p { color: #bcc2ca; }
.contact-box a { color: var(--gold-light); text-decoration: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-box input, .form-box select, .form-box textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 15px;
  border: 1px solid #d8dce1;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.form-box textarea { min-height: 150px; resize: vertical; }
.form-box input:focus, .form-box select:focus, .form-box textarea:focus { outline: 2px solid rgba(22,79,131,.18); border-color: var(--blue); }

/* FOOTER */
footer { background: #050608; padding: 72px 0 26px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer-logo { width: 245px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
footer h4 { color: #fff; font-size: .95rem; letter-spacing: .02em; }
footer p, footer a { color: #969da7; font-size: .9rem; text-decoration: none; }
footer a:hover { color: var(--gold-light); }
.footer-bottom { width: min(1180px, calc(100% - 40px)); margin: 42px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #737a84; font-size: .78rem; text-align: center; }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .82rem; }
  .brand img { width: 185px; }
  .grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav.site-nav { min-height: 72px; padding: 8px 18px; }
  .brand img { width: 170px; height: 48px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e6e8eb;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }
  .mobile-menu.show { display: flex; }
  .mobile-menu a { padding: 14px 20px; color: #111; text-decoration: none; border-bottom: 1px solid #eceef0; font-weight: 650; }
  .home-hero { min-height: 690px; background-position: 60% center; }
  .hero-content { padding: 95px 0 65px; }
  .grid, .grid.two, .grid.four, .split, .split.reverse, .video-showcase, .contact-grid { grid-template-columns: 1fr; }
  .stats, .process { grid-template-columns: repeat(2, 1fr); }
  .project-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
  .project-shot.large { grid-row: span 1; grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  h2 { font-size: 2.1rem; }
  .container, .hero-content, .hero-inner { width: min(100% - 28px, 1180px); }
  .home-hero { min-height: 650px; }
  .hero { min-height: 410px; padding: 72px 0; }
  .hero-actions { flex-direction: column; }
  .btn, .btn-primary, .btn-secondary { width: 100%; }
  .section { padding: 70px 0; }
  .card, .service-card, .form-box, .contact-box { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .stats, .process, .project-gallery, .footer-grid { grid-template-columns: 1fr; }
  .project-shot.large { grid-column: span 1; }
  .project-gallery { grid-auto-rows: 250px; }
  .video-frame { max-width: 390px; margin: auto; }
}


/* PREMIUM RESIDENTIAL INSPIRATION */
.hero-concept-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(7,9,13,.52);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .03em;
  backdrop-filter: blur(8px);
}
.inspiration-section {
  background: linear-gradient(145deg, #0c1015, #151b23);
  color: #fff;
}
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.inspiration-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
  background: #131820;
  box-shadow: 0 24px 65px rgba(0,0,0,.28);
}
.inspiration-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .55s ease;
}
.inspiration-card:hover img { transform: scale(1.025); }
.inspiration-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,8,11,.88) 0%, rgba(6,8,11,.16) 58%, rgba(6,8,11,.05) 100%);
}
.inspiration-card-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}
.inspiration-card-copy small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.inspiration-card-copy h3 { margin-bottom: 7px; font-size: clamp(1.35rem, 2.3vw, 2rem); }
.inspiration-card-copy p { margin: 0; color: #d6d9de; font-size: .93rem; }
.concept-note {
  max-width: 900px;
  margin: 28px auto 0;
  color: #aeb5bf;
  font-size: .83rem;
  text-align: center;
}
.premium-image-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b0e12;
}
.premium-image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.premium-image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,8,11,.92), rgba(6,8,11,.34)), linear-gradient(0deg, rgba(6,8,11,.7), transparent 55%);
}
.premium-image-band .band-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
  max-width: 1180px;
}
.premium-image-band .band-copy > div { max-width: 690px; }
.premium-image-band p { color: #d6d9de; }

@media (max-width: 900px) {
  .inspiration-card, .inspiration-card img { min-height: 330px; }
}
@media (max-width: 650px) {
  .inspiration-grid { grid-template-columns: 1fr; }
  .inspiration-card, .inspiration-card img { min-height: 310px; }
  .inspiration-card-copy { left: 18px; right: 18px; bottom: 18px; }
  .premium-image-band { min-height: 500px; }
}


/* DESIGN STUDIO NAVIGATION + HOMEPAGE PROMOTION */
.studio-nav-link { color: #876b22 !important; font-weight: 800 !important; }
.studio-nav-link::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(202,166,74,.14);
  vertical-align: 1px;
}
.studio-promo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#0c1016,#171e27);
  color: #fff;
}
.studio-promo::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -150px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(202,166,74,.14),transparent 68%);
  pointer-events: none;
}
.studio-promo-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(40px,7vw,90px); align-items: center; }
.studio-promo-copy p { color: #bdc4cd; font-size: 1.03rem; }
.studio-promo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.studio-preview-card { position: relative; padding: 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; background: linear-gradient(145deg,#202833,#0a0d12); box-shadow: 0 34px 90px rgba(0,0,0,.42); }
.studio-preview-image { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 17px; }
.studio-preview-image img { width: 100%; height: 100%; object-fit: cover; }
.preview-zone { position: absolute; border: 2px solid #efd276; background: rgba(217,185,95,.25); border-radius: 8px; box-shadow: 0 0 0 4px rgba(217,185,95,.09); }
.preview-zone.one { left: 8%; bottom: 9%; width: 56%; height: 38%; transform: rotate(-2deg); }
.preview-zone.two { right: 8%; top: 17%; width: 28%; height: 23%; border-radius: 50%; background: rgba(48,160,204,.35); }
.preview-zone span { position: absolute; left: 7px; top: 7px; padding: 4px 7px; border-radius: 999px; background: rgba(7,9,12,.78); color: #fff; font-size: .58rem; font-weight: 800; }
.studio-preview-toolbar { display: flex; align-items: center; gap: 7px; padding: 12px 4px 2px; }
.studio-preview-toolbar i { width: 25px; height: 25px; border-radius: 7px; background: rgba(255,255,255,.08); }
.studio-preview-toolbar strong { margin-left: auto; color: var(--gold-light); font-size: .7rem; }
@media (max-width: 1180px) {
  .main-nav { gap: 12px; }
  .main-nav a { font-size: .78rem; }
  .brand img { width: 170px; }
}
@media (max-width: 1040px) {
  .studio-promo-grid { grid-template-columns: 1fr; }
}
