/* =========================================================
   BRIELLE LEGAL SOLUTIONS
   Main Stylesheet
========================================================= */

:root {
  /* =====================================================
     CORE COLORS
  ===================================================== */

  --navy: #102633;
  --navy-dark: #0a1b25;
  --navy-light: #24404c;

  /* Muted terracotta / antique copper */
  --copper: #a85d4d;
  --copper-dark: #88483d;
  --copper-light: #c47b69;

  /* Warm ivory rather than bright cream */
  --cream: #faf6f0;
  --cream-dark: #eee5dc;

  /* Soft dusty rose */
  --blush: #f2e3de;
  --blush-dark: #dfc9c1;

  --white: #ffffff;

  /* Text */
  --text: #172833;
  --text-light: #626a6d;

  /* Borders */
  --border: rgba(168, 93, 77, 0.22);

  /* Typography */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1200px;

  /* Softer, slightly warmer shadow */
  --shadow:
    0 20px 60px rgba(16, 38, 51, 0.10);

  --transition:
    all 0.35s ease;
}


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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

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

.section {
  padding: 110px 0;
}

.centered {
  text-align: center;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.decorative-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 18px 0 25px;
}

.decorative-line span {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--copper);
}

.decorative-line i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--copper);
  transform: rotate(45deg);
  margin-left: -3px;
}

.centered-line {
  justify-content: center;
}

.centered-line span {
  width: 60px;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 25px;
}

.section-heading h2 em {
  color: var(--copper);
  font-weight: 500;
}

.section-heading > p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}


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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  min-height: 48px;
  padding: 13px 25px;

  border: 1px solid transparent;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition: var(--transition);
  cursor: pointer;
}

.button span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.button:hover span {
  transform: translateX(5px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--copper),
    var(--copper-dark)
  );

  box-shadow:
    0 10px 30px rgba(183, 79, 64, 0.2);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 35px rgba(183, 79, 64, 0.3);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  background: var(--blush);
  transform: translateY(-2px);
}


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

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;

  padding: 25px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Brand */

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
    display: block;
    width: 190px;
    height: auto;
}

.brand-mark {
  position: relative;

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

  width: 56px;
  height: 56px;

  color: var(--copper);

  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;

  border: 1px solid var(--copper);
  border-radius: 50%;

  transform: rotate(-7deg);
}

.brand-mark::before {
  content: "";
  position: absolute;

  width: 68px;
  height: 35px;

  border-bottom: 1px solid var(--copper);
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--copper);

  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;

  letter-spacing: 0.22em;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 5px;

  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}


/* Navigation */

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-link {
  position: relative;

  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;

  transition: var(--transition);
}

.nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -10px;

  width: 0;
  height: 2px;

  background: var(--copper);

  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--copper-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;

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

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
}


/* Mobile menu */

.mobile-menu-button {
  display: none;

  border: 0;
  background: transparent;

  width: 40px;
  height: 40px;

  cursor: pointer;
}

.mobile-menu-button span {
  display: block;

  width: 25px;
  height: 2px;

  margin: 5px auto;

  background: var(--navy);

  transition: var(--transition);
}


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

.hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  padding: 150px 0 100px;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.78),
      rgba(249,234,231,0.72)
    );
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse at 10% 30%,
      rgba(221, 184, 180, 0.3),
      transparent 38%
    ),
    radial-gradient(
      ellipse at 80% 10%,
      rgba(217, 191, 220, 0.22),
      transparent 32%
    ),
    radial-gradient(
      ellipse at 65% 80%,
      rgba(255, 207, 190, 0.25),
      transparent 35%
    );

  pointer-events: none;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.12;

  background-image:
    repeating-linear-gradient(
      120deg,
      transparent 0,
      transparent 70px,
      rgba(183, 79, 64, 0.12) 71px,
      transparent 72px
    );

  pointer-events: none;
}

.hero-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  filter: blur(80px);

  opacity: 0.3;
}

.glow-one {
  top: -200px;
  left: 25%;
  background: #e5c2d4;
}

.glow-two {
  bottom: -200px;
  right: 10%;
  background: #f1c8b5;
}

