/*
Theme Name: Aurevia Spaces
Theme URI: https://example.com/
Author: OpenAI
Description: Premium interior design WordPress theme for residential and commercial spaces.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.9
License: GPL-2.0-or-later
Text Domain: aurevia-spaces
*/

/* =========================================================
   ROOT
========================================================= */

:root {
  --navy: #10233f;
  --navy-dark: #09182b;
  --teal: #1e8f88;
  --teal-dark: #16746e;
  --gold: #c9a66b;
  --gold-light: #dfc48e;

  --cream: #f7f3ed;
  --cream-dark: #eee7dc;

  --white: #ffffff;
  --text: #263238;
  --muted: #68747c;

  --border: #e8e2d8;

  --shadow-sm: 0 10px 30px rgba(16, 35, 63, 0.06);
  --shadow: 0 18px 50px rgba(16, 35, 63, 0.10);
  --shadow-lg: 0 30px 80px rgba(16, 35, 63, 0.15);

  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 30px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background: var(--white);

  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.header-inner {
  min-height: 82px;

  display: flex;
  align-items: center;

  gap: 30px;
}


/* Brand */

.logo {
  display: inline-flex;
  align-items: center;

  font-weight: 800;
  font-size: 23px;

  letter-spacing: -0.7px;

  color: var(--navy);

  white-space: nowrap;
}

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


/* Navigation */

.main-navigation {
  margin-left: auto;
}

.nav-menu {
  display: flex;

  gap: 30px;

  align-items: center;

  list-style: none;

  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu a {
  position: relative;

  display: inline-block;

  font-size: 14px;
  font-weight: 600;

  color: #33404a;

  padding: 8px 0;

  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--teal);

  transition: width 0.25s ease;
}

.nav-menu a:hover {
  color: var(--teal);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
  width: 100%;
}

.nav-menu .current-menu-item a {
  color: var(--teal);
}


/* Header CTA */

.header-cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 11px 19px;

  border-radius: 999px;

  background: var(--navy);
  color: var(--white);

  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.header-cta:hover {
  background: var(--teal);
  color: var(--white);

  transform: translateY(-2px);
}


/* Mobile menu */

.menu-toggle {
  display: none;

  border: 0;

  background: var(--navy);
  color: var(--white);

  padding: 10px 13px;

  border-radius: 10px;

  font-size: 18px;

  cursor: pointer;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 13px 21px;

  border-radius: 999px;

  font-weight: 700;
  font-size: 14px;

  border: 1px solid transparent;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);

  box-shadow: 0 8px 20px rgba(16, 35, 63, 0.12);
}

.btn-primary:hover {
  background: var(--teal);

  color: var(--white);

  transform: translateY(-2px);

  box-shadow: 0 12px 25px rgba(30, 143, 136, 0.20);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);

  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);

  transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 720px;

  display: grid;

  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(8, 23, 43, 0.90) 0%,
      rgba(8, 23, 43, 0.68) 45%,
      rgba(8, 23, 43, 0.12) 100%
    ),
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1800&q=85")
    center / cover;
}

.hero-content {
  max-width: 680px;

  color: var(--white);

  padding: 110px 0;
}

.eyebrow {
  text-transform: uppercase;

  letter-spacing: 2.5px;

  font-size: 11px;

  font-weight: 800;

  color: var(--gold);

  margin-bottom: 13px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 52px);

  line-height: 1.06;

  letter-spacing: -2.8px;

  margin: 0 0 24px;
}

.hero p {
  font-size: 18px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.88);

  max-width: 600px;

  margin: 0 0 32px;
}

.hero-actions {
  display: flex;

  gap: 13px;

  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--white);

  color: var(--navy);
}

.hero .btn-primary:hover {
  background: var(--gold);

  color: var(--navy);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);

  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);

  color: var(--navy);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 105px 0;
}

.section-soft {
  background: var(--cream);
}

.section-head {
  max-width: 680px;

  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);

  line-height: 1.12;

  color: var(--navy);

  letter-spacing: -1.7px;

  margin: 0 0 16px;
}

.section-text {
  color: var(--muted);

  margin: 0;

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 75px;

  align-items: center;
}

.about-image {
  position: relative;

  overflow: hidden;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow);
}

.about-image::after {
  content: "";

  position: absolute;

  inset: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: inherit;

  pointer-events: none;
}

.about-image img {
  width: 100%;

  height: 520px;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.035);
}


/* Check list */

.check-list {
  list-style: none;

  padding: 0;

  margin: 28px 0;
}

.check-list li {
  position: relative;

  padding-left: 32px;

  margin: 14px 0;

  color: #46525a;
}

.check-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 1px;

  width: 21px;
  height: 21px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: rgba(30, 143, 136, 0.10);

  color: var(--teal);

  font-size: 12px;

  font-weight: 900;
}


