:root {
  --ivory: #f7f0e5;
  --paper: #fbf7ef;
  --card: #fffaf2;
  --card-deep: #efe4d6;
  --charcoal: #24211f;
  --charcoal-soft: #3b3632;
  --copper: #b66d45;
  --copper-deep: #86492f;
  --bronze: #d29a6b;
  --lavender: #d7c5da;
  --lavender-deep: #8f7590;
  --sage-shadow: rgba(76, 54, 43, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--ivory);
  background-image:
    linear-gradient(rgba(247, 240, 229, 0.5), rgba(247, 240, 229, 0.74)),
    url("Assets/textures/faint-noise-texture.png"),
    url("Assets/textures/warm-paper-texture.png");
  background-size: auto, 760px auto, 720px auto;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 16% 6%, rgba(215, 197, 218, 0.36), transparent 27%),
    radial-gradient(circle at 86% 18%, rgba(182, 109, 69, 0.15), transparent 25%),
    radial-gradient(circle at 48% 82%, rgba(255, 250, 242, 0.7), transparent 34%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--charcoal);
  border-radius: 999px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 22px 0;
}

.nav-wrap {
  width: min(var(--max), 100%);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 14px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(134, 73, 47, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(rgba(255, 250, 242, 0.88), rgba(255, 250, 242, 0.8)),
    url("Assets/textures/warm-paper-texture-card.png");
  background-size: cover;
  box-shadow: 0 18px 50px rgba(63, 43, 32, 0.12);
  backdrop-filter: blur(16px);
}

.brand-link {
  width: 196px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.contact-link:hover {
  color: var(--copper-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(105, 51, 28, 0.28);
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--copper-deep), var(--copper), var(--bronze));
  box-shadow: 0 14px 28px rgba(134, 73, 47, 0.22);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(134, 73, 47, 0.25);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.button-ghost {
  color: var(--charcoal);
  background: rgba(255, 250, 242, 0.58);
  box-shadow: none;
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
  scroll-margin-top: 128px;
}

.studio-board {
  padding-top: clamp(24px, 4.5vw, 48px);
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--copper-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  font-family: Charter, Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.35rem, 4.35vw, 4.1rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.26rem, 2vw, 1.8rem);
}

p {
  color: var(--charcoal-soft);
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(134, 73, 47, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 250, 242, 0.86), rgba(255, 250, 242, 0.92)),
    url("Assets/textures/warm-paper-texture-card.png");
  background-size: cover;
  box-shadow: 0 18px 56px var(--sage-shadow);
}

.bento-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("Assets/textures/faint-noise-texture.png");
  background-size: 560px auto;
  mix-blend-mode: multiply;
}

.dark-card {
  color: var(--paper);
  border-color: rgba(210, 154, 107, 0.34);
  background:
    linear-gradient(145deg, rgba(11, 10, 10, 0.97), rgba(44, 35, 34, 0.94)),
    url("Assets/backgrounds/about-me.png");
  background-size: 120% cover
  background-position: center top;
}

.dark-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";

  opacity: 0.34;
  background-image: url("Assets/backgrounds/about-me.png");
  background-size: cover;
  mix-blend-mode: screen;
}

.dark-card .card-kicker,
.dark-card .eyebrow {
  color: var(--bronze);
}

.dark-card p {
  color: rgba(251, 247, 239, 0.84);
}

.bento-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(98px, auto));
  gap: 18px;
}

.headline-card {
  grid-column: 6 / 13;
  grid-row: 2 / 6;
  padding: clamp(28px, 4.2vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.headline-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.brand-statement-card {
  grid-column: 1 / 6;
  grid-row: 2 / 6;
  min-height: 570px;
  display: grid;
  place-items: center;
  padding: 0;
  background: #030303;
}

.brand-statement-card img {
  position: relative;
  z-index: 1;
  width: min(610px, 116%);
  height: auto;
  max-width: none;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.52));
}

.brand-statement-card::before {
  display: none;
}

.compact-card,
.hero-work-card {
  padding: 26px;
}

