:root {
  --black: #010101;
  --offblack: #141414;
  --white: #ffffff;
  --offwhite: #f2f2f2;
  --beige: #e8dbcb;
  --blue: #4690ff;
  --chalice: #ababab;
  --bwhite: #F7F7F7;
  --offwhite: #f0f0f0;
  --colorado-gold: #FFC633;
  --electric-black: #292929;
  --christmas-grey: #959595;

  --text: #010101;
  --muted: rgba(1, 1, 1, 0.68);
  --muted-2: rgba(242, 242, 242, 0.75);

  --shadow: 0 32px 66px rgba(207, 207, 207, 0.25);
  --shadow-dark: 0 16px 60px rgba(0, 0, 0, 0.45);

  --radius: 12px;
  --pad: clamp(16px, 4vw, 24px);

  --h1: clamp(34px, 4.4vw, 65px);
  --h2: clamp(28px, 3.2vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

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

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


.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--primary);
  color: #07070b;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  margin-left: 50px;
  gap: clamp(10px, 1.5vw, 18px);
}

.nav__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--offwhite);
  padding: 8px 6px;
  margin-right: 50px;
  border-radius: 10px;
  font-family: 'Gotham';
  transition: opacity 140ms ease;
}

.nav__link:hover {
  opacity: 0.85;
  color: #959595;
}

.nav__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(242, 242, 242, 0.16);
  background: rgba(242, 242, 242, 0.06);
  color: var(--offwhite);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 18px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  cursor: pointer;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--light {
  background: rgba(247, 247, 247, 0.98);
  color: var(--black);
}

.btn--dark {
  background: rgba(1, 1, 1, 0.98);
  color: var(--offwhite);
}

.btn--wide {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.48px;
  font-size: 12px;
}

.btn--link {
  background: transparent;
  border-color: transparent;
  color: var(--offwhite);
  text-decoration: underline;
  padding-inline: 0;
  font-weight: 500;
}

.btn--link-dark {
  color: var(--black);
}

.btn__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  height: 810px;
  color: var(--offwhite);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner1.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: all 0.3s ease-in;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 2, 2, 0.4);
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.hero__title {
  margin: 0 0 20px;
  font-size: var(--h1);
  max-width: 870px;
  line-height: 1.05;
  font-weight: 700;
  font-family: 'Gotham';
}

.hero__sub {
  margin: 20px 0 0;
  font-size: 20px;
  max-width: 760px;
  line-height: 1.35;
  font-weight: 500;
  font-family: 'Gotham';
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__controls {
  position: absolute;
  right: 80px;
  bottom: 66px;
  display: flex;
  gap: 12px;
}

.circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1.313px solid rgba(242, 242, 242, 0.65) !important;
  background: transparent;
  color: var(--offwhite);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.circle-btn--light {
  background: transparent;
  border-color: rgba(242, 242, 242, 0.9);
}

.circle-btn--ghost {
  border-color: rgba(69, 69, 69, 1);
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 74px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(242, 242, 242, 0.35);
}

.hero__dot.is-active {
  background: rgba(242, 242, 242, 0.9);
}

.section {
  padding: 74px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--offwhite);
  border: 1px solid rgba(1, 1, 1, 0.16);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.559px;
  text-transform: uppercase;
  color: #0c0e0f;
}

.h2 {
  font-size: var(--h2);
  margin: 18px 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.h2--tight {
  margin-top: 14px;
}

.p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--black);
}

.p--right {
  text-align: right;
  max-width: 420px;
}

.link {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.link--dark {
  color: var(--black);
}

.about {
  display: grid;
  grid-template-columns: 605px 1fr;
  gap: 60px;
  align-items: center;
}

.about__copy .btn {
  margin-top: 18px;
}

.about__media {
  position: relative;
  min-height: 520px;
}

.about__img {
  position: absolute;
  border-radius: 6px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about__img--c {
  width: 375px;
  height: 388px;
  right: 56px;
  top: 78px;
}

.about__img--b {
  width: 289px;
  height: 299px;
  right: 10px;
  top: 270px;
  transform: rotate(-16deg);
  position: absolute;
  z-index: 2;
}

.about__img--a {
  width: 289px;
  height: 299px;
  right: -54px;
  top: 0;
  transform: rotate(4.5deg);
  position: absolute;
  z-index: 3;
}

.section--beige {
  background: var(--beige);
  position: relative;
  margin-top: 100px;
}

.beige__sticker {
  position: absolute;
  left: 20px;
  top: -116px;
  width: 169px;
  opacity: 0.7;
  /* transform: rotate(46.94deg); */
}

.center {
  display: grid;
  place-items: center;
  text-align: center;
}

.center__lead {
  margin: 16px 0 0;
  max-width: 650px;
  font-size: 24px;
  line-height: 1.35;
}

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

.service {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
}

.service__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--offwhite);
  display: grid;
  place-items: center;
}