/* =========================================================
   CARDS
========================================================= */

.cards {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 18px;
}

.card {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 29px;

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow);

  border-color: rgba(30, 143, 136, 0.20);
}

.icon {
  width: 52px;
  height: 52px;

  border-radius: 15px;

  background: var(--cream);

  color: var(--teal);

  display: grid;

  place-items: center;

  font-size: 20px;

  font-weight: 800;

  margin-bottom: 20px;
}

.card h3 {
  font-size: 19px;

  line-height: 1.3;

  color: var(--navy);

  margin: 0 0 10px;
}

.card p {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;

  margin: 0;
}



.four-cards {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.four-cards .card {
    text-align: center;
}

.four-cards .icon {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1000px) {
    .four-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .four-cards {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   PROJECTS
========================================================= */

.projects-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.project {
  position: relative;

  overflow: hidden;

  border-radius: var(--radius);

  min-height: 390px;

  background: #ddd;

  box-shadow: var(--shadow-sm);
}

.project img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.project::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      transparent 30%,
      rgba(0, 0, 0, 0.78)
    );
}

.project:hover img {
  transform: scale(1.07);
}

.project-info {
  position: absolute;

  z-index: 2;

  left: 25px;
  right: 25px;
  bottom: 23px;

  color: var(--white);
}

.project-info small {
  color: var(--gold-light);

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.4px;

  font-size: 11px;
}

.project-info h3 {
  margin: 6px 0 0;

  font-size: 25px;

  line-height: 1.25;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.why-card {
  padding: 32px;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      var(--navy),
      #173d5f
    );

  color: var(--white);

  box-shadow: var(--shadow-sm);
}

.why-card .icon {
  background: rgba(255, 255, 255, 0.09);

  color: var(--gold-light);
}

.why-card h3 {
  margin: 0 0 9px;

  font-size: 20px;
}

.why-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.quote {
  position: relative;

  background: var(--white);

  border: 1px solid var(--border);

  padding: 32px;

  border-radius: var(--radius);

  box-shadow: var(--shadow-sm);
}

.quote::before {
  content: "“";

  display: block;

  font-size: 52px;

  line-height: 0.7;

  color: var(--gold);

  margin-bottom: 18px;
}

.quote p {
  font-size: 16px;

  line-height: 1.8;

  color: #4c575e;

  margin: 0;
}

.quote strong {
  display: block;

  color: var(--navy);

  margin-top: 22px;

  font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      #173d5f
    );

  color: var(--white);

  border-radius: var(--radius-lg);

  padding: 60px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 35px;

  box-shadow: var(--shadow-lg);
}

.cta::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -120px;
  top: -150px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta h2 {
  margin: 0 0 10px;

  font-size: 40px;

  line-height: 1.12;

  letter-spacing: -1px;

  max-width: 700px;
}

.cta p {
  margin: 0;

  color: rgba(255, 255, 255, 0.75);

  max-width: 650px;
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
  position: relative;

  padding: 110px 0;

  background:
    linear-gradient(
      135deg,
      var(--cream),
      #fbf9f5
    );

  overflow: hidden;
}

.page-hero::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  right: -120px;
  top: -180px;

  border-radius: 50%;

  border: 1px solid rgba(201, 166, 107, 0.18);
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 38px);

  line-height: 1.08;

  color: var(--navy);

  letter-spacing: -2px;

  margin: 0 0 16px;
}


/* =========================================================
   PAGE CONTENT
========================================================= */

.page-content {
  padding: 85px 0;
}


/* =========================================================
   SERVICES / PROJECTS PAGE
========================================================= */

.services-page,
.projects-page {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 50px;

  align-items: start;
}

.contact-details {
  background: var(--cream);

  padding: 35px;

  border-radius: var(--radius);

  border: 1px solid var(--border);
}

.contact-details h3 {
  color: var(--navy);

  margin-top: 0;

  font-size: 25px;
}

.contact-details p {
  color: var(--muted);

  margin-bottom: 22px;
}

.contact-form {
  background: var(--white);

  border: 1px solid var(--border);

  padding: 35px;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 7px;

  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 14px 16px;

  border: 1px solid #d8dfe3;

  border-radius: 12px;

  margin-bottom: 19px;

  font: inherit;

  color: var(--text);

  background: #fff;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);

  box-shadow:
    0 0 0 3px rgba(30, 143, 136, 0.10);
}

.contact-form textarea {
  min-height: 150px;

  resize: vertical;
}

.notice {
  padding: 14px 18px;

  border-radius: 12px;

  background: #e8f7f1;

  color: #166b52;

  margin-bottom: 20px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: var(--navy-dark);

  color: #dce5ed;

  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr;

  gap: 55px;
}

