:root {
  --bg: #f8f3ed;
  --panel: #eee1d3;
  --paper: #fffaf5;
  --ink: #25221f;
  --muted: #766c62;
  --accent: #b7955e;
  --accent-dark: #876238;
  --line: rgba(135, 98, 56, 0.22);
  --shadow: 0 28px 70px rgba(58, 42, 28, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(183, 149, 94, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 38%, #f4eadf 100%);
  color: var(--ink);
  line-height: 1.65;
}

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

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

.site-header {
  min-height: 700px;
  padding: 30px min(5.6vw, 86px) 0;
  background:
    linear-gradient(90deg, rgba(250, 246, 240, 0.94) 0%, rgba(250, 246, 240, 0.84) 32%, rgba(250, 246, 240, 0.34) 56%, rgba(250, 246, 240, 0.08) 100%),
    url("assets/nord-studio-hero.png");
  background-position: center;
  background-size: cover;
}

.subpage-header {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 28px 0 90px;
}

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 112px;
  max-height: 84px;
  object-fit: contain;
}

.site-header .brand img {
  width: 94px;
  max-height: 94px;
  padding: 10px;
  border-radius: 5px;
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 20px 46px rgba(61, 44, 31, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: rgba(37, 34, 31, 0.82);
  font-size: 0.98rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.mobile-back-link {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.concept-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(135, 98, 56, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.54);
  color: rgba(37, 34, 31, 0.82);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.concept-back:hover {
  transform: translateY(-2px);
  border-color: rgba(135, 98, 56, 0.38);
  background: rgba(255, 250, 245, 0.82);
}

.nav-cta,
.button.light {
  border: 1px solid rgba(37, 34, 31, 0.22);
  color: var(--ink);
  background: rgba(255, 250, 245, 0.36);
  backdrop-filter: blur(10px);
}

.button.dark {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.dark:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero {
  min-height: 470px;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 40px 0 44px;
}

.eyebrow,
.section-label {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.intro h2,
.section-heading h2,
.booking h2,
.hours h2,
.contact h2,
.subpage-hero h1,
.detail-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3.55rem, 6vw, 5.75rem);
  max-width: 640px;
  margin: 16px 0 30px;
}

.hero-copy > p:not(.eyebrow),
.intro > p,
.booking-copy p,
.contact p,
.subpage-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-copy > p:not(.eyebrow) {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.9;
  max-width: 610px;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-bar {
  margin: 0 calc(min(5.6vw, 86px) * -1);
  border-top: 1px solid rgba(135, 98, 56, 0.16);
  background: rgba(255, 250, 245, 0.7);
  backdrop-filter: blur(16px);
}

.trust-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-inner article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 26px 30px;
  border-left: 1px solid rgba(135, 98, 56, 0.18);
}

.trust-inner article:first-child {
  border-left: 0;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.trust-inner h2 {
  font-size: 1rem;
  line-height: 1.15;
  margin-bottom: 4px;
}

.trust-inner p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 94px 0;
}

.intro {
  text-align: center;
  max-width: 900px;
}

.intro h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 12px auto 22px;
}

.intro p {
  margin-inline: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2,
.booking h2,
.hours h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.service-card,
.booking-form,
.hours dl,
.detail-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 18px 42px rgba(58, 42, 28, 0.055);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card--image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.36s ease, transform 0.48s ease;
}

.service-card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(37, 34, 31, 0.08) 0%, rgba(37, 34, 31, 0.62) 100%),
    linear-gradient(90deg, rgba(255, 250, 245, 0.9) 0%, rgba(255, 250, 245, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.34s ease;
}

.service-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.service-card--image:hover,
.service-card--image:focus-within {
  transform: translateY(-6px);
  border-color: rgba(135, 98, 56, 0.36);
  box-shadow: 0 28px 70px rgba(58, 42, 28, 0.16);
}

.service-card--image:hover img,
.service-card--image:focus-within img,
.service-card--image:hover::before,
.service-card--image:focus-within::before {
  opacity: 1;
}

.service-card--image:hover img,
.service-card--image:focus-within img {
  transform: scale(1);
}

.service-content {
  position: relative;
  z-index: 4;
  pointer-events: none;
}

.service-card--image > p {
  position: relative;
  z-index: 4;
  pointer-events: none;
}

.service-card--image:hover span,
.service-card--image:focus-within span,
.service-card--image:hover h3,
.service-card--image:focus-within h3,
.service-card--image:hover p,
.service-card--image:focus-within p {
  color: #fffaf5;
  text-shadow: 0 2px 18px rgba(20, 16, 13, 0.35);
}

.service-card span,
.detail-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin: 58px 0 14px;
}

.service-card p,
.detail-card p,
.detail-card li {
  color: var(--muted);
}

.reviews {
  padding-top: 28px;
}

.reviews .section-heading > p {
  max-width: 420px;
  color: var(--muted);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 30px;
}

.stars {
  color: var(--accent-dark);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 26px;
}

.review-card > p {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.18;
}

.review-card footer {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 2px;
}

.review-card strong {
  font-size: 0.95rem;
}

.review-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--accent-dark);
  font-weight: 800;
  border-bottom: 1px solid rgba(135, 98, 56, 0.28);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.booking h2 {
  margin: 12px 0 20px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

.booking-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.hours {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.hours h2 {
  margin-top: 12px;
}

.hours dl {
  padding: 26px;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.hours dl div:last-child {
  border-bottom: 0;
}

dt {
  font-weight: 800;
}

dd {
  color: var(--muted);
}

.contact {
  text-align: center;
  padding: 72px;
  border-radius: 28px;
  background: var(--panel);
}

.contact h2 {
  max-width: 700px;
  margin: 10px auto 18px;
}

.contact p {
  margin: 0 auto;
}

.contact-actions {
  justify-content: center;
}

.footer {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer img {
  width: 92px;
}

.footer a {
  color: var(--accent-dark);
  font-weight: 800;
}

.subpage-hero {
  padding: 92px 0 28px;
  max-width: 820px;
}

.subpage-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  margin: 12px 0 20px;
}

.service-details {
  width: min(92%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.detail-card > img {
  height: 240px;
  border-radius: 14px;
  object-fit: cover;
  margin: -12px -12px 28px;
  width: calc(100% + 24px);
}

.detail-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(135, 98, 56, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.detail-toggle .toggle-text {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 18px 0 12px;
}

.detail-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.detail-card li {
  position: relative;
  padding-left: 22px;
}

.detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

.price-list {
  display: grid;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  border-top: 0 solid transparent;
  opacity: 0;
  transition: max-height 0.36s ease, opacity 0.25s ease, margin-top 0.25s ease, border-color 0.25s ease;
}

.detail-card.is-open .price-list {
  max-height: 440px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  opacity: 1;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(135, 98, 56, 0.14);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

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

@media (max-width: 860px) {
  .site-header {
    min-height: auto;
    padding: 18px 5% 0;
    background:
      linear-gradient(180deg, rgba(250, 246, 240, 0.74) 0%, rgba(250, 246, 240, 0.3) 28%, rgba(37, 34, 31, 0.34) 76%, rgba(37, 34, 31, 0.16) 100%),
      url("assets/nord-studio-hero.png");
    background-position: 58% center;
    background-size: cover;
  }

  .subpage-header {
    padding-bottom: 54px;
  }

  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .brand img {
    width: 90px;
  }

  .site-header .brand img {
    width: 76px;
    max-height: 76px;
    padding: 8px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.78);
    color: var(--ink);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 15px;
    height: 1px;
    background: currentColor;
  }

  .menu-toggle span {
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle span::before {
    top: -5px;
  }

  .menu-toggle span::after {
    top: 5px;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 250, 245, 0.94);
    box-shadow: 0 18px 42px rgba(58, 42, 28, 0.1);
  }

  .nav-links.is-open {
    display: grid;
    gap: 6px;
  }

  .nav-links a {
    padding: 10px 8px;
  }

  .nav-links .mobile-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 8px;
    padding: 0 14px;
    border: 1px solid rgba(135, 98, 56, 0.22);
    border-radius: 999px;
    background: rgba(135, 98, 56, 0.1);
    color: var(--accent-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-cta {
    display: none;
  }

  .concept-back {
    order: 4;
    width: 100%;
    min-height: 42px;
    background: rgba(255, 250, 245, 0.9);
  }

  .hero,
  .booking,
  .hours,
  .service-details {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 600px;
    padding: 82px 0 66px;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
    max-width: 520px;
  }

  .hero-copy > p:not(.eyebrow) {
    color: rgba(37, 34, 31, 0.78);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 460px;
  }

  .trust-bar {
    margin: 0 -5%;
  }

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

  .trust-inner article {
    min-height: 106px;
    padding: 22px;
    border-left: 0;
    border-top: 1px solid rgba(135, 98, 56, 0.16);
  }

  .trust-inner article:nth-child(odd) {
    border-right: 1px solid rgba(135, 98, 56, 0.16);
  }

  .trust-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    display: block;
  }

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

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

  .service-card {
    min-height: 230px;
    padding: 22px;
  }

  .service-card--image img,
  .service-card--image::before {
    opacity: 1;
  }

  .service-card--image img {
    transform: scale(1);
  }

  .service-card--image span,
  .service-card--image h3,
  .service-card--image p {
    color: #fffaf5;
    text-shadow: 0 2px 18px rgba(20, 16, 13, 0.35);
  }

  .service-card--image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .service-card--image .service-content,
  .service-card--image:hover .service-content,
  .service-card--image:focus-within .service-content {
    transform: none;
  }

  .service-card h3 {
    margin: 10px 0 8px;
    font-size: 1.7rem;
  }

  .service-card--image p {
    line-height: 1.45;
  }

  .booking-form,
  .detail-card {
    padding: 22px;
  }

  .detail-card > img {
    height: 210px;
    margin: -4px -4px 22px;
    width: calc(100% + 8px);
  }

  .review-card {
    min-height: auto;
    padding: 24px;
  }

  .review-card > p {
    font-size: 1.35rem;
  }

  .contact {
    padding: 44px 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    background-position: 62% center;
  }

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

  .nav {
    gap: 12px;
  }

  .hero {
    min-height: 690px;
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.65rem);
    line-height: 0.96;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-inner article {
    border-right: 0;
    min-height: auto;
  }
}