.service__icon img {
  max-height: 48px;
  width: auto;
}

.service__title {
  margin: 0 0 10px 15px;
  font-size: 20px;
  line-height: 1.4;
}

.service__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(12, 14, 15, 0.9);
}

.beige__foot {
  margin: 36px 0 0;
  text-align: center;
  font-size: 16px;
}

.arr__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.arr-card {
  padding: 32px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.arr-card__top {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
}

.arr-card__asset {
  width: 110px;
  height: 93px;
  object-fit: contain;
}

.arr-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: #0c0e0f;
}

.arr-card__desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--black);
  opacity: 0.95;
}

.arr-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.10);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  background: transparent;
}

.chip--dark {
  background: transparent;
}

.arr__cta {
  margin-top: 28px;
  display: grid;
  place-items: center;
}

.gallery__head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 18px;
}

.gallery__grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; */
  width: 100%;
  display: block;
  margin-top: 26px;
}

/* .gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 26px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
} */

.gallery__img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.suggest {
  position: relative;
  padding: 42px;
  overflow: hidden;
}

.suggest__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/gallery1.png");
  background-size: cover;
  background-position: center;
}

.suggest__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.suggest__inner {
  position: relative;
  display: grid;
  grid-template-columns: 568px 1fr;
  gap: 40px;
  align-items: start;
  padding: 44px 0;
}

.suggest__title {
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.8px;
  color: #e6e6e6;
  line-height: 1.05;
}

.suggest__text {
  margin: 16px 0 0;
  color: rgba(230, 230, 230, 0.8);
  font-size: 16px;
  line-height: 22px;
}

.suggest__form {
  display: grid;
  gap: 16px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(242, 242, 242, 0.15);
  background: rgba(0, 0, 0, 0.75);
  color: rgba(247, 247, 247, 0.9);
  outline: none;
  font-size: 16px;
}

input[type="email"]::placeholder,
textarea::placeholder {
  color: rgba(247, 247, 247, 0.6);
}