.site-footer h3 {
  color: var(--white);

  margin-top: 0;

  font-size: 18px;
}

.site-footer p {
  color: #9eafbf;

  line-height: 1.8;
}

.footer-links {
  list-style: none;

  margin: 0;

  padding: 0;
}

.footer-links li {
  margin: 9px 0;
}

.footer-links a {
  color: #9eafbf;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);

  margin-top: 50px;

  padding-top: 22px;

  color: #8fa0b0;

  font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .nav-menu {
    gap: 20px;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

}


@media (max-width: 1000px) {

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid,
  .testimonials,
  .services-page,
  .projects-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-cta {
    display: none;
  }

}


@media (max-width: 760px) {

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 70px;

    justify-content: space-between;
  }

  .main-navigation {
    position: absolute;

    left: 4%;
    right: 4%;

    top: 70px;

    margin: 0;

    background: var(--white);

    padding: 18px;

    border-radius: 16px;

    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;

    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;

    width: 100%;

    padding: 10px 4px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero h1 {
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 75px 0;
  }

  .section-title {
    letter-spacing: -1px;
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .about-image img {
    height: 380px;
  }

  .cards,
  .why-grid,
  .projects-grid,
  .testimonials,
  .services-page,
  .projects-page {
    grid-template-columns: 1fr;
  }

  .project {
    min-height: 350px;
  }

  .cta {
    padding: 38px;

    flex-direction: column;

    align-items: flex-start;
  }

  .cta h2 {
    font-size: 31px;
  }

  .page-hero {
    padding: 80px 0;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .contact-form,
  .contact-details {
    padding: 27px;
  }

}


@media (max-width: 480px) {

  .container {
    width: 90%;
  }

  .logo {
    font-size: 20px;
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .cta {
    padding: 30px;
  }

  .cta h2 {
    font-size: 28px;
  }

}



/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(30, 143, 136, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #09182b,
            #102b47
        );

    color: #dce5ed;

    padding: 80px 0 25px;
}


/* Footer Grid */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.7fr
        0.8fr
        1.1fr
        1.2fr;

    gap: 55px;

    padding-bottom: 5px;
}


/* Brand */

.footer-logo {
    display: inline-flex;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -0.8px;

    color: #ffffff;

    margin-bottom: 20px;
}

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

.footer-description {
    max-width: 390px;

    color: #9eafbf;

    font-size: 14px;

    line-height: 1.85;

    margin: 0;
}


/* Footer Headings */

.site-footer h3 {
    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    margin: 4px 0 22px;

    letter-spacing: 0.2px;
}


/* Links */

.footer-links {
    list-style: none;

    margin: 0;

    padding: 0;
}

.footer-links li {
    margin: 11px 0;
}

.footer-links a {
    position: relative;

    color: #9eafbf;

    font-size: 14px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;

    padding-left: 5px;
}


/* Social */

.footer-socials {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.footer-socials a {
    padding: 7px 12px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 999px;

    color: #9eafbf;

    font-size: 11px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.footer-socials a:hover {
    background: rgba(255,255,255,0.08);

    border-color: rgba(255,255,255,0.25);

    color: #ffffff;
}


/* Contact */

.footer-contact p {
    color: #9eafbf;

    font-size: 14px;

    line-height: 1.7;

    margin: 0 0 18px;
}

.footer-contact-link {
    display: block;

    color: #ffffff;

    font-size: 14px;

    margin: 10px 0;

    transition: color 0.25s ease;
}

.footer-contact-link:hover {
    color: var(--gold-light);
}


/* Start Project Button */

.footer-project-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    padding: 11px 17px;

    border-radius: 999px;

    background: #ffffff;

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-project-btn span {
    font-size: 17px;
}

.footer-project-btn:hover {
    background: var(--gold-light);

    color: var(--navy);

    transform: translateY(-2px);
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);

    padding-top: 23px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    color: #7f93a5;

    font-size: 12px;
}

.footer-legal {
    display: flex;

    gap: 22px;
}

.footer-legal a {
    color: #7f93a5;

    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* Footer Responsive */

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 40px;
    }

    .footer-contact {
        grid-column: span 3;
    }

}


@media (max-width: 760px) {

    .site-footer {
        padding: 60px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        line-height: 1.6;
    }

}


@media (max-width: 500px) {

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

    .footer-brand,
    .footer-contact {
        grid-column: span 1;
    }

    .footer-legal {
        flex-direction: column;

        gap: 7px;
    }

}




/* =========================================================
   AUREVIA SPACES — PREMIUM HOME PAGE
   Works with the current front-page.php
========================================================= */


/* =========================================================
   PREMIUM HERO
========================================================= */

.premium-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}

.premium-hero-image {
    position: absolute;
    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2200&q=92");

    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.premium-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 17, 28, .88) 0%,
            rgba(8, 17, 28, .66) 42%,
            rgba(8, 17, 28, .18) 100%
        );
}

