:root {
  --bg: #d8d8d2;
  --bg-alt: #efefe9;
  --bg-dark: #0f0f10;
  --panel: rgba(255, 255, 255, 0.54);
  --ink: #050505;
  --muted: rgba(5, 5, 5, 0.74);
  --line: rgba(5, 5, 5, 0.14);
  --line-strong: rgba(5, 5, 5, 0.8);
  --accent: #d8893d;
  --accent-soft: rgba(216, 137, 61, 0.16);
  --white: #fff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.siteHeader {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(216, 216, 210, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.headerInner {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr) auto 112px;
  gap: 18px;
  align-items: center;
}

.brand {
  display: grid;
  gap: 4px;
}

.brandName {
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brandTag {
  font-size: 0.84rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.03em;
}

.siteNav,
.headerSocials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.siteNav {
  justify-content: center;
  flex-wrap: wrap;
}

.headerSocials {
  justify-content: flex-end;
}

.navLink {
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.navLinkShop {
  color: var(--accent);
}

.navToggle {
  justify-self: end;
  width: 92px;
  height: 48px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.siteMain {
  padding-top: 82px;
}

.homeHero {
  padding: 32px 0 24px;
}

.heroLayout {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  min-height: calc(100svh - 140px);
}

.heroCopyWrap {
  display: grid;
  gap: 20px;
  align-self: center;
}

.heroEyebrow,
.sectionKicker,
.serviceLabel,
.galleryTag {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.heroEyebrow,
.galleryTag,
.serviceLabel {
  color: var(--accent);
}

.heroTitle {
  margin: 0;
  font-size: clamp(3.4rem, 7.8vw, 8.4rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.heroTitle span {
  display: block;
}

.heroBody {
  max-width: 34ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.heroActions,
.pictureDayActions,
.contactLinks {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.button,
.serviceButton,
.submitButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.buttonPrimary,
.serviceButton,
.submitButton {
  background: var(--ink);
  color: var(--white);
}

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

.heroTeaser {
  margin: 0;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.trustStrip {
  padding: 0 0 34px;
}

.trustGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trustItem,
.serviceCard,
.galleryCard,
.bookingForm,
.pictureDayCard,
.contactIntro,
.pricingNote {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.trustItem {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.trustItem strong {
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.trustItem span {
  font-size: 0.95rem;
  line-height: 1.36;
  color: var(--muted);
}

.section {
  padding: 88px 0;
  scroll-margin-top: 120px;
}

.sectionAlt {
  background: var(--bg-alt);
}

.sectionHead {
  margin-bottom: 30px;
}

.sectionTitle {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.aboutGrid {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.aboutCopy {
  display: grid;
  gap: 18px;
}

.aboutCopy p,
.serviceCard p,
.galleryMeta p,
.contactIntro p,
.pictureDayCard p,
.pricingNote p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.46;
  letter-spacing: -0.03em;
}

.aboutImageStack {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 18px;
}

.aboutImageStack img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

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

.serviceCard {
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.serviceCardAccent {
  background: linear-gradient(180deg, rgba(216, 137, 61, 0.14), rgba(255, 255, 255, 0.5));
}

.serviceCardNote {
  background: rgba(5, 5, 5, 0.04);
}

.serviceTop {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.serviceTop h3,
.galleryMeta h3 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.pricingNote {
  margin-top: 18px;
  padding: 18px 22px;
}

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

.galleryCard {
  overflow: hidden;
  display: grid;
}

.galleryCard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.galleryMeta {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.contactLayout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contactIntro,
.bookingForm,
.pictureDayCard {
  padding: 28px;
}

.contactIntro {
  display: grid;
  gap: 18px;
}

.contactIntro .sectionHead {
  margin-bottom: 0;
}

.contactPoints {
  display: grid;
  gap: 10px;
}

.contactLinks a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-weight: 700;
}

.bookingForm {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.fieldFull {
  grid-column: 1 / -1;
}

.control {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  outline: none;
  border-radius: 0;
}

.control:focus {
  border-color: var(--line-strong);
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.formActions {
  display: flex;
  justify-content: flex-start;
}

.pictureDayCardWide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.pictureDayPoints {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.siteFooter {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
}

.footerInner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.footerLinks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.navLink,
.navToggle,
.button,
.serviceButton,
.submitButton,
.galleryCard img,
.serviceCard,
.galleryCard,
.bookingForm,
.pictureDayCard,
.contactIntro,
.trustItem {
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.navLink:hover,
.contactLinks a:hover,
.footerLinks a:hover {
  opacity: 0.72;
}

.navToggle:hover,
.button:hover,
.serviceButton:hover,
.submitButton:hover {
  transform: translateY(-1px);
}

.serviceCard:hover,
.galleryCard:hover,
.bookingForm:hover,
.pictureDayCard:hover,
.contactIntro:hover,
.trustItem:hover {
  transform: translateY(-2px);
}

.galleryCard:hover img {
  transform: scale(1.02);
}

@media (max-width: 1240px) {
  .headerInner {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) 98px;
  }

  .headerSocials {
    display: none;
  }

  .heroLayout {
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  }

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

@media (max-width: 920px) {
  .shell {
    width: min(100%, calc(100% - 32px));
  }

  .headerInner {
    min-height: 76px;
    grid-template-columns: 1fr 96px;
  }

  .siteNav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(216, 216, 210, 0.98);
    border: 1px solid var(--line);
  }

  body.nav-open .siteNav {
    display: flex;
  }

  .siteMain {
    padding-top: 76px;
  }

  .homeHero {
    padding-top: 18px;
  }

  .heroLayout,
  .aboutGrid,
  .contactLayout,
  .pictureDayCardWide,
  .formGrid {
    grid-template-columns: 1fr;
  }

  .heroLayout {
    min-height: auto;
  }

  .heroCopyWrap {
    order: 2;
  }

  .heroTeaser {
    min-height: 360px;
    order: 1;
  }

  .heroBody,
  .sectionTitle {
    max-width: none;
  }

  .trustGrid,
  .serviceGrid,
  .galleryGridFeatured {
    grid-template-columns: 1fr;
  }

  .contactIntro,
  .bookingForm,
  .pictureDayCard {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .heroTitle {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
    line-height: 0.92;
  }

  .button,
  .serviceButton,
  .submitButton {
    width: 100%;
  }

  .serviceTop,
  .heroActions,
  .pictureDayActions,
  .contactLinks,
  .footerInner,
  .footerLinks {
    flex-direction: column;
    align-items: stretch;
  }

  .serviceTop {
    gap: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .navLink,
  .navToggle,
  .button,
  .serviceButton,
  .submitButton,
  .galleryCard img,
  .serviceCard,
  .galleryCard,
  .bookingForm,
  .pictureDayCard,
  .contactIntro,
  .trustItem {
    transition: none !important;
  }
}