.glow-three {
  top: 20%;
  right: 35%;
  background: #d5d8e7;
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 0.85fr;

  align-items: center;

  gap: 50px;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  max-width: 650px;

  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 7rem);

  font-weight: 500;
  line-height: 0.82;

  letter-spacing: -0.035em;

  color: var(--navy);
}

.hero h1 em {
  display: block;

  color: var(--copper);

  font-style: italic;
  font-weight: 500;
}

.hero-description {
  max-width: 570px;

  margin: 35px 0;

  color: #293746;

  font-size: 1rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

  color: var(--navy);

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--copper);
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}


/* Hero artwork */

.hero-art {
  position: relative;

  width: min(100%, 550px);
  aspect-ratio: 1 / 1;

  margin-left: auto;
}

.art-circle {
  position: absolute;

  width: 72%;
  height: 72%;

  top: 13%;
  left: 14%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255,255,255,0.95),
      rgba(246,218,213,0.45) 55%,
      rgba(216,153,140,0.2)
    );

  box-shadow:
    0 40px 100px rgba(130, 71, 62, 0.1);
}

.monogram {
  position: absolute;

  top: 10%;
  left: 26%;

  color: transparent;

  font-family: var(--serif);
  font-size: 21rem;
  font-weight: 400;

  line-height: 1;

  -webkit-text-stroke: 2px var(--copper);

  text-shadow:
    5px 8px 0 rgba(183, 79, 64, 0.08);
}

.art-ring {
  position: absolute;

  border: 1px solid rgba(183, 79, 64, 0.6);

  border-radius: 50%;
}

.ring-one {
  width: 75%;
  height: 35%;

  top: 38%;
  left: 10%;

  transform: rotate(-25deg);
}

.ring-two {
  width: 65%;
  height: 27%;

  top: 47%;
  left: 20%;

  transform: rotate(30deg);
}

.art-branch {
  position: absolute;

  width: 150px;
  height: 300px;

  left: 4%;
  top: 25%;

  transform: rotate(-8deg);
}

.branch-stem {
  position: absolute;

  width: 2px;
  height: 270px;

  left: 50%;
  top: 15px;

  background: var(--copper);

  transform: rotate(-25deg);
  transform-origin: bottom;
}

.leaf {
  position: absolute;

  width: 55px;
  height: 25px;

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

  border-radius: 100% 0;

  background: rgba(183,79,64,0.05);
}

.leaf-one {
  top: 50px;
  left: 70px;
  transform: rotate(-30deg);
}

.leaf-two {
  top: 100px;
  left: 45px;
  transform: rotate(15deg);
}

.leaf-three {
  top: 145px;
  left: 70px;
  transform: rotate(-25deg);
}

.leaf-four {
  top: 190px;
  left: 42px;
  transform: rotate(15deg);
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
  position: relative;

  background: var(--white);

  border-top: 1px solid rgba(183,79,64,0.1);
  border-bottom: 1px solid rgba(183,79,64,0.1);
}

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

.value-card {
  position: relative;

  padding: 45px 30px;

  text-align: center;
}

.value-card:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 28%;
  width: 1px;
  height: 44%;

  background: var(--border);
}

.value-icon {
  margin-bottom: 15px;

  color: var(--copper);

  font-family: var(--serif);
  font-size: 2.7rem;

  line-height: 1;
}

