/* ============================================================
   NORWOOD INTERIORS — styles.css
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --color-dark: #575e5a; --color-nav: #575e5a; --color-footer-top: #213434;
  --color-cta-bg: #7a305c; --color-teal: #699899; --color-off-white: #e5e3df;
  --color-kitchens: #87903c; --color-bedrooms: #43566a; --color-bathrooms: #dfab13;
  --color-offices: #b83333; --color-utility: #ba6109; --color-cloakrooms: #897d97;
  --font-sans: 'Lato', Arial, sans-serif; --font-serif: 'Playfair Display', Georgia, serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--color-dark); background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
.util-bar { background: rgba(0,0,0,.45); color: #fff; font-size: .8rem; padding: .35rem 0; }
.util-bar .inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.util-bar a { color: #fff; }
.util-bar .tagline { font-style: italic; opacity: .85; }
.site-header { background: var(--color-nav); position: sticky; top: 0; z-index: 100; }
.site-header .inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; flex-direction: column; align-items: flex-start; padding: .75rem 0; color: #fff; }
.site-logo .name { font-weight: 300; font-size: 1.45rem; letter-spacing: .25em; text-transform: uppercase; }
.site-logo .sub { font-weight: 300; font-size: .62rem; letter-spacing: .45em; text-transform: uppercase; opacity: .75; margin-top: 2px; }
.site-nav { display: flex; align-items: center; list-style: none; }
.site-nav li { position: relative; }
.site-nav a { display: block; color: #fff; font-size: .82rem; letter-spacing: .04em; padding: 1.1rem .85rem; white-space: nowrap; transition: background .2s; }
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,.12); }
.site-nav .laura-ashley a { font-family: var(--font-serif); font-style: italic; font-size: .9rem; }
.site-nav .ex-display a { background: var(--color-teal); padding: 1.1rem 1rem; }
.site-nav .ex-display a:hover { background: #5a8788; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; }
.hero { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: flex-end; background: var(--color-dark) center/cover no-repeat; }
.hero--kitchens { background-color: var(--color-kitchens); } .hero--bedrooms { background-color: var(--color-bedrooms); }
.hero--bathrooms { background-color: var(--color-bathrooms); } .hero--offices { background-color: var(--color-offices); }
.hero--utility { background-color: var(--color-utility); } .hero--cloakrooms { background-color: var(--color-cloakrooms); }
.hero--sale { background-color: var(--color-teal); } .hero--info { background-color: var(--color-footer-top); }
.hero--home { min-height: 560px; background-color: #3a4a48; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%); }
.hero__content { position: relative; z-index: 2; color: #fff; padding: 3rem 1.5rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero__label { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-bottom: .4rem; }
.hero__title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; line-height: 1.15; margin-bottom: .75rem; max-width: 640px; }
.hero__subtitle { font-size: 1rem; opacity: .9; max-width: 520px; margin-bottom: 1.5rem; }
.hero__cta { display: inline-block; background: var(--color-teal); color: #fff; padding: .75rem 1.75rem; font-size: .9rem; transition: background .2s; }
.hero__cta:hover { background: #5a8788; }
.accent-strip { height: 6px; background: var(--color-teal); }
.accent-strip--kitchens { background: var(--color-kitchens); } .accent-strip--bedrooms { background: var(--color-bedrooms); }
.accent-strip--bathrooms { background: var(--color-bathrooms); } .accent-strip--offices { background: var(--color-offices); }
.accent-strip--utility { background: var(--color-utility); } .accent-strip--cloakrooms { background: var(--color-cloakrooms); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; } .section--grey { background: var(--color-off-white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.section-heading { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: 1rem; color: var(--color-dark); }
.section-heading::after { content: ''; display: block; width: 50px; height: 3px; background: var(--color-teal); margin-top: .6rem; }
.section-heading--kitchens::after { background: var(--color-kitchens); } .section-heading--bedrooms::after { background: var(--color-bedrooms); }
.section-heading--bathrooms::after { background: var(--color-bathrooms); } .section-heading--offices::after { background: var(--color-offices); }
.section-heading--utility::after { background: var(--color-utility); } .section-heading--cloakrooms::after { background: var(--color-cloakrooms); }
.lead { font-size: 1.05rem; line-height: 1.75; }
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); }
.cat-tile { position: relative; overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; }
.cat-tile__bg { position: absolute; inset: 0; background: center/cover no-repeat; }
.cat-tile__accent { position: absolute; bottom: 0; left: 0; right: 0; height: 100%; clip-path: polygon(0 60%, 100% 35%, 100% 100%, 0 100%); opacity: .85; }
.cat-tile--kitchens .cat-tile__accent { background: var(--color-kitchens); } .cat-tile--bedrooms .cat-tile__accent { background: var(--color-bedrooms); }
.cat-tile--bathrooms .cat-tile__accent { background: var(--color-bathrooms); } .cat-tile--offices .cat-tile__accent { background: var(--color-offices); }
.cat-tile--utility .cat-tile__accent { background: var(--color-utility); } .cat-tile--cloakrooms .cat-tile__accent { background: var(--color-cloakrooms); }
.cat-tile__label { position: relative; z-index: 2; color: #fff; padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.range-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.range-card { background: var(--color-off-white); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.range-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.range-card__img { width: 100%; height: 200px; overflow: hidden; background: var(--color-dark); }
.range-card__img img { width: 100%; height: 100%; object-fit: cover; }
.range-card__body { padding: 1rem 1.25rem 1.25rem; }
.range-card__title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: .4rem; }
.range-card__text { font-size: .88rem; line-height: 1.6; }
.range-card__link { display: inline-block; margin-top: .75rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.cta-band { background: var(--color-cta-bg); color: #fff; padding: 3rem 0; text-align: center; }
.cta-band__title { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; margin-bottom: .6rem; }
.cta-band__text { opacity: .9; margin-bottom: 1.5rem; font-size: 1.05rem; }
.btn { display: inline-block; padding: .75rem 2rem; font-size: .9rem; letter-spacing: .05em; cursor: pointer; transition: opacity .2s; border: none; font-family: var(--font-sans); }
.btn:hover { opacity: .85; }
.btn--teal { background: var(--color-teal); color: #fff; }
.btn--white { background: #fff; color: var(--color-cta-bg); }
.btn--outline { border: 2px solid #fff; color: #fff; background: transparent; }
.form-section { background: var(--color-off-white); padding: 4rem 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .85rem; font-weight: 700; letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea { padding: .65rem .9rem; border: 1px solid #ccc; font-family: var(--font-sans); font-size: .9rem; color: var(--color-dark); background: #fff; width: 100%; }
.form-checkboxes { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: .5rem; }
.form-checkboxes label { display: flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 400; cursor: pointer; }
.form-note { font-size: .78rem; color: #888; margin-top: .5rem; }
.form-submit { margin-top: 1.5rem; }
.showroom-card { background: #fff; padding: 2rem; border-top: 4px solid var(--color-teal); }
.showroom-card h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 1rem; }
.showroom-card p { font-size: .92rem; line-height: 1.7; margin-bottom: .4rem; }
.showroom-map { width: 100%; height: 220px; background: var(--color-off-white); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: #888; margin-top: 1rem; border: 1px solid #ddd; }
.sale-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.sale-card { background: #fff; border: 1px solid #e0ddd8; overflow: hidden; }
.sale-card__img { width: 100%; height: 200px; background: var(--color-off-white); overflow: hidden; }
.sale-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sale-card__body { padding: 1.25rem; }
.sale-card__title { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: .6rem; }
.sale-card__features { font-size: .85rem; line-height: 1.7; color: #666; margin-bottom: .75rem; }
.sale-card__features li { list-style: disc; margin-left: 1.2rem; }
.sale-card__price { font-size: 1.4rem; font-weight: 700; color: var(--color-cta-bg); }
.sale-card__location { font-size: .78rem; color: #888; margin-top: .25rem; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.news-card { border-bottom: 3px solid var(--color-teal); padding-bottom: 1.5rem; }
.news-card__date { font-size: .78rem; color: #888; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.news-card__title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: .6rem; }
.news-card__excerpt { font-size: .88rem; line-height: 1.65; }
.testimonial { background: var(--color-off-white); padding: 2rem; position: relative; }
.testimonial::before { content: '"'; font-family: var(--font-serif); font-size: 5rem; color: var(--color-teal); opacity: .3; position: absolute; top: .5rem; left: 1rem; line-height: 1; }
.testimonial__text { font-style: italic; font-size: 1rem; line-height: 1.7; position: relative; z-index: 1; }
.testimonial__author { margin-top: .75rem; font-size: .85rem; font-weight: 700; color: var(--color-teal); }
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; margin-top: 2rem; }
.reason-card { text-align: center; padding: 1.5rem; }
.reason-card__icon { width: 60px; height: 60px; background: var(--color-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.1rem; color: #fff; font-weight: 700; }
.reason-card__title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: .5rem; }
.reason-card__text { font-size: .88rem; line-height: 1.65; }
.footer-top { background: var(--color-footer-top); color: #fff; padding: 2.5rem 0; }
.footer-top .inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo .name { font-weight: 300; font-size: 1.3rem; letter-spacing: .25em; text-transform: uppercase; }
.footer-logo .sub { font-size: .6rem; letter-spacing: .45em; text-transform: uppercase; opacity: .6; margin-top: 2px; }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social span { font-size: .85rem; opacity: .75; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: #fff; transition: background .2s; }
.social-link:hover { background: rgba(255,255,255,.1); }
.footer-phone { text-align: right; }
.footer-phone span { display: block; font-size: .8rem; opacity: .7; text-transform: uppercase; letter-spacing: .08em; }
.footer-phone strong { font-size: 1.5rem; font-weight: 300; letter-spacing: .05em; }
.footer-bottom { padding: 2.5rem 0 1.5rem; border-top: 1px solid var(--color-off-white); }
.footer-bottom .inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: var(--color-dark); margin-bottom: .75rem; padding-bottom: .4rem; border-bottom: 1px solid var(--color-off-white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul a { font-size: .88rem; color: var(--color-dark); transition: color .15s; }
.footer-col ul a:hover { color: var(--color-teal); }
.footer-bar { background: var(--color-off-white); padding: .75rem 0; font-size: .78rem; color: #888; }
.footer-bar .inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cat-tiles { grid-template-columns: 1fr 1fr; }
  .footer-bottom .inner { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
}
@media (max-width: 768px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-nav); flex-direction: column; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-header .inner { position: relative; }
  .nav-toggle { display: flex; }
  .cat-tiles { grid-template-columns: 1fr; }
  .footer-bottom .inner { grid-template-columns: 1fr; }
  .footer-top .inner { flex-direction: column; text-align: center; }
  .footer-phone { text-align: center; }
  .footer-bar .inner { flex-direction: column; gap: .3rem; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 1.7rem; }
  .section { padding: 2.5rem 0; }
}