:root {
  --bg: #f6f3ec;
  --paper: #ffffff;
  --ink: #111318;
  --ink-soft: #24272c;
  --muted: #686963;
  --line: #ded9cf;

  /* Premium GS Fine Arts accents */
  --copper: #c98b52;
  --copper-dark: #a96f3d;
  --sage: #9ba58d;
  --sage-light: #dfe4d8;

  --white: #ffffff;
  --max: 1200px;
}


/* ================= RESET ================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);

  font-family: "DM Sans", sans-serif;

  line-height: 1.55;
}

h1,
h2,
h3,
strong,
.brand {
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px max(24px, calc((100vw - var(--max)) / 2));

  background: rgba(246, 243, 236, 0.90);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(222, 217, 207, 0.8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  background: var(--ink);

  color: var(--copper);

  font-weight: 800;

  letter-spacing: -1px;

  transition: 0.3s ease;
}

.brand:hover .brand-mark {
  background: var(--copper);

  color: var(--ink);
}

.brand strong {
  display: block;

  font-size: 15px;
}

.brand small {
  display: block;

  font: 500 10px "DM Sans";

  letter-spacing: 1.2px;

  text-transform: uppercase;

  color: var(--muted);
}

.nav {
  display: flex;

  align-items: center;

  gap: 27px;

  font-size: 13px;

  font-weight: 600;
}

.nav a {
  position: relative;

  transition: 0.25s ease;
}

.nav a:not(.nav-cta)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;
  height: 1px;

  background: var(--copper);

  transition: 0.25s ease;
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;

  background: var(--ink);

  color: var(--white);

  transition: 0.25s ease;
}

.nav-cta:hover {
  background: var(--copper);

  color: var(--ink);
}

.menu-toggle {
  display: none;

  background: none;

  border: 0;

  color: var(--ink);

  font-size: 24px;

  cursor: pointer;
}


/* ================= HERO ================= */

.hero {
  max-width: var(--max);

  margin: auto;

  min-height: 720px;

  padding: 100px 24px 80px;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;

  color: var(--copper-dark);

  font-size: 11px;

  letter-spacing: 2.4px;

  font-weight: 800;
}

.hero h1 {
  margin: 0 0 28px;

  font-size: clamp(54px, 7vw, 94px);

  line-height: 0.93;

  letter-spacing: -5px;
}

.hero h1 span {
  color: var(--copper);
}

.hero-text {
  max-width: 580px;

  color: var(--muted);

  font-size: 17px;
}

.hero-actions {
  display: flex;

  gap: 12px;

  margin: 32px 0 48px;

  flex-wrap: wrap;
}


/* ================= BUTTONS ================= */

.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  border: 0;

  padding: 15px 20px;

  font: 700 13px "DM Sans";

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);

  color: var(--white);
}

.button-primary:hover {
  background: var(--copper);

  color: var(--ink);
}

.button-secondary {
  border: 1px solid var(--ink);

  background: transparent;

  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);

  color: var(--white);
}

.button-primary span {
  color: var(--copper);
}

.button-primary:hover span {
  color: var(--ink);
}


/* ================= TRUST ================= */

.trust-row {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  max-width: 590px;

  border-top: 1px solid var(--line);

  padding-top: 18px;

  gap: 15px;
}

.trust-row strong {
  display: block;

  font-size: 13px;
}

.trust-row span {
  display: block;

  color: var(--muted);

  font-size: 11px;

  margin-top: 3px;
}


/* ================= HERO VISUAL ================= */

.hero-visual {
  position: relative;

  min-height: 500px;
}

.glow {
  position: absolute;

  width: 360px;
  height: 360px;

  right: 15%;
  top: 10%;

  border-radius: 50%;

  background: var(--copper);

  filter: blur(80px);

  opacity: 0.20;
}

.showcase-card {
  position: absolute;

  background: var(--ink);

  color: var(--white);

  box-shadow:
    0 30px 70px rgba(17, 19, 24, 0.16);
}

