/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #9b7a44;
  --gold-hover: #846534;
  --dark: #1d1d1d;
  --mid: #666;
  --border: #ddd;
  --bg: #f7f4ef;
  --input-bg: #ffffff;
}

body {
  font-family: 'Lato', sans-serif;
  color: #2a2a2a;
  line-height: 1.5;
  background: #f5f2ed;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

a {
  color: #0095AB;
}

a:visited {
  color: #005D6C;
}

.work-button {
font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
  display: inline-block;
  width: fit-content;
  padding: 14px 28px;
  border: 2px solid #0095AB;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.work-button:visited {
  color: #ffffff;
}

.work-button:hover { 
  background: #0095AB;
  color: #ffffff;
}





/* TOP FOOTER BRAND */

.footer-brand {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.footer-brand h3 {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 700px;
  line-height: 1.8;
}


/* =========================
   NAVIGATION
========================= */
.nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  font-weight: bold;
  color: #222;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.nav-links a.active {
  font-weight: bold;
}


/* =========================
   HERO (PARALLAX)
========================= */
.hero {
  height: 60vh;
  min-height: 500px;
  background-image: url('/img/bedroom-wall-art-framing-toronto.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.35);
  padding: 40px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
}

/* =========================
   PREMIUM SPLIT SECTION
========================= */
.split {
  display: flex;
  height: 100vh;
}

.split-block {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: white;
}

/* IMAGE */
.split-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}

/* DARK OVERLAY (KEY) */
.split-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

/* CONTENT POSITION */
.split-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 40px;
  z-index: 2;
}

/* SMALL LABEL */
.label {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 15px;
}

/* MAIN HEADLINE */
.split-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.split-content p {
  font-size: 16px;
  max-width: 420px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* LINK */
.link {
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
}

.split-block,
.split-block:visited {
  color: white;
}

/* HOVER EFFECT */
.split-block:hover .split-img {
  transform: scale(1.08);
}


/* =========================
   STORY SECTION
========================= */

.story-section {
  background: #f5f2ed;
  text-align: center;
  padding: 120px 24px;
}

.story-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a67c2e;
  margin-bottom: 34px;
}

.story-heading {
  max-width: 1100px;
  margin: 0 auto 40px;

  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  color: #1d1b19;
  letter-spacing: -0.03em;
}

.story-heading span {
  display: block;
  color: #a67c2e;
  font-style: italic;
  font-weight: 400;
}

.story-text {
  max-width: 920px;
  margin: 0 auto;

  font-family: 'Lato', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #7b746d;
}


/* =========================
   TAGLINE
========================= */
.tagline {
  padding: 80px 20px;
  text-align: center;
  font-size: 20px;
  max-width: 700px;
  margin: auto;
}


/* =========================
   PARALLAX SECTION
========================= */
.parallax {
  height: 60vh;
  background-image: url('/img/sword-object-framing.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax .overlay {
  background: rgba(0,0,0,0.4);
  color: white;
  padding: 30px;
}


/* =========================
   CTA
========================= */
.cta {
  text-align: center;
  padding: 80px 20px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: black;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn:visited {
  color: white;
}

.btn:hover {
  opacity: 0.8;
}


/* =========================
   PAGE HERO (Projects etc.)
========================= */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 32px 56px;
  background: #f5f2ed;
}

.page-hero h4,
.eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #473214;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  color: #1c1a18;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.page-hero p,
.subheading {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: #473214;
  letter-spacing: 0.01em;
  max-width: 420px;
  margin: 0 auto;
}

/* =========================
   FEATURED PROJECTS HEADER
========================= */
.featured-projects-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 32px 56px;
  background: #f5f2ed;
}

.featured-projects-header .heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  color: #1c1a18;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.featured-projects-header .subheading {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: #473214;
}

.featured-projects-header {
  padding-bottom: 20px;
}

.project-category {
  padding: 10px 0 30px;
}

.project-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  padding: 0 5%;
  margin-top: 40px;
  margin-bottom: -25px;
}

/* PROJECTS GRID */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 60px 5%;
}

.projects-grid a {
  display: block;
  overflow: hidden;
  background: #f5f2ed;
}

.projects-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  cursor: pointer;

  transition: transform 0.4s ease;

  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.projects-grid a:hover img,
.projects-grid img:hover {
  transform: scale(1.03);
}

@media (max-width:768px) {

  .project-category h2 {
    font-size: 26px;
    margin-bottom: -35px;
  }
}

