:root {
  --color-red: #ed163c;
  --color-ink: #474747;
  --color-paper: #f0f0f0;
  --color-cream: #ffffff;
  --color-warm: #e8e6e3;
  --color-muted: #474747;
  --color-white: #ffffff;
  --shadow: 0 18px 50px rgba(36, 32, 33, 0.10);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Helvetica, Avenir, Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

ul {
  margin: 1rem 0 1.2rem;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.35rem;
}

button,
a.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 830px;
}

.section-pad {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-ink);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.45rem 0;
}

.brand {
  width: min(160px, 38vw);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-white);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.main-nav a:hover,
.main-nav a:focus {
  border-color: var(--color-red);
}

.hero {
  min-height: auto;
  display: block;
 position: relative;
  background:
    linear-gradient(rgba(210, 210, 210, 0.78), rgba(225, 225, 225, 0.80)),
    url("../images/hero-background-2.jpg") center center / cover no-repeat;
}

.hero.section-pad {
  padding-top: clamp(2rem, 3.5vw, 3.5rem);
  padding-bottom: clamp(3.5rem, 5.5vw, 5.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  line-height: 1.03;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 3.4rem);
  letter-spacing: -0.04em;
  max-width: 880px;
}

h2 {
  font-size: clamp(1.15rem, 2.1vw, 2.4rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  letter-spacing: -0.05em;
}

.lead,
.intro {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--color-ink);
}

.hero-copy p:not(.eyebrow) {
  max-width: 710px;
}

.hero-line {
  font-weight: 800;
  color: var(--color-red);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 2px solid var(--color-ink);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.button.secondary {
  background: transparent;
  color: var(--color-ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--color-ink);
  color: var(--color-white);
}

.simple-slideshow {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}

.square-slideshow {
  aspect-ratio: 1 / 1;
}

.simple-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.simple-slideshow img.is-active {
  opacity: 1;
}

.slideshow-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(71, 71, 71, 0.5);
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.slideshow-control:hover,
.slideshow-control:focus-visible {
  background: rgba(71, 71, 71, 0.94);
}

.slideshow-control.prev {
  left: 0.7rem;
}

.slideshow-control.next {
  right: 0.7rem;
}
.hero-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-white);
}

.hero-art .simple-slideshow {
  aspect-ratio: 1 / 1;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 18rem;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  background: rgba(87, 87, 87, 0.70);
  font-size: 0.82rem;
  color: var(--color-white);
}
.slide-note {
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 700ms ease;
}

img.is-active + .slide-note {
  opacity: 1;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
  max-width: 830px;
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-copy {
  max-width: 760px;
}

.headshot-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(36, 32, 33, 0.12);
  background: var(--color-cream);
  box-shadow: 0 12px 32px rgba(36, 32, 33, 0.06);
}

.headshot-placeholder img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.placeholder-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  background: rgba(251, 247, 242, 0.9);
  color: var(--color-muted);
  font-size: 0.82rem;
  text-align: center;
}
/* Order background image */
#order {
  background:
    linear-gradient(rgba(242, 242, 242, 0.6), rgba(242, 242, 242, 0.6)),
    url("../images/order-background.jpg") center center / cover no-repeat;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid rgba(36, 32, 33, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(36, 32, 33, 0.06);
}
/*
.offer-card.featured {
  border-color: rgba(237, 22, 60, 0.5);
  box-shadow: 0 20px 55px rgba(237, 22, 60, 0.12);
}
*/

.offer-image {
  aspect-ratio: 1 / 1;
  background: var(--color-cream);
}

.offer-image .simple-slideshow {
  width: 100%;
  height: 100%;
}

.offer-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
}

.offer-content .button {
  align-self: flex-start;
  margin-top: auto;
}

.price {
  font-weight: 900;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.meta-line {
  font-size: 0.92rem;
  color: var(--color-muted);
  border-top: 1px solid rgba(36, 32, 33, 0.12);
  padding-top: 0.8rem;
}

.process-section {
  background: var(--color-ink);
  color: var(--color-white);
}

.process-section .eyebrow {
  color: var(--color-red);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.process-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 900;
}

.process-grid h3 {
  font-size: 1.4rem;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-section {
  background:
    linear-gradient(rgba(219, 219, 219, 0.7), rgba(247, 247, 247, 0.7)),
    url("../images/contact-background.jpg") center center / cover no-repeat;
  color: var(--color-ink);
}

.contact-section .eyebrow {
  color: var(--color-red);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

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

.contact-helpful {
  margin: 1.35rem 0 1.6rem;
}

.contact-helpful h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.contact-helpful ul {
  margin-bottom: 0;
}

.contact-image-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: var(--color-ink);
  box-shadow: 0 12px 32px rgba(36, 32, 33, 0.08);
}

.contact-image-placeholder img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-image-placeholder .placeholder-caption {
  background: rgba(36, 32, 33, 0.82);
  color: rgba(255, 255, 255, 0.86);
}

.contact-section .button.primary {
  background: var(--color-ink);
  border-color: var(--color-ink);
}

.email-hint {
  margin-top: 1rem;
  color: var(--color-ink);
}


.site-footer {
  padding: 2rem 0;
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}
.social-icon {
  display: inline-block;
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-left: 0.35rem;
}


.footer-inner {
  display: grid;
  gap: 0.35rem;
}

.footer-inner p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: min(150px, 54vw);
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.4rem;
    font-size: 0.78rem;
  }

  .section-pad {
    padding: 3.4rem 0;
  }

  .hero.section-pad {
    padding-top: 1.7rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
  }

  .hero {
    min-height: auto;
  }
.process-grid {
    grid-template-columns: 1fr;
  }
}
