/* ============================================
   CPC Interiors Ltd — Main Stylesheet
   Modern, clean, professional design
   ============================================ */

/* --- CSS Variables (Light — default) --- */
:root {
  --primary: #1e3a5f;
  --primary-light: #2d5f8a;
  --primary-dark: #152a45;
  --accent: #4a6d8c;
  --text: #374151;
  --text-light: #6b7280;
  --text-dark: #1a2332;
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-dark: #1e3a5f;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --primary: #5b8fc7;
  --primary-light: #7aacde;
  --primary-dark: #3a6fa0;
  --accent: #7aa3c4;
  --text: #cbd5e1;
  --text-light: #94a3b8;
  --text-dark: #e2e8f0;
  --bg: #0f172a;
  --bg-alt: #1e293b;
  --bg-dark: #1e293b;
  --border: #334155;
  --border-light: #1e293b;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .header {
  background: #0f172a;
  border-bottom-color: #334155;
}

[data-theme="dark"] .header__logo img {
  filter: invert(1);
}

[data-theme="dark"] .header__hamburger span {
  background: #e2e8f0;
}

[data-theme="dark"] .header__nav a:hover,
[data-theme="dark"] .header__nav a.active {
  background: #1e293b;
}

[data-theme="dark"] .header__nav {
  background: #0f172a;
}

[data-theme="dark"] .hero__image::after {
  background: linear-gradient(to right, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.8) 50%, rgba(15,23,42,0.2) 100%);
}

[data-theme="dark"] .quote-banner__bg::after {
  background: rgba(15, 23, 42, 0.9);
}

[data-theme="dark"] .footer {
  background: #0a0f1a;
}

[data-theme="dark"] .contact-form {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
}

[data-theme="dark"] .project-card__image img,
[data-theme="dark"] .service-row__image img,
[data-theme="dark"] .service-section__image img,
[data-theme="dark"] .about-split__image img {
  opacity: 0.9;
}

/* --- Theme Toggle Button --- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
  margin-left: 8px;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle__sun,
.theme-toggle__moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

:root .theme-toggle__moon,
[data-theme="light"] .theme-toggle__moon {
  display: block;
}

[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: #ffffff;
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: #ffffff;
}

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

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--primary-light);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn--white {
  background: #ffffff;
  color: var(--primary);
}

.btn--white:hover {
  background: #f0f4f8;
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 64px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--primary);
  background: var(--bg-alt);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Main content offset for fixed header --- */
main {
  padding-top: var(--header-height);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 0;
}

.hero__tagline {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero__tagline strong {
  font-size: 1.2em;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 12px;
}

/* --- Service Row (Homepage — alternating image/text) --- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.service-row:first-child {
  padding-top: 0;
}

.service-row:last-child {
  padding-bottom: 0;
}

.service-row--reverse {
  direction: rtl;
}

.service-row--reverse > * {
  direction: ltr;
}

.service-row__image {
  border-radius: var(--radius-lg);
}

.service-row__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.service-row__image:hover img {
  transform: scale(1.03);
}

.service-row__content {
  padding: 8px 0;
}

.service-row__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.service-row__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-row__text {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-row__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-row__link:hover {
  gap: 10px;
}

/* --- Sectors Grid --- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.sector-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.sector-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.sector-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--primary);
}

.sector-item__icon svg {
  width: 100%;
  height: 100%;
}

.sector-item__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* --- Quote Banner --- */
.quote-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.quote-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.quote-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(21, 42, 69, 0.85);
}

.quote-banner__content {
  position: relative;
  z-index: 1;
}

.quote-banner__text {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

.quote-banner__text::before {
  content: none;
}

/* --- CTA Section --- */
.cta-section {
  padding: 64px 0;
  text-align: center;
}

.cta-section__title {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.cta-section__text {
  color: var(--text-light);
  margin-bottom: 28px;
}

/* --- Featured Projects (Homepage) --- */
.featured-projects {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.featured-project {
  position: relative;
  border-radius: var(--radius-lg);
}

.featured-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.5s ease;
}

.featured-project:hover img {
  transform: scale(1.03);
}

.featured-project__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.featured-project__title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.featured-project__meta {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 4px;
}

.featured-projects__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-projects__side .featured-project img {
  min-height: 128px;
}

/* --- About Page --- */
.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split__image {
  border-radius: var(--radius-lg);
}

.about-split__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* --- Services Page — alternating sections --- */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-section--reverse {
  direction: rtl;
}

.service-section--reverse > * {
  direction: ltr;
}

.service-section__image {
  border-radius: var(--radius-lg);
}

.service-section__image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-section__content {
  padding: 8px 0;
}

.service-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-section__list {
  list-style: none;
}

.service-section__list li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-section__list li:last-child {
  border-bottom: none;
}

.service-section__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Projects Page --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}

.project-card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card__body {
  padding: 24px;
}

.project-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.project-card__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-card__detail {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.project-card__detail strong {
  color: var(--text-dark);
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-info__text {
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info__item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  color: var(--primary);
}

.contact-info__item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__item-content a {
  color: var(--text);
  font-weight: 500;
}

.contact-info__item-content a:hover {
  color: var(--primary);
}

.contact-info__item-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 2px;
}

/* Google Map */
.contact-map {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  display: block;
  border: none;
}

/* Contact Form */
.contact-form {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item a:hover {
  color: #ffffff;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 56px 0;
  background: var(--bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.page-header__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  margin: 0 8px;
  color: var(--border);
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 404 Page --- */
.error-page {
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-page__code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page__title {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.error-page__text {
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-projects {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .service-section,
  .service-row {
    gap: 40px;
  }

  .about-split {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }

  .section {
    padding: 56px 0;
  }

  /* Mobile nav */
  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
  }

  .header__hamburger {
    display: flex;
  }

  .header__logo img {
    height: 48px;
  }

  /* Hero */
  .hero {
    min-height: 400px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__image::after {
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 70%, rgba(255,255,255,0.6) 100%);
  }

  .hero__buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Service rows & sections */
  .service-row,
  .service-section,
  .about-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-row--reverse,
  .service-section--reverse {
    direction: ltr;
  }

  .service-row__image img,
  .service-section__image img {
    height: 240px;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Quote */
  .quote-banner__text {
    font-size: 1.2rem;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Page header */
  .page-header {
    padding: 40px 0;
  }

  .page-header__title {
    font-size: 1.75rem;
  }

  .about-split__image img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sector-item {
    padding: 20px 12px;
  }

  .contact-form {
    padding: 24px;
  }

  .hero {
    min-height: 340px;
  }

  .hero__content {
    padding: 40px 0;
  }
}







/* ── GNL Studio footer link ── */
.gnl-link {
  display: inline-flex;
  gap: 4px;
  text-decoration: none !important;
  color: inherit !important;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.gnl-link .gnl,
.gnl-link .studio {
  color: inherit !important;
}
.gnl-link:hover {
  opacity: 0.6;
}