/* =========================
   GALLERY
========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  padding: 40px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}


/* =========================
   LIGHTBOX
========================= */
/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92%;
  max-height: 88%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: white;
  background: rgba(255,255,255,0.12);
  border: none;
  width: 54px;
  height: 54px;
  cursor: pointer;
  font-size: 28px;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width:768px) {

  .lightbox-prev,
  .lightbox-next {
    width: 46px;
    height: 46px;
  }

}


/* =========================
   FADE-IN ANIMATION
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   CONTACT PAGE
========================= */


/* PAGE */

.contact-page {
  background: var(--bg);
  min-height: 100vh;
  padding: 100px 24px;
}

.contact-page .container {
  max-width: 1320px;
  margin: 0 auto;
}

/* HEADER */

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid);
  font-family: 'Lato', sans-serif;
}

/* MAIN LAYOUT */

.contact-body {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 90px;
  align-items: start;
}

/* LEFT INFO */

.info-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.icon-wrap {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background: #ece4d7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 8px;
}

.info-text span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
}

/* SUCCESS MESSAGE */

.success-msg {
  display: none;
  margin-bottom: 30px;
  padding: 18px 22px;
  background: #edf7ed;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  color: #2f6a3a;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* FORM */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: span 2;
}

.field label {
  margin-bottom: 10px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  color: var(--dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 20px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  transition: all 0.25s ease;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7a7a7;
}

.field textarea {
  min-height: 220px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(155,122,68,0.08);
}

/* SELECT */

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #777;
  font-size: 18px;
}

.select-wrap select {
  cursor: pointer;
  color: #999;
}

.select-wrap select.selected {
  color: var(--dark);
}

/* BUTTON */

.contact-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;

  background: var(--gold);
  color: white;

  border: none;
  border-radius: 4px;

  padding: 18px 34px;

  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.25s ease;
}

.contact-page .btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  opacity: 1;
}

.contact-page .btn svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: white;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .contact-body {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================
   RESIDENTIAL
========================= */

.residential-inquiry {
  max-width: 700px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.residential-inquiry h2 {
  margin-bottom: 1rem;
}

.residential-inquiry p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mini-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-contact-form input {
  padding: 1rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
}

.contact-direct {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.contact-direct a {
  color: inherit;
  text-decoration: underline;
}

/* SERVICES GRID */

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}


/* =========================
   RESIDENTIAL HERO
========================= */

.residential-hero {
  position: relative;

  height: 92vh;
  min-height: 680px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-image: url('/img/bedroom-wall-art-framing-toronto.png');
  background-size: cover;
  background-position: center;
}

/* OVERLAY */

.residential-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.55) 35%,
      rgba(0,0,0,0.35) 55%,
      rgba(0,0,0,0.58) 100%
    );

  z-index: 1;
}

/* CONTENT */

.residential-hero-content {
  position: relative;
  z-index: 2;

  max-width: 720px;

  padding-left: 7%;
  padding-right: 24px;

  color: white;
}

/* LABEL */

.residential-label {
  font-family: 'Lato', sans-serif;

  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.82);

  margin-bottom: 28px;
}

/* HEADLINE */

.residential-hero-content h1 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(64px, 9vw, 110px);
  line-height: 0.95;
  font-weight: 600;

  color: #f5f1ea;

  margin-bottom: 28px;

  letter-spacing: -0.03em;
}

/* TEXT */

.residential-hero-content p {
  max-width: 560px;

  font-family: 'Lato', sans-serif;

  font-size: 22px;
  line-height: 1.7;

  color: rgba(255,255,255,0.9);

  margin-bottom: 38px;
}

/* BUTTON */