.card-main {
  width: 75%;

  height: 390px;

  right: 3%;
  top: 45px;

  padding: 34px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  transform: rotate(2deg);

  background:
    linear-gradient(
      145deg,
      rgba(23, 25, 30, 0.55),
      rgba(14, 16, 20, 0.75)
    ),
    url('https://images.unsplash.com/photo-1496449903678-68ddcb189a24?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
}

.mini-label {
  font-size: 10px;

  letter-spacing: 2px;

  color: #aaa9a3;
}

.neon-word {
  font-family: "Manrope";

  font-size: clamp(55px, 7vw, 95px);

  font-weight: 800;

  line-height: 0.78;

  letter-spacing: -6px;

  color: var(--white);

  text-shadow:
    0 0 20px rgba(201, 139, 82, 0.45);
}

.card-footer {
  font-size: 9px;

  letter-spacing: 2px;

  color: #aaa9a3;
}

.card-small {
  width: 190px;

  height: 135px;

  padding: 18px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

/* INTERIOR IMAGE */

.card-one {
  left: 0;

  bottom: 40px;

  transform: rotate(-5deg);

  background: var(--sage);

  color: var(--ink);
}

/* EXTERIOR IMAGE */

.card-two {
  right: 0;

  bottom: -5px;

  transform: rotate(5deg);

  background: var(--copper);

  color: var(--ink);
}

.card-small span {
  font-size: 10px;
}

.card-small strong {
  font-size: 19px;
}

.card-small small {
  font-size: 8px;

  letter-spacing: 1px;
}


/* ================= MARQUEE ================= */

.marquee {
  overflow: hidden;

  background: var(--ink);

  color: var(--white);

  padding: 17px 0;

  white-space: nowrap;

  font: 700 12px "Manrope";

  letter-spacing: 1.7px;
}

.marquee div {
  animation: scroll 24s linear infinite;

  width: max-content;
}

.marquee span {
  color: var(--copper);

  padding: 0 20px;
}

@keyframes scroll {
  to {
    transform: translateX(-35%);
  }
}


/* ================= SECTIONS ================= */

.section {
  max-width: var(--max);

  margin: auto;

  padding: 120px 24px;
}

.section-heading {
  max-width: 670px;
}

.section-heading h2,
.story h2,
.quote-panel h2 {
  margin: 0 0 22px;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1;

  letter-spacing: -3px;
}

.section-heading > p:last-child {
  color: var(--muted);

  max-width: 590px;
}


/* ================= SERVICES ================= */

.service-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  margin-top: 60px;

  border-top: 1px solid var(--line);

  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 430px;

  padding: 28px;

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  position: relative;

  background: transparent;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover {
  background: var(--paper);

  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--ink);

  color: var(--white);
}

.service-number {
  font-size: 11px;

  color: var(--muted);
}

.featured .service-number {
  color: #aaa9a3;
}

.service-thumb {
  width: 100%;

  height: 130px;

  margin-top: 16px;

  border-radius: 3px;

  background-size: cover;

  background-position: center;

  background-color: var(--line);
}

.service-icon {
  font-size: 32px;

  margin: 14px 0 18px;

  color: var(--copper);
}

.featured .service-icon {
  color: var(--copper);
}

.service-card h3 {
  font-size: 23px;

  margin: 0 0 10px;
}

.service-card p {
  font-size: 13px;

  color: var(--muted);

  max-width: 270px;
}

.featured p {
  color: #b8b7b1;
}

.service-card a {
  position: absolute;

  bottom: 28px;

  font-size: 11px;

  font-weight: 700;

  transition: color 0.2s ease;
}

.service-card a:hover {
  color: var(--copper-dark);
}

.featured a:hover {
  color: var(--copper);
}


/* ================= WORK ================= */

.split {
  display: grid;

  grid-template-columns: 1fr 0.7fr;

  gap: 50px;

  align-items: end;

  max-width: none;
}

.work-grid {
  display: grid;

  grid-template-columns: 1.35fr 0.65fr;

  grid-template-rows: 330px 330px;

  gap: 14px;

  margin-top: 55px;
}

.work-item {
  position: relative;

  overflow: hidden;

  background: var(--ink);

  min-height: 250px;
}

.work-item.wide {
  grid-row: span 2;
}

.work-item::before {
  content: "";

  position: absolute;

  inset: 0;

  transition: 0.5s;
}

.work-item:hover::before {
  transform: scale(1.05);
}


/* LED */

.visual-led::before {
  background:
    linear-gradient(
      180deg,
      rgba(14, 16, 20, 0.15),
      rgba(14, 16, 20, 0.55)
    ),
    url('https://images.unsplash.com/photo-1496449903678-68ddcb189a24?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
}


/* INTERIOR */

.visual-interior::before {
  background:
    linear-gradient(
      180deg,
      rgba(20, 20, 18, 0.15),
      rgba(20, 20, 18, 0.55)
    ),
    url('https://images.unsplash.com/photo-1604328698692-f76ea9498e76?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
}


/* ACP */

.visual-acp::before {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.15),
      rgba(10, 10, 10, 0.55)
    ),
    url('https://images.unsplash.com/photo-1497465689543-5940d3cede89?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
}


/* PRINT */

.visual-print::before {
  background:
    linear-gradient(
      180deg,
      rgba(20, 16, 10, 0.15),
      rgba(20, 16, 10, 0.55)
    ),
    url('https://images.unsplash.com/photo-1718670013921-2f144aba173a?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
}

.work-overlay {
  position: absolute;

  inset: auto 0 0;

  padding: 28px;

  color: var(--white);

  background:
    linear-gradient(
      transparent,
      rgba(0, 0, 0, 0.82)
    );
}

.work-overlay span {
  font-size: 9px;

  letter-spacing: 1.5px;

  color: var(--copper);
}

.work-overlay h3 {
  font-size: 22px;

  margin: 7px 0 2px;
}

.work-overlay p {
  font-size: 11px;

  color: #ddd;

  margin: 0;
}


/* ================= PROCESS ================= */

.process {
  border-top: 1px solid var(--line);
}

.process-banner {
  width: 100%;

  height: 260px;

  margin-top: 40px;

  background:
    url('https://images.unsplash.com/photo-1567361809214-b97d828071d9?auto=format&fit=crop&w=1400&q=80')
      center / cover no-repeat;
}

.steps {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 0;

  margin-top: 60px;

  border-top: 1px solid var(--line);
}

.step {
  padding: 26px 25px 20px;

  border-right: 1px solid var(--line);
}

.step:first-child {
  border-left: 1px solid var(--line);
}

.step span {
  font-size: 11px;

  color: var(--copper-dark);
}

.step h3 {
  font-size: 21px;

  margin: 45px 0 10px;
}

.step p {
  font-size: 12px;

  color: var(--muted);
}


/* ================= STORY ================= */

.story {
  background: var(--ink);

  color: var(--white);

  display: grid;

  grid-template-columns: 1fr 1fr;
}

.story-image {
  min-height: 600px;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(48, 51, 47, 0.65),
      rgba(13, 15, 18, 0.85)
    ),
    url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1200&q=80')
      center / cover no-repeat;
}

.story-image::before {
  content: "";

  position: absolute;

  width: 55%;
  height: 55%;

  left: 20%;
  top: 18%;

  background:
    linear-gradient(
      135deg,
      var(--sage),
      #596151 60%,
      #1a1d1a
    );

  transform: rotate(-7deg);

  box-shadow:
    50px 50px 0 #242722;
}

.story-image::after {
  content: "GS";

  position: absolute;

  left: 28%;
  top: 29%;

  font: 800 120px "Manrope";

  color: var(--ink);
}

.story-image > span {
  position: absolute;

  bottom: 25px;
  left: 28px;

  font-size: 9px;

  letter-spacing: 2px;

  color: #aaa;
}

.story-copy {
  padding: 100px max(30px, 8vw) 100px 70px;

  align-self: center;
}

.story-copy h2 {
  color: var(--white);
}

.story-copy p {
  color: #aaa;

  max-width: 520px;
}

.text-link {
  display: inline-block;

  margin-top: 20px;

  font-size: 13px;

  font-weight: 700;

  border-bottom: 1px solid #777;

  padding-bottom: 6px;

  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--copper);
}


/* ================= QUOTE ================= */

.quote-section {
  padding-top: 110px;

  padding-bottom: 110px;
}

.quote-panel {
  background:
    linear-gradient(
      135deg,
      var(--sage-light),
      #d5dacd
    );

  padding: 65px;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 80px;
}

.quote-panel h2 {
  font-size: clamp(42px, 5vw, 65px);
}

.quote-panel .eyebrow {
  color: var(--copper-dark);
}

.quote-panel > div > p:last-child {
  max-width: 440px;

  color: #4e5149;
}

.quote-form {
  display: grid;

  gap: 16px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
}

.quote-form label {
  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1px;
}

input,
select,
textarea {
  width: 100%;

  margin-top: 7px;

  border: 1px solid rgba(17, 19, 24, 0.25);

  background: rgba(255, 255, 255, 0.55);

  padding: 14px;

  font: 500 13px "DM Sans";

  color: var(--ink);

  outline: none;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--copper);

  background: var(--white);
}