.value-card h3 {
  margin-bottom: 10px;

  color: var(--navy);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.value-card p {
  color: var(--text-light);

  font-size: 0.82rem;
  line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

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

.services-grid {
  display: grid;

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

  gap: 20px;

  margin-top: 65px;
}

.service-card {
  position: relative;

  min-height: 330px;

  padding: 38px 32px;

  background: var(--white);

  border: 1px solid rgba(183,79,64,0.13);

  transition: var(--transition);

  overflow: hidden;
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: var(--copper);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.4s ease;
}

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

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  position: absolute;

  right: 25px;
  top: 20px;

  color: rgba(183,79,64,0.14);

  font-family: var(--serif);
  font-size: 3rem;
}

.service-icon {
  margin-bottom: 22px;

  color: var(--copper);

  font-family: var(--serif);
  font-size: 2.5rem;
}

.service-card h3 {
  margin-bottom: 12px;

  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;

  color: var(--navy);
}

.service-card p {
  color: var(--text-light);

  font-size: 0.83rem;
  line-height: 1.75;
}

.service-card a {
  display: inline-block;

  margin-top: 24px;

  color: var(--copper);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card a:hover {
  color: var(--copper-dark);
  transform: translateX(4px);
}

.center-button {
  text-align: center;
  margin-top: 55px;
}


/* =========================================================
   MISSION
========================================================= */

.mission-section {
  position: relative;

  background: var(--white);

  overflow: hidden;
}

.mission-background {
  position: absolute;

  inset: 0;

  opacity: 0.5;

  background:
    radial-gradient(
      ellipse at 50% 20%,
      rgba(238, 205, 201, 0.6),
      transparent 55%
    );
}

.mission-inner {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin: 0 auto;
}

.mission-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 75px;
  height: 75px;

  margin: 15px auto 35px;

  color: var(--copper);

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

  border-radius: 50%;

  font-size: 1.9rem;
}

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

.mission-copy p {
  max-width: 760px;

  margin: 0 auto 22px;

  color: var(--text-light);

  font-size: 0.95rem;
  line-height: 1.9;
}

.mission-copy .large-copy {
  color: var(--navy);

  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.55;
}

.mission-signature {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  margin-top: 45px;
}

.mission-signature > span {
  width: 70px;
  height: 1px;

  background: var(--copper);
}

.mission-signature div {
  display: flex;
  flex-direction: column;

  text-align: center;
}

.mission-signature strong {
  color: var(--copper);

  font-family: var(--serif);
  font-size: 1.2rem;
}

.mission-signature small {
  color: var(--text-light);

  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


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

.process-section {
  background: var(--blush);
}

.process-grid {
  display: grid;

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

  gap: 45px;

  margin-top: 65px;
}

.process-step {
  position: relative;

  text-align: center;

  padding: 10px 35px 25px;
}

.process-step:not(:last-child)::after {
  content: "→";

  position: absolute;

  right: -25px;
  top: 30px;

  color: var(--copper);

  font-size: 1.7rem;
}

.step-number {
  display: block;

  margin-bottom: 12px;

  color: var(--copper);

  font-family: var(--serif);
  font-size: 2.4rem;
}

.process-step h3 {
  margin-bottom: 10px;

  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;

  color: var(--navy);
}

.process-step p {
  color: var(--text-light);

  font-size: 0.85rem;
}


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

.contact-section {
  position: relative;

  padding: 110px 0;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #f8ebe8,
      #fffaf8
    );
}

.contact-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

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

  border-radius: 50%;

  background: rgba(209, 162, 153, 0.13);
}

.contact-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 0.8fr;

  align-items: center;

  gap: 90px;
}

.contact-content h2 {
  max-width: 600px;

  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);

  font-weight: 500;

  line-height: 0.9;

  color: var(--navy);
}

.contact-content h2 em {
  display: block;

  color: var(--copper);
  font-style: italic;
}

.contact-intro {
  margin-top: 30px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.5;
}

.contact-content > p:last-child {
  max-width: 570px;

  margin-top: 20px;

  color: var(--text-light);

  font-size: 0.9rem;
}

.contact-card {
  padding: 42px;

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

  border: 1px solid rgba(183,79,64,0.12);

  box-shadow:
    0 25px 70px rgba(11,30,46,0.1);

  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  align-items: center;

  gap: 22px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 52px;
  height: 52px;

  color: var(--white);

  background: var(--copper);

  border-radius: 50%;

  font-size: 1.1rem;
}

.contact-item span {
  display: block;

  margin-bottom: 3px;

  color: var(--navy);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  color: var(--text);

  font-family: var(--serif);
  font-size: 1.25rem;
}

.contact-item a:hover {
  color: var(--copper);
}

.contact-divider {
  height: 1px;

  margin: 28px 0;

  background: var(--border);
}

