/* Inner pages — Arnoosh static site */
.page-hero {
  position: relative;
  min-height: clamp(240px, 42vw, 380px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #1a0509;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 5, 9, 0.45) 0%, rgba(26, 5, 9, 0.78) 100%),
    linear-gradient(105deg, rgba(196, 15, 41, 0.35), transparent 55%);
}
.page-hero__inner {
  position: relative;
  padding: 7.5rem 0 2.8rem;
}
.page-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: center;
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
}
.page-hero .breadcrumb a:hover { color: #e2c98a; }
.page-hero .breadcrumb span { opacity: 0.45; }
.page-hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
}

.page-section {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
}
.page-section--ivory { background: var(--ivory, #f7f2ec); }
.page-section--white { background: #fff; }
.page-section--soft { background: var(--ivory-2, #efe7de); }

.page-intro {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}
.page-intro .eyebrow {
  display: inline-block;
  color: var(--crimson, #c40f29);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.page-intro h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--ink, #120c0e);
}
.page-intro p {
  margin: 0;
  color: var(--muted, #6b5f63);
  line-height: 1.9;
}

.prose {
  max-width: 48rem;
  color: var(--ink, #120c0e);
  line-height: 1.95;
}
.prose p { margin: 0 0 1.15rem; color: var(--muted, #6b5f63); }
.prose h2, .prose h3 {
  margin: 1.8rem 0 0.7rem;
  font-weight: 900;
  color: var(--ink, #120c0e);
}
.prose ul {
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.prose li {
  position: relative;
  padding-inline-start: 1.2rem;
  color: var(--muted, #6b5f63);
}
.prose li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson, #c40f29);
}

.content-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .content-grid--2 { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
  .content-grid--shop { grid-template-columns: 240px 1fr; gap: 2.2rem; }
  .content-grid--product { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 12, 14, 0.12);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}
.media-frame--wide img { aspect-ratio: 16 / 10; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
}
.chip-row span {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 15, 41, 0.08);
  color: var(--crimson, #c40f29);
  font-size: 0.82rem;
  font-weight: 700;
}

.info-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .info-cards--3 { grid-template-columns: repeat(3, 1fr); }
}
.info-card {
  padding: 1.4rem 1.3rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(18, 12, 14, 0.07);
}
.info-card i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(196, 15, 41, 0.1);
  color: var(--crimson, #c40f29);
  margin-bottom: 0.85rem;
}
.info-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 800;
}
.info-card p, .info-card a {
  margin: 0;
  color: var(--muted, #6b5f63);
  font-size: 0.92rem;
  line-height: 1.8;
}
.info-card a:hover { color: var(--crimson, #c40f29); }

/* Shop */
.shop-filters {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(18, 12, 14, 0.07);
  position: sticky;
  top: 5.5rem;
}
.shop-filters h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 800;
}
.shop-filters a {
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted, #6b5f63);
  transition: 0.2s ease;
}
.shop-filters a:hover,
.shop-filters a.is-active {
  background: rgba(196, 15, 41, 0.08);
  color: var(--crimson, #c40f29);
}
.shop-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 639px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .shop-card { border-radius: 16px; }
  .shop-card__body { padding: 0.85rem 0.8rem 1rem; gap: 0.4rem; }
  .shop-card__body h3 { font-size: 0.84rem; line-height: 1.4; }
  .shop-card__price { font-size: 0.88rem; }
  .shop-card__price del { font-size: 0.7rem; }
  .shop-card__badge { font-size: 0.64rem; top: 0.55rem; left: 0.55rem; padding: 0.2rem 0.5rem; }
}
@media (max-width: 400px) {
  .shop-grid { grid-template-columns: 1fr; }
}
.shop-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 12, 14, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: inherit;
  text-decoration: none;
}
.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 12, 14, 0.12);
}
.shop-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #efe7de;
  position: relative;
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.shop-card:hover .shop-card__media img { transform: scale(1.05); }
.shop-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--crimson, #c40f29);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}
.shop-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}
.shop-card__body h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
}
.shop-card__price {
  margin-top: auto;
  font-weight: 900;
  color: var(--ink, #120c0e);
}
.shop-card__price del {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted, #6b5f63);
}

/* Product detail */
.product-gallery {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(165deg, #fff8f6, #efe7de);
  border: 1px solid rgba(18, 12, 14, 0.06);
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.product-detail h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
}
.product-detail .price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1rem;
  margin: 1rem 0 1.4rem;
}
.product-detail .price-row strong {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--crimson, #c40f29);
  font-weight: 900;
}
.product-detail .price-row del {
  color: var(--muted, #6b5f63);
  font-size: 1rem;
}
.product-meta {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.6rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(247, 242, 236, 0.9);
}
.product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}
.product-meta span { color: var(--muted, #6b5f63); }
.product-meta b { font-weight: 800; }
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Blog archive */
.blog-archive {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .blog-archive { grid-template-columns: repeat(3, 1fr); }
}
.blog-archive .blog-card { height: 100%; }

.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.article-body {
  max-width: 46rem;
  margin-inline: auto;
}
.article-cover {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 20px 50px rgba(18, 12, 14, 0.12);
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.related-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 800px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-page-shell {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #1a0509;
  color: #fff;
  box-shadow: 0 30px 80px rgba(18, 12, 14, 0.16);
}
@media (min-width: 960px) {
  .contact-page-shell { grid-template-columns: 0.95fr 1.05fr; }
}
.contact-page-side {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background:
    linear-gradient(160deg, rgba(196, 15, 41, 0.55), rgba(26, 5, 9, 0.55)),
    url("../assets/images/gallery-tomatoes.jpg") center/cover;
  min-height: 320px;
}
.contact-page-side h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  max-width: 12ch;
}
.contact-page-form {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: #120c0e;
}
.contact-page-form h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.contact-page-form > p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.nav a.is-active { color: #fff; }
.nav a.is-active i { color: var(--gold-soft); opacity: 1; }
.header.is-scrolled .nav a.is-active { color: #fff; }
.header.is-scrolled .nav a.is-active i { color: var(--gold-soft); }

/* About video */
.about-video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #1a0509;
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 70px rgba(18, 12, 14, 0.16);
  isolation: isolate;
}
.about-video__poster,
.about-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-video__el {
  position: absolute;
  inset: 0;
  background: #000;
}
.about-video__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--crimson, #c40f29), #8e0a1d);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 16px 40px rgba(196, 15, 41, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-video__play:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 48px rgba(196, 15, 41, 0.55);
}
.about-video__play i { margin-inline-start: 3px; }
.about-video__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(26, 5, 9, 0.85));
  color: #fff;
}
.about-video__caption strong {
  font-size: 1.05rem;
  font-weight: 800;
}
.about-video__caption span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}
.about-video.is-playing .about-video__poster,
.about-video.is-playing .about-video__play,
.about-video.is-playing .about-video__caption { display: none; }

/* Contact lux */
.contact-lux {
  display: grid;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 12, 14, 0.06);
  box-shadow: 0 28px 70px rgba(18, 12, 14, 0.1);
}
@media (min-width: 980px) {
  .contact-lux { grid-template-columns: 1fr 1.05fr; }
}
.contact-lux__info {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background:
    linear-gradient(155deg, rgba(26, 5, 9, 0.88), rgba(196, 15, 41, 0.72)),
    url("../assets/images/hero-contact.jpg") center/cover;
  color: #fff;
}
.contact-lux__info .eyebrow { color: #e2c98a; }
.contact-lux__info h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
  max-width: 14ch;
  line-height: 1.35;
}
.contact-lux__lead {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 34ch;
}
.contact-lux__cards {
  display: grid;
  gap: 0.75rem;
}
.contact-lux__card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
  transition: background 0.25s ease, transform 0.25s ease;
}
.contact-lux__card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.contact-lux__card--static { cursor: default; }
.contact-lux__card--static:hover { transform: none; }
.contact-lux__card i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(226, 201, 138, 0.16);
  color: #e2c98a;
  flex-shrink: 0;
}
.contact-lux__card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.2rem;
}
.contact-lux__card span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
}
.contact-lux__form {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: #120c0e;
  color: #fff;
}
.contact-lux__form h3 {
  margin: 0 0 0.35rem;
  font-size: 1.3rem;
  font-weight: 800;
}
.contact-lux__form > p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
.contact-lux__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-lux__field {
  display: grid;
  gap: 0.35rem;
}
.contact-lux__field--full { grid-column: 1 / -1; }
.contact-lux__field span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.contact-lux__field input,
.contact-lux__field textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-lux__field input:focus,
.contact-lux__field textarea:focus {
  outline: none;
  border-color: rgba(226, 201, 138, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.contact-lux__field textarea { min-height: 120px; resize: vertical; }
.contact-lux__form .btn { width: 100%; margin-top: 1rem; justify-content: center; }
.contact-lux__form .form-note {
  color: #e2c98a;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

/* Contact map */
.contact-map {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .contact-map { grid-template-columns: 1.45fr 0.85fr; gap: 1.5rem; }
}
.contact-map__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(18, 12, 14, 0.08);
  box-shadow: 0 20px 50px rgba(18, 12, 14, 0.1);
  min-height: 280px;
  background: var(--ivory-2, #efe7de);
}
.contact-map__frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.contact-map__pin {
  position: absolute;
  top: 46%;
  left: 52%;
  transform: translate(-50%, -100%);
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  display: grid;
  place-items: center;
  background: var(--crimson, #c40f29);
  color: #fff;
  box-shadow: 0 12px 28px rgba(196, 15, 41, 0.4);
  animation: mapPin 2.4s ease-in-out infinite;
}
.contact-map__pin i { rotate: 45deg; font-size: 1.1rem; }
@keyframes mapPin {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, calc(-100% - 8px)); }
}
.contact-map__aside {
  padding: 1.6rem 1.5rem;
  border-radius: 24px;
  background: #1a0509;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-map__aside h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}
.contact-map__aside > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 0.95rem;
}
.contact-map__aside ul {
  margin: 0.4rem 0 0.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.contact-map__aside li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}
.contact-map__aside li i {
  color: #e2c98a;
  width: 1rem;
  text-align: center;
}
.contact-map__aside a:hover { color: #e2c98a; }
.contact-map__aside .btn { margin-top: auto; justify-content: center; }

@media (max-width: 759px) {
  .page-hero__inner { padding: 6.2rem 0 2.2rem; }
  .shop-filters { position: static; display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .shop-filters h3 { width: 100%; }
  .product-actions .btn { width: 100%; justify-content: center; }
  .contact-lux__fields { grid-template-columns: 1fr; }
  .about-video__play { width: 64px; height: 64px; font-size: 1.1rem; }
}