.premium-hero-content {
    position: relative;
    z-index: 2;

    width: min(1160px, 92%);

    padding: 150px 0 220px;

    color: #fff;
}

.premium-eyebrow {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.premium-eyebrow.dark {
    color: var(--gold);
}

.premium-hero h1 {
    max-width: 780px;

    margin: 0 0 28px;

    color: #fff;

    font-size: clamp(58px, 7.5vw, 76px);
    font-weight: 500;

    line-height: .98;
    letter-spacing: -3px;
}

.premium-hero h1 span {
    display: block;

    color: var(--gold-light);

    font-family: Georgia, "Times New Roman", serif;

    font-size: .92em;
    font-style: italic;
    font-weight: 400;

    letter-spacing: -3px;
}

.premium-hero p {
    max-width: 600px;

    margin: 0 0 35px;

    color: rgba(255,255,255,.78);

    font-size: 17px;
    line-height: 1.8;
}

.premium-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    padding: 14px 23px;

    border-radius: 0;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: .3s ease;
}

.premium-btn span {
    font-size: 17px;
    line-height: 1;
}

.premium-btn-light {
    background: #fff;
    color: var(--navy);
}

.premium-btn-light:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
}

.premium-text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(255,255,255,.5);

    padding-bottom: 7px;

    transition: .3s ease;
}

.premium-text-link span {
    font-size: 18px;
}

.premium-text-link:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}


/* Hero stats */

.premium-hero-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    background: rgba(9, 18, 30, .78);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-top: 1px solid rgba(255,255,255,.13);
}

.premium-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.premium-hero-stats > div {
    padding: 24px 30px;

    border-right: 1px solid rgba(255,255,255,.12);
}

.premium-hero-stats > div:last-child {
    border-right: 0;
}

.premium-hero-stats strong {
    display: block;

    color: #fff;

    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
}

.premium-hero-stats span {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.48);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.premium-intro {
    padding: 135px 0;

    background: #f8f5ef;
}

.premium-intro-grid {
    display: grid;

    grid-template-columns: 100px minmax(320px, 1fr) minmax(420px, 1fr);

    gap: 55px;

    align-items: start;
}

.premium-intro-label {
    padding-top: 5px;
}

.premium-intro-label span {
    display: block;

    color: var(--teal);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.premium-intro-label p {
    margin: 12px 0 0;

    color: #8b8d89;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.7;
    letter-spacing: 1.7px;
}

.premium-intro-content {
    padding-top: 0;
}

.premium-intro-content h2 {
    margin: 0 0 27px;

    color: var(--navy);

    font-size: clamp(38px, 4.2vw, 58px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -2.5px;
}

.premium-intro-content h2 em {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--teal);

    font-weight: 400;
}

.premium-intro-content p {
    max-width: 580px;

    margin: 0 0 18px;

    color: #68747c;

    font-size: 15px;

    line-height: 1.85;
}

.premium-dark-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding-bottom: 7px;

    border-bottom: 1px solid rgba(16,35,63,.35);

    color: var(--navy);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition: .3s ease;
}

.premium-dark-link span {
    font-size: 16px;
}

.premium-dark-link:hover {
    color: var(--teal);

    border-color: var(--teal);
}

.premium-intro-image {
    position: relative;

    height: 570px;

    overflow: hidden;
}

.premium-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.premium-intro-image:hover img {
    transform: scale(1.04);
}

.image-caption {
    position: absolute;

    left: 20px;
    bottom: 18px;

    color: #fff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


/* =========================================================
   SERVICES — DARK EDITORIAL
========================================================= */

.premium-services {
    padding: 125px 0;

    background:
        linear-gradient(
            135deg,
            #171613,
            #25221c
        );

    color: #fff;
}

.premium-section-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 60px;

    margin-bottom: 55px;
}

.premium-section-heading > div {
    max-width: 700px;
}

.premium-section-heading h2 {
    margin: 0;

    color: #cbc8c8;

    font-size: clamp(40px, 5vw, 65px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -2.5px;
}

.premium-section-heading h2 em {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--gold-light);

    font-style: italic;
}

.premium-section-heading > p {
    max-width: 370px;

    margin: 0;

    color: rgba(255,255,255,.50);

    font-size: 13px;

    line-height: 1.8;
}

.premium-services-list {
    border-top: 1px solid rgba(255,255,255,.16);
}