.full-button {
  width: 100%;

  margin-top: 35px;
}


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

.final-cta {
  color: var(--white);

  background: var(--navy);
}

.final-cta-inner {
  display: flex;
  align-items: center;

  gap: 30px;

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

.cta-symbol {
  color: var(--copper);

  font-size: 2rem;
}

.cta-eyebrow {
  display: block;

  margin-bottom: 5px;

  color: var(--copper-light);

  font-size: 0.63rem;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-cta h2 {
  font-family: var(--serif);

  font-size: 2.1rem;
  font-weight: 500;
}

.final-cta .button {
  margin-left: auto;
  flex-shrink: 0;
}


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

.site-footer {
  color: rgba(255,255,255,0.75);

  background: var(--navy-dark);
}

.footer-main {
  display: grid;

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

  align-items: center;

  gap: 30px;

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

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  color: var(--copper-light);
  border-color: var(--copper-light);
}

.footer-brand .brand-mark::before {
  border-color: var(--copper-light);
}

.footer-brand .brand-name {
  color: var(--copper-light);
}

.footer-brand .brand-subtitle {
  color: var(--white);
}

.footer-tagline {
  display: flex;
  flex-direction: column;

  align-items: center;

  color: var(--white);

  font-size: 0.65rem;

  letter-spacing: 0.15em;
}

.footer-tagline span {
  line-height: 1.8;
}

.footer-line {
  position: relative;

  width: 120px;
  height: 1px;

  margin-top: 12px;

  background: rgba(255,255,255,0.25);
}

.footer-line i {
  position: absolute;

  left: 50%;
  top: -3px;

  width: 7px;
  height: 7px;

  background: var(--copper);

  transform: rotate(45deg);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

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

  color: var(--white);

  font-size: 0.9rem;
  font-weight: 700;

  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 20px;
  padding-bottom: 20px;

  border-top: 1px solid rgba(255,255,255,0.1);

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

  font-size: 0.62rem;

  letter-spacing: 0.04em;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-art {
  animation: float 7s ease-in-out infinite;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

  .main-nav {
    gap: 18px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 5.5rem);
  }

  .monogram {
    font-size: 16rem;
  }

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

  .value-card:nth-child(2)::after {
    display: none;
  }

  .value-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

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

  .contact-grid {
    gap: 45px;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

  .section {
    padding: 80px 0;
  }


  /* Header */

  .site-header {
    padding: 17px 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;

    font-size: 3rem;
  }

  .brand-mark::before {
    width: 54px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-subtitle {
    font-size: 0.34rem;
  }

  .mobile-menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 82px;
    left: 4%;

    width: 92%;

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

    gap: 0;

    padding: 15px;

    background: var(--white);

    box-shadow: var(--shadow);

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

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition: var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 15px;

    border-bottom: 1px solid rgba(183,79,64,0.1);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;

    padding: 15px;

    text-align: center;
  }


  /* Hero */

  .hero {
    min-height: auto;

    padding: 140px 0 70px;
  }

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

    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .hero-description {
    font-size: 0.92rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  .hero-art {
    width: 75%;
    margin: 20px auto 0;
  }

  .monogram {
    font-size: 13rem;
  }


  /* Values */

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

  .value-card {
    padding: 35px 25px;
  }

  .value-card:not(:last-child)::after {
    display: none;
  }

  .value-card:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }


  /* Section headings */

  .section-heading h2 {
    font-size: clamp(3rem, 14vw, 4rem);
  }


  /* Services */

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

    margin-top: 45px;
  }


  /* Process */

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

    gap: 15px;
  }

  .process-step:not(:last-child)::after {
    content: "↓";

    right: auto;
    left: 50%;
    top: auto;
    bottom: -10px;

    transform: translateX(-50%);
  }


  /* Contact */

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

    gap: 45px;
  }

  .contact-content h2 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .contact-card {
    padding: 30px 25px;
  }


  /* CTA */

  .final-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .final-cta .button {
    margin-left: 0;
  }


  /* Footer */

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

    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 8px;

    text-align: center;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