.form-note {
  font-size: 10px !important;

  color: #555 !important;

  margin: 0;
}


/* ================= FOOTER ================= */

.footer {
  background: #0d0f12;

  color: var(--white);

  padding:
    60px
    max(24px, calc((100vw - var(--max)) / 2));

  display: grid;

  grid-template-columns: 1.4fr 0.6fr 1fr;

  gap: 50px;

  position: relative;
}

.footer p {
  color: #aaa;

  font-size: 12px;

  max-width: 300px;
}

.footer .brand small {
  color: #888;
}

.footer-links {
  display: grid;

  align-content: start;

  gap: 10px;

  font-size: 12px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--copper);
}

.footer-contact {
  display: grid;

  align-content: start;

  gap: 10px;
}

.footer-contact span {
  font-size: 9px;

  color: #888;

  letter-spacing: 2px;
}

.footer-contact a {
  font: 600 15px "Manrope";

  color: var(--copper);
}

.footer-contact a:hover {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;

  border-top: 1px solid #303236;

  padding-top: 20px;

  color: #666;

  font-size: 10px;
}


/* ================= TABLET ================= */

@media (max-width: 850px) {

  .nav {
    display: none;

    position: absolute;

    top: 78px;

    left: 0;

    right: 0;

    background: var(--bg);

    padding: 22px;

    flex-direction: column;

    align-items: flex-start;

    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;

    padding-top: 70px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .quote-panel {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 420px;
  }

  .story-copy {
    padding: 70px 24px;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}


/* ================= MOBILE ================= */

@media (max-width: 560px) {

  .hero h1 {
    font-size: 52px;

    letter-spacing: -3px;
  }

  .hero {
    padding-left: 18px;

    padding-right: 18px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .card-main {
    height: 300px;

    width: 82%;

    padding: 23px;
  }

  .card-small {
    width: 150px;

    height: 110px;
  }

  .neon-word {
    font-size: 60px;
  }

  .section {
    padding: 80px 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;

    grid-template-rows:
      300px
      260px
      260px
      260px;
  }

  .work-item.wide {
    grid-row: auto;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-left: 1px solid var(--line);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    padding: 30px 22px;
  }

  .footer {
    grid-template-columns: 1fr;

    padding-left: 24px;

    padding-right: 24px;
  }
}


/* The important change is that the website now uses: */
/* 
**Deep Ink** — `#111318`
For the premium, professional foundation.

**Warm Ivory** — `#F6F3EC`
For a softer background than plain white.

**Copper Gold** — `#C98B52`
For your main brand accent, giving the site a connection to fabrication, architecture and craftsmanship.

**Muted Sage** — `#9BA58D`
For a natural secondary accent that prevents the copper from becoming overwhelming.

**Soft Stone** — `#E5E0D6`
For borders and subtle separation.

This should give GS Fine Arts a much more **premium architectural/design-studio feel** while still looking professional for signage, ACP, interiors, exteriors and printing.

Your existing `index.html` and `script.js` don't need to be changed for this colour redesign. */