.hero-work-card h2 {
  font-size: clamp(1.45rem, 2.15vw, 2.05rem);
}

.hero-work-card {
  grid-column: 6 / 13;
  grid-row: 4 / 6;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) 1fr;
}

.hero-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.95);
}

.hero-work-card div {
  padding: 24px;
  align-self: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.narrow-heading p:not(.eyebrow),
.portfolio-heading p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.05rem;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {

  padding: clamp(26px, 3vw, 34px);

  min-height: 330px;

  position: relative;

  padding-bottom: 70px;

}
.service-price {
  position: absolute;
  right: clamp(26px, 3vw, 34px);
  bottom: clamp(26px, 3vw, 34px);

  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a4a35;
}

.lavender-card {
  background:
    linear-gradient(rgba(245, 238, 246, 0.84), rgba(247, 240, 229, 0.88)),
    url("Assets/textures/warm-paper-texture-card.png");
}

.copper-card {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(235, 194, 166, 0.58)),
    url("Assets/textures/warm-paper-texture-card.png");
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: inset 0 0 0 1px rgba(134, 73, 47, 0.12);
}

.service-title-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.service-title-row .card-kicker {
  margin: 0;
}

.service-icon-wrap img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.values-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(134, 73, 47, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(rgba(255, 250, 242, 0.88), rgba(255, 250, 242, 0.78)),
    url("Assets/textures/warm-paper-texture-card.png");
  background-size: cover;
  box-shadow: 0 18px 48px rgba(76, 54, 43, 0.12);
  overflow: hidden;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 20px 24px;
}

.value-item + .value-item {
  border-left: 1px solid rgba(134, 73, 47, 0.14);
}

.value-icon {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  object-fit: contain;
}

.value-item div {
  min-width: 0;
}

.value-item h2 {
  margin: 0;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-item p {
  margin: 3px 0 0;
  font-size: 0.95rem;
}

.service-card h3 {
  margin-bottom: 14px;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  padding-top: 10px;
}

.project-tile {
  min-width: 0;
}

.portfolio-proof-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid rgba(134, 73, 47, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 250, 242, 0.8), rgba(255, 250, 242, 0.9)),
    url("Assets/textures/warm-paper-texture-card.png");
  background-size: cover;
  box-shadow: 0 18px 50px rgba(76, 54, 43, 0.13);
}

.project-image {

  aspect-ratio: 16 / 10;

  overflow: hidden;

  border: 1px solid rgba(134, 73, 47, 0.18);

  border-radius: 26px;

  background: var(--card-deep);

  box-shadow: 0 18px 48px rgba(76, 54, 43, 0.16);

  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;

}

.project-image-pair {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 10px;
  padding: 10px;
}

.project-tile:hover .project-image {
  transform: translateY(-4px);
  border-color: rgba(182, 109, 69, 0.56);
  box-shadow: 0 26px 56px rgba(76, 54, 43, 0.22);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.82) contrast(0.96);
  transition: transform 220ms ease, filter 220ms ease;
}

.project-image-pair img {
  border-radius: 18px;
}

.project-tile:hover .project-image img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.project-caption {
  padding: 22px 6px 4px;
}

.project-caption h3 {
  margin-bottom: 10px;
}