.premium-service-row {
    display: grid;

    grid-template-columns: 90px 1fr 55px;

    align-items: center;

    min-height: 115px;

    border-bottom: 1px solid rgba(255,255,255,.16);

    color: #fff;

    transition:
        padding .3s ease,
        background .3s ease;
}

.premium-service-row:hover {
    padding-left: 20px;
    padding-right: 20px;

    background: rgba(255,255,255,.035);
}

.service-number {
    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-name h3 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 27px;

    font-weight: 400;

    line-height: 1.25;
}

.service-name p {
    margin: 0;

    color: rgba(255,255,255,.43);

    font-size: 12px;

    line-height: 1.7;
}

.service-arrow {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.22);

    border-radius: 50%;

    font-size: 17px;

    transition: .3s ease;
}

.premium-service-row:hover .service-arrow {
    background: var(--gold-light);

    border-color: var(--gold-light);

    color: var(--navy);

    transform: rotate(45deg);
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.premium-philosophy {
    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #111;
}

.premium-philosophy-image {
    position: absolute;

    inset: 0;
}

.premium-philosophy-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.premium-philosophy-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,13,17,.94),
            rgba(8,13,17,.74) 45%,
            rgba(8,13,17,.25)
        );
}

.premium-philosophy-content {
    position: relative;

    z-index: 2;

    color: #fff;

    padding-top: 110px;
    padding-bottom: 110px;
}

.premium-philosophy-content h2 {
    max-width: 760px;

    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(43px, 5.5vw, 72px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -3px;
}

.premium-philosophy-content h2 em {
    color: var(--gold-light);

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;
}

.premium-philosophy-content > p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 15px;

    line-height: 1.9;
}

.philosophy-points {
    display: flex;

    gap: 0;

    margin-top: 50px;

    max-width: 760px;
}

.philosophy-points > div {
    display: flex;

    flex-direction: column;

    gap: 8px;

    width: 33.333%;

    padding-right: 30px;

    border-right: 1px solid rgba(255,255,255,.18);
}

.philosophy-points > div:not(:first-child) {
    padding-left: 30px;
}

.philosophy-points > div:last-child {
    border-right: 0;
}

.philosophy-points strong {
    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 1px;
}

.philosophy-points span {
    color: #fff;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   PROJECTS
========================================================= */

.premium-projects {
    padding: 125px 0;

    background: #f8f5ef;
}

.premium-project-grid {
    display: grid;

    grid-template-columns: 1.35fr .65fr;

    grid-template-rows: 300px 300px;

    gap: 20px;
}

.premium-project {
    position: relative;

    overflow: hidden;

    min-height: 300px;

    background: #222;
}

.premium-project-large {
    grid-row: span 2;
}

.premium-project img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.premium-project:hover img {
    transform: scale(1.06);
}

.premium-project-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0,0,0,.82)
        );
}

.premium-project-info {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 27px;

    z-index: 2;

    color: #fff;
}