.footer {
  padding: 70px 0;
  background: var(--offblack);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__links {
  color: #e6e6e6;
  flex: 1 1 auto;
}

.footer__label {
  margin: 0;
  opacity: 0.6;
  font-size: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  font-size: 16px;
}

.footer__nav a {
  color: #e6e6e6;
  transition: all 0.3s ease-in;
}

.footer__nav a:hover {
  color: var(--christmas-grey);
}

.footer__meta {
  display: flex;
  gap: 146px;
  margin-top: 32px;
}

.footer__value {
  margin: 12px 0 0;
  font-size: 16px;
}

.footer__value a {
  transition: all 0.3s ease-in;
}

.footer__value a:hover {
  color: var(--christmas-grey);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo {
  height: 52px;
  width: auto;
}

.footer__copyright {
  margin: 0;
  font-size: 12px;
  opacity: 0.5;
  color: #e6e6e6;
  text-align: right;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(1, 1, 1, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

@media (max-width: 900px) {
  .hero {
    height: 760px;
  }

  .hero__controls {
    right: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(242, 242, 242, 0.10);
    background: rgba(1, 1, 1, 0.92);
    box-shadow: var(--shadow-dark);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__media {
    min-height: 420px;
  }

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

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

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

  .p--right {
    text-align: left;
  }

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

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

  .footer__brand {
    align-items: flex-start;
  }

  .footer__meta {
    gap: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/***** 02/02 *****/

/* Gallery page */
.page--gallery {
  background: #ffffff;
}

.gallery-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-page__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.gallery-page__search {
  width: min(391px, 100%);
}

.gallery-page__input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: none;
  padding: 0 16px;
  background: #f7f7f7;
  font-size: 16px;
  color: #010101;
}

.gallery-page__input::placeholder {
  color: #ababab;
}

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

.gallery-page__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 25px 52px rgba(207, 207, 207, 0.25);
}

@media (max-width: 900px) {
  .gallery-page__grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.page--contact {
  background: #ffffff;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
}

.contact__story {
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
  margin-top: 24px;
}

.contact__photo {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 25px 52px rgba(207, 207, 207, 0.25);
  object-fit: cover;
}

.contact__text .p {
  font-size: 18px;
  line-height: 26px;
}

.contact__em {
  font-weight: 600;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact__input {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid rgba(242, 242, 242, 0.15);
  background: #f7f7f7;
  padding: 16px;
  font-size: 16px;
  color: #010101;
}

.contact__input::placeholder {
  color: #ababab;
}

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

.contact__submit {
  margin-top: 4px;
}

.contact-map {
  padding: 0 0 80px;
}

.contact-map__inner {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 52px rgba(207, 207, 207, 0.25);
}

.contact-map__inner img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }

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

  .contact__row {
    flex-direction: column;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(1, 1, 1, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

@media (max-width: 900px) {
  .hero {
    height: 760px;
  }

  .hero__controls {
    right: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: min(var(--container), calc(100% - 2 * clamp(16px, 4vw, 28px)));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(242, 242, 242, 0.10);
    background: rgba(1, 1, 1, 0.92);
    box-shadow: var(--shadow-dark);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__media {
    min-height: 420px;
  }

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

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

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

  .p--right {
    text-align: left;
  }

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

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

  .footer__brand {
    align-items: flex-start;
  }

  .footer__meta {
    gap: 40px;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Text reveal animation */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger delays for cards */
.animate-stagger-1 {
  animation-delay: 0.1s;
}

.animate-stagger-2 {
  animation-delay: 0.2s;
}

.animate-stagger-3 {
  animation-delay: 0.3s;
}

.animate-stagger-4 {
  animation-delay: 0.4s;
}

/* Hero landing animations */
.hero__title {
  opacity: 0;
  animation: slideUp 1s ease-out 0.3s forwards;
}

.hero__sub {
  opacity: 0;
  animation: slideUp 1s ease-out 0.5s forwards;
}

.hero__actions {
  opacity: 0;
  animation: slideUp 1s ease-out 0.7s forwards;
}

.hero__controls {
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

.hero__dots {
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

/* Header fade in on load */
.header {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.1s forwards;
}

/* Text reveal utility */
.text-reveal {
  overflow: visible;
}

.text-reveal span {
  display: inline-block;
  white-space: pre-wrap;
}

.text-reveal-processed span {
  opacity: 0;
  transform: translateY(20px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Arrangements page */
.page--arrangements {
  background: #ffffff;
}

.arrangements-hero {
  position: relative;
  height: 269px;
  overflow: hidden;
}

.arrangements-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.arrangements-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.arrangements-hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f2f2f2;
  gap: 24px;
}

.arrangements-hero__title {
  max-width: 719px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.arrangements-hero__desc {
  max-width: 719px;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.tag--light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f2f2f2;
}

/* .arrangements-category {
  margin-bottom: 42px;
} */

.arrangements-category__head {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: flex-start;
}

.arrangements-category__icon {
  width: 110px;
  height: 93px;
  display: grid;
  place-items: center;
}

.arrangements-category__icon img {
  max-height: 100%;
  width: auto;
}

.arrangements-category__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #0c0e0f;
  margin: 0;
}

.arrangements-category__desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--black);
  opacity: 0.95;
  margin: 8px 0 0;
}

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

.arrangement-item {
  display: flex;
  padding: 18px 0;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.arrangement-item__top {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.arrangement-item__icon {
  width: 78px;
  height: 78px;
  border-radius: var(--radius);
  background: var(--beige);
  display: grid;
  place-items: center;
}

.arrangement-item__icon img {
  width: 50px;
  height: 50px;
}

.arrangement-item__title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: #0c0e0f;
  margin: 0;
}

.arrangement-item__tag {
  font-size: 14px;
  color: #010101;
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 6px;
}

.arrangement-item__desc {
  font-size: 14px;
  line-height: 22px;
  color: rgba(1, 1, 1, 0.6);
  margin: 12px 0 0;
}

.arrangement-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-direction: column;
}

.arrangement-item__price {
  display: flex;
  align-items: center;
  gap: 17px;
}

.arrangement-item__old-price {
  font-size: 18px;
  color: #ff5050;
  text-decoration: line-through;
}

.arrangement-item__new-price {
  font-size: 24px;
  font-weight: 700;
  color: #010101;
}

.arrangements-card__add-to-cart {
  display: flex;
  width: 170px;
  height: 48px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #010101;
  margin-top: 17px;
}

.arrangements-card__add-to-cart img {
  height: 20px;
  width: 20px;
  color: #010101;
}

.arrangements-category__cta {
  margin-top: 42px;
  display: grid;
  place-items: center;
}

.arrangements-category__browse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: #010101;
  text-decoration: underline;
}

.suggest--arrangements .suggest__bg {
  background-image: url("./assets/cc94923fd8e9dd26f93ffa6228b75d3d8e1694ca.png");
}

@media (max-width: 900px) {
  .arrangements-category__head {
    grid-template-columns: 1fr;
    text-align: center;
    place-items: center;
  }

  .arrangements-category__grid {
    grid-template-columns: 1fr;
  }

  .arrangement-item__top {
    grid-template-columns: 1fr;
    text-align: center;
    place-items: center;
  }
}

/* New styles for Sheet Music Product Page */

.product-page-hero {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.product-page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/4127d47fe3398742ced4fe96a6590d9d16388c1a.png");
  /* Placeholder, replace with actual image */
  background-size: cover;
  background-position: center;
}

.product-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7));
}

.product-page-hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #f2f2f2;
  gap: 10px;
}

.product-page-hero__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.product-page-hero__text {
  max-width: 740px;
  font-size: 14px;
  line-height: 1.6;
}

.product-page {
  background: #ffffff;
}

.product-container {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-gallery__main-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.product-gallery__thumb-img {
  width: 100%;
  height: 136px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.product-details__title {
  font-size: 36px;
  line-height: 28px;
  font-weight: 700;
  color: #0c0e0f;
  margin-top: 0;
  margin-bottom: 18px;
}

.product-details__description {
  font-size: 18px;
  line-height: normal;
  color: var(--black);
  opacity: 0.95;
  max-width: 527px;
  margin-bottom: 18px;
}

.product-details__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.product-details__rating-stars {
  width: 98.513px;
  /* Adjust as needed */
  height: 16px;
  /* Adjust as needed */
}

.product-details__reviews-count {
  font-size: 14px;
  font-weight: 700;
  color: rgba(1, 1, 1, 0.5);
}

.product-details__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.product-details__category-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  opacity: 0.8;
}

.product-details__category-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.product-details__tag {
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #010101;
}

.product-details__price {
  font-size: 28px;
  font-weight: 500;
  color: #010101;
  margin-top: 24px;
  margin-bottom: 24px;
}

.product-details__buy-btn {
  display: flex;
  width: 180px;
  height: 48px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--offblack);
  color: var(--offwhite);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.product-info-card {
  border: 1px solid #f7f7f7;
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}

.product-info-card__title {
  font-size: 18px;
  font-weight: 500;
  color: #010101;
  margin-top: 0;
  margin-bottom: 14px;
}

.product-info-card__description {
  font-size: 16px;
  line-height: 24px;
  color: rgba(1, 1, 1, 0.7);
  margin-bottom: 16px;
}

.product-info-card__spec {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.product-info-card__spec-label {
  font-size: 16px;
  color: rgba(1, 1, 1, 0.8);
}

.product-info-card__spec-value {
  font-size: 16px;
  font-weight: 400;
  color: #010101;
}

.product-reviews {
  padding: 74px 0;
}

.product-reviews__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.product-reviews__title {
  font-size: 24px;
  font-weight: 700;
  color: #010101;
  margin: 0;
}

.product-reviews__count {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.product-reviews__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.product-reviews__sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
  color: #010101;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.product-reviews__write-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.product-review-card {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.product-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.product-review-card__rating {
  width: 127px;
  height: 22.579px;
}

.product-review-card__date {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.product-review-card__user {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.product-review-card__user-name {
  font-size: 20px;
  font-weight: 700;
  color: #010101;
}

.product-review-card__user-icon {
  width: 24px;
  height: 24px;
}

.product-review-card__text {
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
}

.product-reviews__load-more {
  display: block;
  width: 230px;
  height: 52px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #010101;
  font-size: 16px;
  font-weight: 500;
  margin: 40px auto 0;
  cursor: pointer;
}

.related-products {
  padding: 74px 0;
}

.related-products__title {
  font-size: 28px;
  font-weight: 700;
  color: #010101;
  margin-top: 0;
  margin-bottom: 32px;
}

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

.related-product-card {
  display: flex;
  border: 1px solid rgba(1, 1, 1, 0.05);
  border-radius: var(--radius);
  background: var(--white);
  padding: 19px;
}

.related-product-card__image-wrapper {
  width: 75.164px;
  height: 75.164px;
  border-radius: var(--radius);
  background: var(--beige);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.related-product-card__image {
  width: 42px;
  height: 42px;
}

.related-product-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 19px;
  flex-grow: 1;
}

.related-product-card__title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: #0c0e0f;
  margin: 0;
}

.related-product-card__description {
  font-size: 14px;
  line-height: normal;
  color: rgba(1, 1, 1, 0.4);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.related-product-card__specs {
  display: flex;
  gap: 12px;
  align-items: center;
}

.related-product-card__spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-product-card__spec-label {
  font-size: 16px;
  color: rgba(1, 1, 1, 0.8);
}

.related-product-card__spec-value {
  font-size: 16px;
  color: #010101;
}

.related-product-card__price-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-end;
  margin-left: auto;
}

.related-product-card__price-row {
  display: flex;
  align-items: center;
  gap: 17px;
}

.related-product-card__old-price {
  font-size: 18px;
  color: #ff5050;
  text-decoration: line-through;
}

.related-product-card__new-price {
  font-size: 24px;
  font-weight: 700;
  color: #010101;
}

.related-product-card__add-to-cart {
  display: flex;
  width: 170px;
  height: 48px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #010101;
  cursor: pointer;
}

.related-product-card__add-to-cart img {
  height: 20px;
  width: 20px;
  color: #010101;
}

.related-products__view-more {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 48px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #010101;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  margin: 40px auto 0;
  cursor: pointer;
}

@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-gallery__thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-details__title {
    line-height: 1.2;
    font-size: 30px;
  }

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

  .product-reviews__actions {
    margin-left: 0;
    width: 100%;
  }

  .product-reviews__sort-btn,
  .product-reviews__write-btn {
    flex-grow: 1;
    justify-content: center;
  }

  .related-products__grid {
    grid-template-columns: 1fr;
  }
}

/* Checkout Page */
.page--cart {
  background: var(--white);
}

.cart__title {
  margin: 0 0 40px;
}

.cart__inner {
  display: grid;
  align-items: start;
}

.cart__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item__media {
  width: 80px;
  height: 80px;
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  align-items: center;
  border-radius: 12px;
  background-size: 100%;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
}

.cart-item__img {
  height: 50px;
}

.cart-item__details {
  flex-grow: 1;
}

.cart-item__name {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.cart-item__price {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
}

.cart-item__remove {
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: #FF5050;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.cart-item__remove:hover {
  opacity: 0.7;
}

.cart__summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart__summary-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.summary-row__label {
  color: var(--muted);
}

.summary-row__value {
  font-weight: 600;
}

.summary-row--total {
  font-size: 24px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-row--total .summary-row__label {
  color: var(--black);
  font-weight: 700;
}

.summary-row--total .summary-row__value {
  font-size: 28px;
  font-weight: 700;
}

.promo-form {
  margin-top: 8px;
}

.input-group {
  display: flex;
  align-items: center;
  background: #F7F7F7;
  border-radius: 12px;
  padding-inline: 16px 8px;
  height: 56px;
}

.input-icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
  margin-right: 12px;
}

.promo-input {
  flex-grow: 1;
  background: transparent;
  border: 0;
  height: 100%;
  outline: 0;
  font-size: 16px;
}

.btn--compact {
  padding: 8px 24px;
  font-size: 14px;
  height: 40px;
  border-radius: 8px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.email-input {
  width: 100%;
  background: #F7F7F7;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  outline: 0;
  transition: border-color 0.2s;
}

.email-input:focus {
  border-color: rgba(0, 0, 0, 0.1);
}

.field-hint {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.paypal-btn {
  width: 100%;
  background: #FFC439;
  border: 0;
  border-radius: 12px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.paypal-btn:hover {
  background: #f2ba32;
}

.paypal-btn__text {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.paypal-logo {
  height: 24px;
  width: auto;
}

@media (max-width: 900px) {
  .cart__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cart {
    padding-block: 20px 40px;
  }
}