.scope-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.scope-list li {
  padding: 7px 10px;
  border: 1px solid rgba(134, 73, 47, 0.16);
  border-radius: 999px;
  color: var(--copper-deep);
  background: rgba(255, 250, 242, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concept-grid {
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.concept-swatch {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(134, 73, 47, 0.16);
  border-radius: 22px;
  background: var(--card-deep);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.4);
}

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

.mark-swatch {
  padding: 20px;
  background: rgba(36, 33, 31, 0.96);
}

.mark-swatch img {
  height: auto;
  object-fit: contain;
}

.atmosphere-swatch {
  background: #090807;
}

.atmosphere-swatch img {
  width: 145%;
  max-width: none;
  opacity: 0.92;
}

.detail-swatch {
  background: linear-gradient(135deg, var(--charcoal), #4a3345);
}

.detail-swatch img {
  opacity: 0.72;
  mix-blend-mode: screen;
}

.about-process-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.about-card,
.process-card {
  padding: clamp(32px, 4.5vw, 54px);
}

.about-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(18, 12, 28, 0.26), rgba(18, 12, 28, 0.62)),
    url("Assets/backgrounds/about-me.png") center / cover no-repeat;
  background-color: transparent;
  background-size: 112% 112%;
  background-position: center;
}

.about-card::before,
.about-card::after {
  display: none;
}

.about-card p {
  max-width: 720px;
  font-size: 1.05rem;
}

.process-card {
  background:
    linear-gradient(rgba(245, 238, 246, 0.76), rgba(255, 250, 242, 0.9)),
    url("Assets/textures/warm-paper-texture-card.png");
}

.process-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.process-list li {
  padding-top: 18px;
  border-top: 1px solid rgba(134, 73, 47, 0.18);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--copper-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin-bottom: 8px;
}

.contact-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
  scroll-margin-top: 128px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 34px;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(28, 25, 24, 0.94), rgba(44, 35, 34, 0.88)),
    url("Assets/backgrounds/copperline-footer-background-web.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 70px rgba(40, 30, 26, 0.24);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: url("Assets/textures/copper-speckle-overlay.png");
  background-size: cover;
  mix-blend-mode: screen;
}

.contact-copy,
.footer-row {
  position: relative;
  z-index: 1;
}

.contact-copy p {
  max-width: 630px;
  color: rgba(251, 247, 239, 0.86);
  font-size: 1.08rem;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy .button {
  margin-top: 20px;
}

.contact-smear {
  position: absolute;
  right: -80px;
  bottom: -24px;
  width: min(680px, 70vw);
  opacity: 0.42;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 18px 24px 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.footer-row span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link {
  color: var(--charcoal);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
}

@media (max-width: 1040px) {
  .bento-board {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(122px, auto);
  }

  .headline-card,
  .brand-statement-card {
    grid-column: span 4;
    grid-row: span 3;
  }

  .hero-work-card {
    grid-column: span 4;
    grid-row: span 2;
  }

  .about-process-grid,
  .portfolio-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    padding-inline: 14px;
  }

  .nav-wrap {
    border-radius: 28px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px;
  }

  .brand-link {
    width: 210px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding: 6px 0 2px;
    font-size: 0.76rem;
  }

  .button-small {
    width: 100%;
  }

  .section-pad {
    width: min(100% - 24px, var(--max));
    padding: 50px 0;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.85rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.85rem);
  }

  .bento-board,
  .portfolio-strip,
  .service-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .values-strip {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .value-item + .value-item {
    border-left: 0;
    border-top: 1px solid rgba(134, 73, 47, 0.14);
  }

  .headline-card,
  .brand-statement-card,
  .hero-work-card {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .brand-statement-card {
    min-height: 360px;
  }

  .brand-statement-card img {
    width: min(420px, 120%);
  }

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

  .hero-work-card img,
  .project-image {
    aspect-ratio: 1 / 1;
  }

  .service-card {
    min-height: 0;
  }

  .contact-section {
    width: min(100% - 24px, var(--max));
  }

  .contact-panel {
    padding: 30px 20px;
    border-radius: 26px;
  }
  .portfolio-link {

  color: inherit;

  text-decoration: none;

  cursor: pointer;

}

.portfolio-link:hover .concept-swatch {

  border-color: rgba(184, 104, 59, 0.48);

}

.portfolio-link:hover img {

  transform: scale(1.03);

}
.service-card {

  display: flex;

  flex-direction: column;

}

.service-price {

  margin-top: auto;

  align-self: flex-end;

  font-family: inherit;

  font-size: 0.9rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: #8a4a35;

}
.service-price {

  margin-top: auto;

  align-self: flex-end;

  padding-top: 2rem;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: #8b4b34;

}
.service-price {

  margin-top: auto;

  align-self: flex-end;

  padding-top: 2rem;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: #8b4b34;

  border-top: 1px solid rgba(139, 75, 52, 0.22);

}
}