.premium-project-info span {
    color: var(--gold-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.premium-project-info h3 {
    margin: 7px 0 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;

    font-weight: 400;

    line-height: 1.15;
}

.premium-project-large .premium-project-info h3 {
    font-size: 40px;
}

.premium-project-info p {
    max-width: 530px;

    margin: 9px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.premium-process {
    padding: 125px 0;

    background: #eee9e0;
}

.premium-process-heading {
    max-width: 750px;

    margin-bottom: 65px;
}

.premium-process-heading h2 {
    margin: 0 0 17px;

    color: var(--navy);

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -2.5px;
}

.premium-process-heading h2 em {
    color: var(--teal);

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;
}

.premium-process-heading p {
    max-width: 500px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

.premium-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d8d0c5;
}

.premium-process-item {
    padding: 35px 30px 25px;

    border-right: 1px solid #d8d0c5;
}

.premium-process-item:first-child {
    padding-left: 0;
}

.premium-process-item:last-child {
    border-right: 0;
}

.premium-process-item > span {
    display: block;

    margin-bottom: 45px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.premium-process-item h3 {
    margin: 0 0 12px;

    color: var(--navy);

    font-size: 25px;

    font-weight: 500;
}

.premium-process-item p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.premium-testimonial {
    padding: 135px 0;

    text-align: center;

    background: #fff;
}

.premium-testimonial .premium-eyebrow {
    margin-bottom: 28px;
}

.premium-testimonial blockquote {
    max-width: 980px;

    margin: 0 auto 35px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(31px, 4.5vw, 58px);

    font-weight: 400;

    line-height: 1.23;

    letter-spacing: -1.5px;
}

.testimonial-author {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.testimonial-author strong {
    color: var(--navy);

    font-size: 13px;
}

.testimonial-author span {
    color: #8b9296;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   FAQ
========================================================= */

.premium-faq {
    padding: 120px 0;

    background: #f8f5ef;
}

.faq-list {
    max-width: 900px;

    margin-left: auto;
}

.faq-list details {
    border-top: 1px solid #dcd5ca;
}

.faq-list details:last-child {
    border-bottom: 1px solid #dcd5ca;
}

.faq-list summary {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;

    cursor: pointer;

    list-style: none;

    color: var(--navy);

    font-size: 15px;

    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    font-size: 22px;

    font-weight: 300;

    transition: transform .25s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);

    color: var(--teal);
}

.faq-list details p {
    max-width: 720px;

    margin: -5px 0 25px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.premium-final-cta {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #111;
}

.premium-final-image {
    position: absolute;

    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2000&q=90")
        center / cover;
}

.premium-final-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,17,28,.88),
            rgba(8,17,28,.48)
        );
}

.premium-final-content {
    position: relative;

    z-index: 2;

    padding-top: 100px;
    padding-bottom: 100px;

    color: #fff;
}

.premium-final-content h2 {
    max-width: 750px;

    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(48px, 6vw, 76px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}

.premium-final-content h2 em {
    color: var(--gold-light);

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;
}

.premium-final-content p {
    max-width: 550px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.68);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .premium-intro-grid {
        grid-template-columns: 70px 1fr 1fr;

        gap: 35px;
    }

    .premium-project-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 420px 300px;
    }

    .premium-project-large {
        grid-column: span 2;

        grid-row: auto;
    }

    .premium-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-process-item:nth-child(2) {
        border-right: 0;
    }

    .premium-process-item:nth-child(3),
    .premium-process-item:nth-child(4) {
        border-top: 1px solid #d8d0c5;
    }

    .premium-process-item:nth-child(3) {
        padding-left: 0;
    }

}


@media (max-width: 800px) {

    .premium-hero {
        min-height: 720px;
    }

    .premium-hero-content {
        padding: 100px 0 190px;
    }

    .premium-hero h1 {
        font-size: 58px;

        letter-spacing: -2.5px;
    }

    .premium-hero-stats > div {
        padding: 18px;
    }

    .premium-hero-stats strong {
        font-size: 22px;
    }

    .premium-intro {
        padding: 85px 0;
    }

    .premium-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .premium-intro-label {
        display: flex;

        align-items: center;

        gap: 15px;
    }

    .premium-intro-label p {
        margin: 0;
    }

    .premium-intro-image {
        height: 470px;
    }

    .premium-section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .premium-services,
    .premium-projects,
    .premium-process,
    .premium-faq {
        padding: 85px 0;
    }

    .premium-philosophy {
        min-height: 650px;
    }

    .premium-philosophy-content {
        padding: 85px 0;
    }

    .premium-project-grid {
        grid-template-columns: 1fr;

        grid-template-rows: 420px 320px 320px;
    }

    .premium-project-large {
        grid-column: auto;
    }

}


@media (max-width: 600px) {

    .premium-hero {
        min-height: 720px;
    }

    .premium-hero-content {
        padding: 80px 0 200px;
    }

    .premium-hero h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }

    .premium-hero p {
        font-size: 15px;
    }

    .premium-hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    .premium-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-hero-stats > div:nth-child(2) {
        border-right: 0;
    }

    .premium-hero-stats > div:nth-child(3),
    .premium-hero-stats > div:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .premium-intro-content h2,
    .premium-section-heading h2 {
        font-size: 42px;
    }

    .premium-service-row {
        grid-template-columns: 45px 1fr 40px;

        min-height: 100px;
    }

    .service-name h3 {
        font-size: 21px;
    }

    .service-name p {
        display: none;
    }

    .premium-philosophy-content h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .philosophy-points {
        flex-direction: column;

        gap: 18px;
    }

    .philosophy-points > div,
    .philosophy-points > div:not(:first-child) {
        width: 100%;

        padding: 0 0 18px;

        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .philosophy-points > div:last-child {
        border-bottom: 0;
    }

    .premium-process-grid {
        grid-template-columns: 1fr;
    }

    .premium-process-item,
    .premium-process-item:first-child,
    .premium-process-item:nth-child(3) {
        padding: 30px 0;

        border-right: 0;

        border-bottom: 1px solid #d8d0c5;

    }

    .premium-process-item:last-child {
        border-bottom: 0;
    }

    .premium-process-item > span {
        margin-bottom: 25px;
    }

    .premium-testimonial {
        padding: 90px 0;
    }

    .premium-testimonial blockquote {
        font-size: 31px;

        letter-spacing: -.5px;
    }

    .premium-final-cta {
        min-height: 600px;
    }

    .premium-final-content {
        padding: 80px 0;
    }

    .premium-final-content h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }

}



@media (max-width: 800px) {
    .services-page {
        grid-template-columns: 1fr !important;
    }

    .services-page .card {
        padding: 28px !important;
    }

    .services-page + * {
        max-width: 100%;
    }
}





/* =========================================================
   MOBILE HEADER / NAVIGATION FIX
========================================================= */

@media (max-width: 760px) {

    /* Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
        background: #fff;
    }

    .header-inner {
        min-height: 70px;
        position: relative;
    }


    /* -----------------------------------------
       Hide desktop CTA on mobile
    ----------------------------------------- */

    .header-cta {
        display: none !important;
    }


    /* -----------------------------------------
       Navigation wrapper
       IMPORTANT: this should NOT be the
       white dropdown box
    ----------------------------------------- */

    .main-navigation {
        position: static !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }


    /* -----------------------------------------
       Actual mobile dropdown
    ----------------------------------------- */

    .main-navigation .nav-menu {
        display: none;

        position: absolute;
        top: 78px;
        left: 4%;
        right: 4%;

        width: auto;

        margin: 0;
        padding: 14px;

        background: #fff;

        border: 1px solid rgba(16,35,63,.08);
        border-radius: 16px;

        box-shadow: 0 18px 45px rgba(16,35,63,.14);

        flex-direction: column;
        align-items: stretch;

        list-style: none;

        z-index: 9999;
    }


    /* Menu is opened by your existing JS */
    .main-navigation .nav-menu.open {
        display: flex;
    }


    /* -----------------------------------------
       Menu items
    ----------------------------------------- */

    .main-navigation .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }


    .main-navigation .nav-menu li a {
        display: block;
        width: 100%;

        padding: 13px 15px;

        border-radius: 10px;

        color: #263238;
        font-size: 15px;
        font-weight: 600;

        text-decoration: none;
    }


    .main-navigation .nav-menu li a:hover,
    .main-navigation .nav-menu li.current-menu-item a {
        background: #f7f3ed;
        color: #1e8f88;
    }


    /* -----------------------------------------
       Hamburger
    ----------------------------------------- */

    .menu-toggle {
        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 52px;
        height: 46px;

        padding: 0;

        border: 0;
        border-radius: 14px;

        background: #10233f;
        color: #fff;

        font-size: 22px;
        line-height: 1;

        cursor: pointer;
    }

}