.residential-btn {
  display: inline-block;

  padding: 16px 34px;

  background: #a67c2e;
  color: white;

  text-decoration: none;

  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;

  letter-spacing: 1px;
  text-transform: uppercase;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.residential-btn:hover {
  transform: translateY(-2px);

  background: #8e6824;

  opacity: 1;
}

.residential-btn:visited {
  color: white;
}


/* =========================
   SERVICES
========================= */

.services-section,
.process-section,
.samples-section,
.residential-cta {
  padding: 50px 24px;
  background: #f5f2ed;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-intro h2,
.samples-content h2,
.residential-cta h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1d1d1d;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #a67c2e;
  margin-bottom: 16px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card,
.process-card {
  background: white;
  padding: 42px;
  border-radius: 4px;
}

.service-card h3,
.process-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card p,
.process-card p,
.process-intro,
.samples-content p,
.residential-cta p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

.samples-section {
  text-align: center;
  background: #ebe5dc;
}

.samples-content {
  max-width: 900px;
  margin: 0 auto;
}

.process-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #a67c2e;
  color: white;
  font-weight: bold;
  margin-bottom: 24px;
}

.residential-cta {
  text-align: center;

  max-width: 760px;
  margin: 0 auto;
}

.residential-cta .btn {
  margin-top: 30px;
}

/* =========================
   BUSINESS PAGE
========================= */

.industries-section,
.business-benefits,
.business-process {
  padding: 110px 24px;
  background: #f5f2ed;
}

/* INDUSTRIES */

.industries-grid {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.industry-card {
  background: white;
  padding: 36px;
  border-radius: 4px;
}

.industry-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.industry-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* BENEFITS */

.business-benefits {
  background: #ebe5dc;
}

.benefits-layout {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: start;
}

.benefits-left h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.benefits-text {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}

.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-item {
  background: white;
  padding: 24px 28px;
  font-size: 16px;
  line-height: 1.7;
  border-left: 4px solid #a67c2e;
}

/* PROCESS */

.business-process .process-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .business-process .process-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  /* GLOBAL */

  .hero {
    height: 78vh;
    min-height: 620px;

    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
  }

  /* NAVIGATION */

  .nav {
    padding: 14px 0;
  }

  .nav-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
  }

  .logo {
    font-size: 20px;
    text-align: center;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 11px;
    padding: 0 8px;
  }

  /* SPLIT */

  .split {
    flex-direction: column;
    height: auto;
  }

  .split-block {
    height: 75vh;
    min-height: 500px;
  }

  .split-img {
    position: absolute;
    inset: 0;
  }

  .split-content {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }

  .split-content h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .split-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* STORY */

  .story-section {
    padding: 72px 28px;
  }

  .story-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 24px;
  }

  .story-heading {
    margin-bottom: 24px;
  }

  .story-subheading {
    font-size: 18px;
    display: block;
    color: #a67c2e;
    font-style: italic;
    font-weight: 400;
  }

  .story-text {
    font-size: 16px;
    line-height: 1.75;
  }

  /* RESIDENTIAL HERO */

  .residential-hero {
    min-height: 720px;
    align-items: center;
    background-position: center;
  }

  .residential-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.78) 100%
      );
  }

  .residential-hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .residential-label {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .residential-hero-content h1 {
    font-size: clamp(56px, 18vw, 82px);
    line-height: 0.95;
  }

  .residential-hero-content p {
    font-size: 17px;
    line-height: 1.7;
  }

  .residential-btn {
    width: 100%;
    text-align: center;
  }

  /* SERVICES */

  .services-section,
  .process-section,
  .samples-section,
  .residential-cta,
  .industries-section,
  .business-benefits,
  .business-process {
    padding: 72px 24px;
  }

  .services-grid,
  .process-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-card,
  .industry-card {
    padding: 30px;
  }

  .service-card h3,
  .process-card h3,
  .industry-card h3 {
    font-size: 24px;
  }

  .benefits-left h2 {
    font-size: 42px;
  }

  /* CONTACT */

  .contact-page {
    padding: 56px 20px 72px;
  }

  .contact-header {
    margin-bottom: 42px;
  }

  .contact-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field.full {
    grid-column: span 1;
  }

  .contact-page .btn {
    width: 100%;
    padding: 16px;
  }

  .info-text strong {
    font-size: 18px;
  }

  .info-text span {
    font-size: 14px;
    line-height: 1.6;
  }

  .icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  /* CONTACT DETAILS */

  .contact-details {
    margin-top: -24px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-details a {
    color: inherit;
    text-decoration: none;
  }

  .contact-details a:hover {
    color: #a67c2e;
  }

  /* FOOTER */

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    width: 100%;
  }

  .footer-column {
    min-width: 0;
  }

  .footer-column p {
    margin-bottom: 1rem;
  }

  .site-footer {
    padding: 4rem 1rem 2rem;
    box-sizing: border-box;
  }

  .site-footer a,
  .site-footer a:visited {
    color: white;
  }

}



/* =========================
   FOOTER
========================= */

.site-footer {
  background: #473214;
  color: #f5f1ea;
  padding: 1rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.footer-column p,
.footer-column li,
.footer-column a {
  color: rgba(245, 241, 234, 0.85);
  line-height: 1.8;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column p {
  margin-bottom: 3rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);

  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 241, 234, 0.6);
}

