:root {
  color-scheme: light;
  --ink: #211f24;
  --muted: #6d6470;
  --paper: #faf7f2;
  --surface: #ffffff;
  --rose: #8b5061;
  --rose-dark: #4a2530;
  --moss: #526b5d;
  --gold: #b98645;
  --line: #e6ddd5;
  --shadow: 0 20px 55px rgba(33, 31, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(31, 25, 29, 0.68);
  color: #fff;
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.brand-mark svg {
  width: 19px;
  height: 19px;
}

.brand-text {
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
}

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

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .active {
  opacity: 1;
}

.hero {
  display: grid;
  min-height: 84vh;
  padding: 112px 0 62px;
  place-items: end center;
  background:
    linear-gradient(90deg, rgba(32, 24, 29, 0.88), rgba(32, 24, 29, 0.52) 58%, rgba(32, 24, 29, 0.16)),
    url("assets/studio-nora-hero.jpg") center/cover;
  color: #fff;
}

.home-hero {
  min-height: 82vh;
  padding-bottom: 48px;
  place-items: end center;
  background:
    linear-gradient(90deg, rgba(32, 24, 29, 0.42), rgba(32, 24, 29, 0.14) 58%, rgba(32, 24, 29, 0.04)),
    linear-gradient(0deg, rgba(32, 24, 29, 0.68), rgba(32, 24, 29, 0.08) 45%, rgba(32, 24, 29, 0.02)),
    url("assets/studio-nora-hero.jpg") center/cover;
}

.hero.compact {
  min-height: 54vh;
  background:
    linear-gradient(90deg, rgba(32, 24, 29, 0.84), rgba(32, 24, 29, 0.54) 48%, rgba(32, 24, 29, 0.18)),
    linear-gradient(0deg, rgba(32, 24, 29, 0.38), rgba(32, 24, 29, 0.08)),
    url("assets/studio-nora-hero-clean.jpg") center/cover;
}

.hero.clean-hero {
  background:
    linear-gradient(90deg, rgba(32, 24, 29, 0.82), rgba(32, 24, 29, 0.48) 48%, rgba(32, 24, 29, 0.14)),
    linear-gradient(0deg, rgba(32, 24, 29, 0.36), rgba(32, 24, 29, 0.06)),
    url("assets/studio-nora-hero-clean.jpg") center/cover;
}

.hero-inner {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: minmax(0, 680px) minmax(280px, 360px);
  gap: 44px;
  align-items: end;
}

.hero-inner.single {
  grid-template-columns: minmax(0, 780px);
}

.home-hero .hero-inner {
  grid-template-columns: minmax(0, 620px);
}

.home-hero h1 {
  max-width: 680px;
  font-size: clamp(2.35rem, 6vw, 4.85rem);
  text-shadow: 0 3px 24px rgba(24, 19, 22, 0.52);
}

.home-hero .hero-copy {
  text-shadow: 0 2px 16px rgba(24, 19, 22, 0.55);
}

.hero-actions-only {
  display: flex;
  align-items: flex-end;
  min-height: 46vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f1c98f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 8vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button-primary {
  background: #fff;
  color: var(--rose-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-dark {
  background: var(--rose-dark);
  color: #fff;
}

.info-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-panel header {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.info-panel h2 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.info-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.details-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
}

.details-list strong {
  white-space: nowrap;
  color: #f1c98f;
  font-size: 0.82rem;
}

main {
  overflow: hidden;
}

section {
  padding: 76px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: 52px;
  align-items: start;
}

.section-label {
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.lead.extra-copy {
  margin-top: 16px;
}

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

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

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card-link:hover,
.card-link:focus-visible {
  border-color: rgba(135, 75, 94, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--rose);
}

.card:nth-child(2) svg {
  color: var(--moss);
}

.card:nth-child(3) svg {
  color: var(--gold);
}

.card:nth-child(4) svg {
  color: var(--rose-dark);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio {
  background: #ffffff;
}

.feature-band {
  background: #efe7df;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
}

.feature-copy p:not(.section-label) {
  margin-bottom: 18px;
  color: var(--muted);
}

.text-link {
  color: var(--rose-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.tick-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  min-height: 46px;
  padding: 13px 16px 13px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

.tick-list li::before {
  position: absolute;
  top: 13px;
  left: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rose-dark);
  color: #fff;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 18px;
  text-align: center;
}

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

.price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.price-strip span {
  color: var(--muted);
}

.price-strip strong {
  color: var(--rose-dark);
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 1;
}

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

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

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

.accessory-showcase .portfolio-card img {
  aspect-ratio: 1 / 1;
}

.two-card-showcase .portfolio-card img {
  aspect-ratio: 1 / 1;
}

.portfolio-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portfolio-image-link {
  display: block;
}

.portfolio-card h3 a {
  color: inherit;
  text-decoration: none;
}

.portfolio-card h3 a:hover,
.portfolio-card h3 a:focus-visible {
  color: var(--gold);
}

.portfolio-image-link:focus-visible,
.portfolio-card h3 a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.portfolio-card figcaption {
  padding: 18px;
}

.portfolio-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-feature {
  background: #fff;
}

.packaging-feature {
  background: var(--paper);
}

.image-feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.image-feature-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}

.feature-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.area-panel,
.note-panel,
.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 28px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.area-panel p,
.note-panel p,
.price-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-panel {
  background: #fff;
  box-shadow: var(--shadow);
}

.area-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.area-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.area-list strong {
  color: var(--rose-dark);
  white-space: nowrap;
}

.contact-band {
  background: var(--rose-dark);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: center;
}

.contact-band .section-label {
  color: #f1c98f;
}

.contact-band .lead {
  color: rgba(255, 255, 255, 0.76);
}

.contact-box {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-box a,
.contact-box strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.15rem, 4vw, 1.58rem);
  font-weight: 850;
  text-decoration: none;
}

.contact-box p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.social-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.social-link svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.social-link span {
  display: block;
  font-size: 1rem;
  font-weight: 850;
}

.social-link small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.contact-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.site-footer {
  padding: 26px 0;
  background: #181316;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 16px;
}

.footer-credit a {
  color: #f1c98f;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 1060px) {
  .grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-header {
    position: absolute;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 154px;
  }

  .hero.compact {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .feature-layout,
  .image-feature-layout,
  .image-feature-layout.reverse,
  .area-panel,
  .note-panel,
  .price-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .image-feature-layout.reverse > :first-child {
    order: 1;
  }

  .image-feature-layout.reverse > :last-child {
    order: 2;
  }

  .info-panel {
    max-width: 520px;
  }

  .grid,
  .grid-four,
  .portfolio-grid,
  .service-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero,
  section {
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .home-hero {
    display: block;
    padding-top: calc(100vw + 24px);
    padding-bottom: 28px;
    background:
      linear-gradient(0deg, rgba(32, 24, 29, 0.74), rgba(32, 24, 29, 0.1) 54%, rgba(32, 24, 29, 0)),
      url("assets/studio-nora-hero.jpg") top center / 100% auto no-repeat,
      #9b948a;
  }

  .home-hero .hero-inner {
    width: min(520px, calc(100% - 32px));
    margin: 0 auto;
  }

  .home-hero .hero-actions-only {
    display: block;
    min-height: 0;
  }

  .home-hero .actions {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.28rem, 13vw, 3.35rem);
  }

  .button {
    width: 100%;
  }

  .price-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .details-list li,
  .area-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