@media (max-width: 800px) {

    .testimonials {
        grid-template-columns: 1fr !important;
    }

    .testimonials > div {
        min-height: auto !important;
    }

}



/* =========================================================
   SERVICES PAGE - MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    /* Page hero */
    .page-hero {
        padding: 75px 0 65px !important;
    }

    .page-hero h1 {
        font-size: 42px !important;
        line-height: 1.08 !important;
        letter-spacing: -1.5px !important;
    }

    .page-hero p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }


    /* Introduction */
    .section {
        overflow: hidden;
    }

    .section > .container > div[style*="grid-template-columns:minmax(0,1.3fr)"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        align-items: start !important;
    }

    .section > .container > div[style*="grid-template-columns:minmax(0,1.3fr)"] > div:last-child {
        border-left: 0 !important;
        border-top: 1px solid #ddd5c9;
        padding-left: 0 !important;
        padding-top: 25px;
    }


    /* Section headings */
    .section-title {
        font-size: 34px !important;
        line-height: 1.15 !important;
        letter-spacing: -1px;
    }

    .section-text {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }


    /* Services cards */
    .services-page {
        grid-template-columns: 1fr !important;
    }


    /* Service card */
    .services-page .card {
        padding: 26px !important;
    }


    /* Process */
    .premium-process-grid,
    .process-grid {
        grid-template-columns: 1fr !important;
    }


    /* Process inline grid */
    .section .container > div[style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: 1fr !important;
        margin-top: 40px !important;
    }

    .section .container > div[style*="grid-template-columns:repeat(4,1fr)"] > div {
        border-right: 0 !important;
        border-bottom: 1px solid #e2ddd4;
        padding: 25px 0 !important;
    }

    .section .container > div[style*="grid-template-columns:repeat(4,1fr)"] > div:last-child {
        border-bottom: 0;
    }


    /* CTA */
    .cta {
        padding: 35px 25px !important;
    }

    .cta h2 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }

    .cta p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .cta .btn {
        margin-top: 25px;
    }

}



/* =========================================================
   PROJECTS PAGE - RESPONSIVE
========================================================= */

/* -------------------------
   TABLET
------------------------- */

@media (max-width: 1024px) {

    /* Portfolio intro */
    .section > .container > div[style*="grid-template-columns:1.2fr"] {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        align-items: start !important;
    }

    .section > .container > div[style*="grid-template-columns:1.2fr"] > div:last-child {
        border-left: 0 !important;
        border-top: 1px solid #ddd5c9;
        padding-left: 0 !important;
        padding-top: 25px;
    }


    /* Projects heading */
    .section > .container > div[style*="display:flex"][style*="justify-content:space-between"] {
        align-items: flex-start !important;
    }


    /* Project grid */
    .section > .container > div[style*="grid-template-columns:1.35fr"] {
        grid-template-columns: 1fr 1fr !important;
    }


    /* Featured project */
    .section > .container > div[style*="grid-template-columns:1.35fr"] .project:first-child {
        min-height: 520px !important;
    }


    /* Philosophy */
    .section > .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 767px) {

    /* =========================================
       PAGE HERO
    ========================================= */

    .page-hero {
        padding: 70px 0 60px !important;
    }

    .page-hero h1 {
        font-size: 42px !important;
        line-height: 1.08 !important;
        letter-spacing: -1.5px !important;
        max-width: 100% !important;
    }

    .page-hero p {
        font-size: 14px !important;
        line-height: 1.75 !important;
        max-width: 100% !important;
    }


    /* =========================================
       GENERAL SECTIONS
    ========================================= */

    .section {
        overflow: hidden;
    }

    .section-title {
        font-size: 34px !important;
        line-height: 1.15 !important;
        letter-spacing: -1px !important;
    }

    .section-text {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }


    /* =========================================
       PORTFOLIO INTRO
    ========================================= */

    .section > .container > div[style*="grid-template-columns:1.2fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        align-items: start !important;
    }

    .section > .container > div[style*="grid-template-columns:1.2fr"] > div:last-child {
        border-left: 0 !important;
        border-top: 1px solid #ddd5c9;
        padding-left: 0 !important;
        padding-top: 25px !important;
    }


    /* =========================================
       FEATURED PROJECT HEADER
    ========================================= */

    .section > .container > div[style*="display:flex"][style*="justify-content:space-between"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }

    .section > .container > div[style*="display:flex"][style*="justify-content:space-between"] > div:last-child {
        max-width: 100% !important;
    }


    /* =========================================
       PROJECT GRID
    ========================================= */

    .section > .container > div[style*="grid-template-columns:1.35fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }


    /* =========================================
       FEATURED PROJECT
    ========================================= */

    .section > .container > div[style*="grid-template-columns:1.35fr"] .project:first-child {
        min-height: 430px !important;
        grid-row: auto !important;
    }


    /* =========================================
       STANDARD PROJECTS
    ========================================= */

    .section > .container > div[style*="grid-template-columns:1.35fr"] .project {
        min-height: 320px !important;
    }


    /* Project title */
    .section > .container > div[style*="grid-template-columns:1.35fr"] .project:first-child h3 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .section > .container > div[style*="grid-template-columns:1.35fr"] .project:not(:first-child) h3 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }


    /* Project description */
    .section > .container > div[style*="grid-template-columns:1.35fr"] .project-info p {
        font-size: 12px !important;
        line-height: 1.65 !important;
    }


    /* =========================================
       DESIGN PHILOSOPHY
    ========================================= */

    .section > .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 40px !important;
    }


    .section > .container > div[style*="grid-template-columns:repeat(3,1fr)"] > div {
        padding: 26px !important;
    }


    /* =========================================
       CTA
    ========================================= */

    .cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 25px !important;
        padding: 35px 25px !important;
    }

    .cta h2 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }

    .cta p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .cta .btn {
        width: 100%;
        justify-content: center;
        white-space: normal !important;
    }

}


/* -------------------------
   SMALL PHONES
------------------------- */

@media (max-width: 480px) {

    .page-hero {
        padding: 60px 0 50px !important;
    }

    .page-hero h1 {
        font-size: 36px !important;
        letter-spacing: -1px !important;
    }

    .page-hero p {
        font-size: 14px !important;
    }


    .section-title {
        font-size: 30px !important;
    }


    /* Featured project */
    .section > .container > div[style*="grid-template-columns:1.35fr"] .project:first-child {
        min-height: 390px !important;
    }


    /* Other projects */
    .section > .container > div[style*="grid-template-columns:1.35fr"] .project {
        min-height: 280px !important;
    }


    /* Project information */
    .section > .container > div[style*="grid-template-columns:1.35fr"] .project-info {
        left: 18px !important;
        right: 18px !important;
        bottom: 18px !important;
    }


    .section > .container > div[style*="grid-template-columns:1.35fr"] .project:first-child h3 {
        font-size: 24px !important;
    }


    .section > .container > div[style*="grid-template-columns:1.35fr"] .project:not(:first-child) h3 {
        font-size: 20px !important;
    }


    .cta {
        border-radius: 18px !important;
        padding: 30px 22px !important;
    }

    .cta h2 {
        font-size: 29px !important;
    }

}