:root {
  --bg: #e9dfd3;
  --surface: rgba(255, 247, 240, 0.62);
  --surface-strong: rgba(255, 249, 244, 0.88);
  --text: #181410;
  --muted: #6a5b50;
  --line: rgba(38, 26, 17, 0.1);
  --accent: #8e5b36;
  --white: #fffaf5;
  --shadow: 0 24px 80px rgba(37, 24, 16, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(191, 149, 107, 0.36), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(72, 45, 29, 0.18), transparent 20%),
    linear-gradient(180deg, #f6efe7 0%, #e8ddcf 100%);
}

body:has(.lightbox[open]) {
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 82%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 22px auto 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(53, 35, 22, 0.08);
  border-radius: 999px;
  background: rgba(250, 244, 238, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(35, 21, 14, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #2c1d13, #9c6a41);
}

.brand-copy {
  display: grid;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.brand-copy strong {
  color: var(--text);
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #5c3921);
  box-shadow: 0 16px 32px rgba(92, 57, 33, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(92, 57, 33, 0.28);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 251, 247, 0.6);
  border: 1px solid rgba(53, 35, 22, 0.1);
  box-shadow: none;
}

.button-danger {
  background: linear-gradient(135deg, #9d4538, #6a241c);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 249, 243, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero,
.gallery-section,
.video-section,
.reviews-section,
.craft-section,
.collections-section,
.contact-section,
.admin-section {
  padding: 28px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-copy {
  position: relative;
  z-index: 10;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.craft-copy h2,
.contact-copy h2,
.hero-spotlight-copy h2,
.admin-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero h1,
.admin-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 6rem);
}

.hero-text,
.section-note,
.panel-note,
.admin-copy p,
.admin-item-meta p {
  max-width: 50ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.hero-stats,
.filter-row,
.craft-points,
.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-stats {
  margin-top: 34px;
}

.hero-stats div,
.admin-stats div {
  min-width: 150px;
  padding: 14px 16px 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats strong,
.admin-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.6rem;
}

.hero-stats span,
.admin-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  min-height: 720px;
}

.hero-spotlight,
.hero-stack img,
.collection-card,
.photo-card,
.craft-card,
.contact-panel,
.tool-card,
.admin-panel,
.admin-list-card,
.admin-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-spotlight {
  position: relative;
  min-height: 720px;
  background: #d8c3ad;
}

.hero-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 10, 0.03), rgba(16, 13, 10, 0.55));
  z-index: 1;
}

.glass-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 248, 242, 0.16);
  border-radius: 24px;
  color: var(--white);
  background: rgba(16, 13, 10, 0.34);
  backdrop-filter: blur(18px);
}

.hero-spotlight-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-spotlight-copy span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 242, 0.78);
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.hero-stack img {
  height: calc((720px - 36px) / 3);
  object-fit: cover;
}

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

.section-heading h2,
.craft-copy h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}


.craft-copy h2,
.contact-copy h2 {
  max-width: 12ch;
}

.section-heading h2 {
  max-width: none;
}

.section-note {
  max-width: 28ch;
  margin: 0;
  font-size: 0.92rem;
}

.favorites-title {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

.gallery-layout,
.admin-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
}

.gallery-results {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.gallery-results-block {
  display: grid;
  gap: 16px;
}

.results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

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

.reviews-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 20px;
}

.reviews-form-card {
  padding: 22px;
  border: 1px solid rgba(49, 33, 22, 0.08);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  align-self: start;
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(49, 33, 22, 0.1);
  border-radius: 16px;
  color: var(--text);
  background: var(--surface-strong);
  outline: none;
}

.review-form select:focus {
  border-color: rgba(142, 91, 54, 0.48);
  box-shadow: 0 0 0 4px rgba(142, 91, 54, 0.12);
}

.review-count-card {
  display: grid;
  gap: 12px;
  min-width: 240px;
  padding: 18px 20px;
  border: 1px solid rgba(49, 33, 22, 0.08);
  border-radius: 24px;
  background: rgba(255, 249, 243, 0.72);
  box-shadow: var(--shadow);
  text-align: left;
}

.review-summary-top {
  display: grid;
  gap: 4px;
}

.review-count-card strong {
  font-size: 2rem;
  line-height: 1;
}

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

.review-breakdown {
  display: grid;
  gap: 8px;
}

.review-breakdown-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.review-breakdown-label,
.review-breakdown-value {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.review-breakdown-bar {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(49, 33, 22, 0.08);
}

.review-breakdown-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #c48732, #8e5b36);
}

.star-rating {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.star-button {
  padding: 0;
  border: 0;
  color: rgba(196, 135, 50, 0.28);
  font-size: 2rem;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.star-button.is-active {
  color: #c48732;
}

.star-button:hover,
.star-button:focus-visible {
  transform: translateY(-2px);
}

.reviews-list {
  display: block;
}

.reviews-box {
  display: grid;
  gap: 0;
  border: 1px solid rgba(49, 33, 22, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 243, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-card {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(49, 33, 22, 0.08);
  background: transparent;
  box-shadow: none;
  align-self: start;
}

.review-card:last-child {
  border-bottom: 0;
}

.review-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.review-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.review-stars {
  color: #c48732;
  font-size: 1rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.review-comment {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.review-comment.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-toggle {
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
}

.review-toggle:hover,
.review-toggle:focus-visible {
  text-decoration: underline;
}

.review-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.review-action-button {
  padding: 0;
  border: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
}

.review-action-button:hover,
.review-action-button:focus-visible {
  text-decoration: underline;
}

.review-action-delete {
  color: #9d4538;
}

.reviews-box,
.reviews-list .empty-state,
.review-card {
  min-height: 0;
}

.review-date {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(49, 33, 22, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #100d0b;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #100d0b;
}

.video-content {
  padding: 20px;
}

.video-content h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.video-content p {
  margin: 0;
  color: var(--muted);
  text-transform: capitalize;
}

.video-language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.language-chip {
  padding: 10px 14px;
  border: 1px solid rgba(49, 33, 22, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 246, 0.7);
  cursor: pointer;
}

.language-chip.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #5c3921);
}

.gallery-tools,
.admin-side {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 106px;
}

.tool-card,
.craft-card,
.contact-panel,
.admin-panel,
.admin-list-card {
  padding: 22px;
  border: 1px solid rgba(49, 33, 22, 0.08);
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.field-label {
  display: block;
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.dropzone {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px dashed rgba(49, 33, 22, 0.18);
  border-radius: 22px;
  background: rgba(255, 249, 244, 0.72);
  text-align: center;
}

.dropzone.is-dragover {
  border-color: var(--accent);
  background: rgba(255, 243, 232, 0.95);
}

.dropzone-title {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.dropzone-note,
.dropzone-file,
.upload-progress-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.dropzone-input {
  display: none;
}

.dropzone-button {
  justify-self: center;
}

select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(49, 33, 22, 0.1);
  border-radius: 16px;
  color: var(--text);
  background: var(--surface-strong);
  outline: none;
}

.upload-progress {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(49, 33, 22, 0.08);
}

.upload-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), #5c3921);
  transition: width 0.2s ease;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(49, 33, 22, 0.1);
  border-radius: 16px;
  color: var(--text);
  background: var(--surface-strong);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(142, 91, 54, 0.48);
  box-shadow: 0 0 0 4px rgba(142, 91, 54, 0.12);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 78px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(142, 91, 54, 0.12);
  cursor: pointer;
}

.filter-chip {
  padding: 10px 14px;
  border: 1px solid rgba(49, 33, 22, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 246, 0.7);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #5c3921);
}

.photo-form,
.admin-form {
  display: grid;
  gap: 12px;
}

.photo-form label,
.admin-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.photo-card {
  position: relative;
  cursor: pointer;
  background: #1a1511;
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 10, 0.02), rgba(16, 13, 10, 0.65));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.photo-card:hover::after,
.photo-card:focus-within::after {
  opacity: 1;
}

.photo-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.photo-card:hover .photo-overlay,
.photo-card:focus-within .photo-overlay {
  opacity: 1;
  transform: translateY(0);
}

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

.favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 1.1rem;
  background: rgba(255, 248, 242, 0.18);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.favorite-button.is-active {
  background: rgba(157, 69, 56, 0.82);
}

.favorite-button:hover,
.favorite-button:focus-visible {
  transform: translateY(-2px);
}

.photo-meta h3,
.lightbox-copy h3,
.admin-item-meta h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
}

.photo-meta p,
.lightbox-copy p {
  margin: 6px 0 0;
  color: rgba(255, 248, 242, 0.76);
  text-transform: capitalize;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 26px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed rgba(49, 33, 22, 0.18);
  background: rgba(255, 249, 243, 0.45);
}

.empty-state h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--text);
}

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

.craft-points {
  justify-content: flex-end;
  gap: 10px;
}

.craft-points span {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
}

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

.collection-card {
  position: relative;
  aspect-ratio: 1.35 / 1;
  min-height: 0;
}

.collection-card img,
.collection-card video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.collection-card video {
  display: block;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 10, 0), rgba(16, 13, 10, 0.68));
  pointer-events: none;
}

.collection-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

.collection-card.is-video-card {
  display: flex;
  align-items: stretch;
}

.collection-card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.collection-card-copy span {
  position: static;
}

.collection-card-copy p {
  margin: 0;
  color: rgba(255, 248, 242, 0.78);
  text-transform: capitalize;
}

.collection-card-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 248, 242, 0.16);
  border: 1px solid rgba(255, 248, 242, 0.18);
  backdrop-filter: blur(10px);
}

.collection-empty-state {
  grid-column: 1 / -1;
}

.collection-empty-state .button {
  margin-top: 16px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.site-footer {
  grid-column: 1 / -1;
  margin: 28px -22px -22px;
  padding: 44px 52px 24px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  color: #d6dde8;
  background: linear-gradient(180deg, #121927 0%, #080d16 100%);
  box-shadow: none;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1.05fr;
  gap: 40px;
  padding-bottom: 30px;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer-brand-column {
  gap: 18px;
}

.site-footer-column h3,
.site-footer-column h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer-brand-column h3 {
  color: #ffbf2e;
  font-size: 1.18rem;
}

.site-footer-links a,
.site-footer-column a,
.site-footer-bottom a {
  color: #a9b4c7;
  transition: color 0.2s ease;
}

.site-footer-column a:hover,
.site-footer-column a:focus-visible,
.site-footer-bottom a:hover,
.site-footer-bottom a:focus-visible {
  color: #ffffff;
}

.site-footer-column p,
.site-footer-bottom p {
  margin: 0;
  color: #a9b4c7;
  line-height: 1.6;
}

.site-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer-contact-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #ffbf2e;
  flex: 0 0 20px;
}

.site-footer-contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-contact-link:nth-of-type(3) .site-footer-contact-icon svg {
  fill: currentColor;
  stroke: none;
}

.site-footer-whatsapp-icon {
  width: 24px;
  height: 24px;
  color: #25d366;
}

.site-footer-whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.site-footer-whatsapp-icon svg path {
  fill: #ffffff;
}

.site-footer-whatsapp-icon svg circle {
  fill: #25d366;
}

.site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(142, 91, 54, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer-socials a:hover,
.site-footer-socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(142, 91, 54, 0.54);
}

.site-footer-bottom {
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(169, 180, 199, 0.18);
}

.site-footer-bottom p {
  text-align: center;
}

.contact-heading {
  grid-column: 1 / -1;
}

.contact-copy .panel-note {
  max-width: none;
  width: 100%;
  white-space: nowrap;
}

.contact-copy,
.contact-form {
  grid-column: 1 / -1;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
  width: 100%;
}

.contact-detail-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(49, 33, 22, 0.08);
  border-radius: 22px;
  background: rgba(255, 249, 244, 0.72);
}

.contact-detail-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail-card strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  align-items: flex-start;
}

.contact-detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #5c3921);
  box-shadow: 0 14px 28px rgba(92, 57, 33, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-detail-action:hover,
.contact-detail-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(92, 57, 33, 0.24);
}

.contact-detail-action-secondary {
  border: 0;
  color: var(--text);
  background: rgba(255, 249, 244, 0.72);
  box-shadow: none;
  cursor: pointer;
}

.contact-detail-action-secondary:hover,
.contact-detail-action-secondary:focus-visible {
  box-shadow: 0 12px 24px rgba(35, 21, 14, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  align-content: start;
  align-items: start;
  grid-auto-rows: min-content;
  margin-top: 0;
  justify-self: center;
  width: min(100%, 860px);
  text-align: center;
}

.contact-form label:last-of-type,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  margin: 4px 0 0;
  min-height: 1.5em;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  align-items: flex-start;
  text-align: left;
}

.contact-form label span {
  line-height: 1.1;
  margin: 0;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
}

.contact-form .button {
  min-height: 56px;
  padding: 0 22px;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.98rem;
  box-shadow: 0 12px 28px rgba(92, 57, 33, 0.2);
  justify-self: center;
}

.form-status.is-success {
  color: #2f6b3d;
}

.form-status.is-error {
  color: #9d4538;
}

.lightbox {
  width: min(92vw, 1180px);
  padding: 20px;
  border: 0;
  border-radius: 28px;
  background: rgba(18, 14, 11, 0.9);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
}

.lightbox::backdrop {
  background: rgba(8, 7, 6, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox img {
  max-height: 76vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 248, 242, 0.14);
  cursor: pointer;
}

.lightbox-copy {
  padding-top: 16px;
}

.admin-copy {
  margin-bottom: 24px;
}

.admin-list {
  display: grid;
  gap: 16px;
}

.admin-video-layout {
  margin-top: 24px;
}

.admin-gallery-page .admin-layout {
  grid-template-columns: 1fr;
}

.admin-gallery-page .admin-side {
  position: static;
}

.admin-gallery-page .reveal,
.admin-gallery-page .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.admin-gallery-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(49, 33, 22, 0.08);
  background: rgba(255, 249, 244, 0.72);
}

.admin-gallery-item img {
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
}

.admin-item-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.admin-item-meta h3 {
  color: var(--text);
}

.admin-item-meta p {
  margin: 6px 0 0;
}

.admin-item-category {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(142, 91, 54, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: capitalize;
}

.admin-like-badge {
  display: grid;
  place-items: center;
  min-width: 96px;
  padding: 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(157, 69, 56, 0.14);
  background: rgba(157, 69, 56, 0.08);
  color: var(--accent);
  text-align: center;
}

.admin-like-badge strong {
  font-size: 1.6rem;
  line-height: 1;
}

.admin-like-badge span {
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.headline-marquee {
  position: relative;
  z-index: 10;
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  margin-left: calc(50% - 50vw);
}

.headline-marquee h2 {
  position: relative;
  z-index: 10;
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  animation: fullRun 20s linear infinite;
  will-change: transform;
}

@keyframes fullRun {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1140px) {
  .hero,
  .gallery-layout,
  .video-grid,
  .reviews-layout,
  .reviews-list,
  .craft-card,
  .collections-grid,
  .contact-panel,
  .admin-layout,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-spotlight,
  .hero-spotlight img {
    min-height: 560px;
  }

  .hero-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stack img {
    height: 220px;
  }

  .gallery-tools,
  .admin-side {
    position: static;
  }

  .auth-motion-copy {
    border-radius: 28px;
  }

  .auth-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-showcase-main {
    min-height: 420px;
  }

  .auth-showcase-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 16px 16px;
  }

  .auth-showcase-stack img {
    height: 180px;
  }

  .auth-showcase-copy {
    right: 18px;
  }

  .site-footer-grid,
  .site-footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .craft-points {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--container));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 30px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .desktop-cta {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 6px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .site-footer {
    margin: 24px -22px -22px;
    padding: 32px 20px 18px;
  }

  .hero h1,
  .admin-copy h1 {
    max-width: none;
    font-size: clamp(3rem, 14vw, 5.6rem);
  }

  .hero-spotlight,
  .hero-spotlight img {
    min-height: 460px;
  }

  .hero-stack {
    grid-template-columns: 1fr;
  }

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

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .admin-gallery-item,
  .auth-showcase-stack {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 0;
  }

  .auth-motion-copy {
    padding: 14px 0;
  }

  .auth-motion-copy span {
    font-size: 1.02rem;
  }

  .auth-showcase-main {
    min-height: 320px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.single-line-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.moving-text {
  font-size: 48px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: italic;
}

.gallery-title-full {
  max-width: none !important;
  width: 100%;
  white-space: normal;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.05;
}


.gallery-title-full {
  max-width: none !important;
  width: 100%;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.gallery-heading-row {
  align-items: flex-start;
}

.gallery-heading-main {
  flex: 1;
  min-width: 0;
}

.craft-title-full {
  max-width: none !important;
  width: 100%;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.05;
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 150px);
  padding: 28px 0 40px;
}

.auth-background-slider,
.auth-background-overlay {
  position: fixed;
  inset: 0;
}

.auth-background-slider {
  z-index: -3;
  overflow: hidden;
}

.auth-background-track {
  display: flex;
  width: 400%;
  height: 100%;
  animation: authSlideShow 24s linear infinite;
}

.auth-background-slide {
  flex: 0 0 25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.95);
}

.auth-background-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.58), rgba(20, 14, 10, 0.26)),
    linear-gradient(180deg, rgba(246, 239, 231, 0.16), rgba(232, 221, 207, 0.34));
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  width: 100%;
  justify-items: center;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: min(100%, 605px);
  padding: 30px;
  border: 1px solid rgba(49, 33, 22, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 241, 0.82);
  box-shadow: 0 30px 90px rgba(20, 14, 10, 0.24);
  backdrop-filter: blur(18px);
}

.auth-card-wide {
  width: 100%;
}

.auth-motion-copy {
  width: min(100%, 860px);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border: 1px solid rgba(255, 248, 241, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(20, 14, 10, 0.28);
  box-shadow: 0 18px 40px rgba(20, 14, 10, 0.16);
  backdrop-filter: blur(14px);
}

.auth-motion-track {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  min-width: max-content;
  padding-left: 100%;
  animation: authMarquee 20s linear infinite;
}

.auth-motion-copy span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
}

.auth-motion-copy span::after {
  content: "•";
  margin-left: 46px;
  color: rgba(255, 248, 241, 0.52);
}

.auth-motion-copy span:last-child::after {
  content: "";
  margin-left: 0;
}

.auth-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.auth-title-single {
  white-space: nowrap;
}

.auth-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-otp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.auth-otp-button {
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.auth-reset-toggle {
  padding: 0;
  margin-top: 10px;
  border: 0;
  color: var(--accent);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  justify-self: start;
}

.auth-reset-form {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(49, 33, 22, 0.08);
}

.auth-alt-link {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.auth-alt-link a {
  color: var(--accent);
  font-weight: 600;
}

@keyframes authSlideShow {
  0%,
  20% {
    transform: translateX(0);
  }
  25%,
  45% {
    transform: translateX(-25%);
  }
  50%,
  70% {
    transform: translateX(-50%);
  }
  75%,
  95% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes authMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* Review button in nav (visible on all screen sizes) */
.nav-review-cta {
  background: linear-gradient(135deg, #c2761b, #8a4a17);
  color: #fff8eb !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 22px -10px rgba(140, 75, 25, 0.7);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.nav-review-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(140, 75, 25, 0.85);
}

/* ============================================================
   MOBILE PHONE BREAKPOINT (max-width: 600px)
   Aggressive mobile fixes so the site looks native on phones.
   ============================================================ */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  *, *::before, *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  body {
    font-size: 15px;
    line-height: 1.55;
  }

  /* Prevent any block from forcing horizontal scroll */
  .page-shell,
  main,
  section,
  header,
  footer,
  .site-footer,
  .hero,
  .gallery-section,
  .video-section,
  .reviews-section,
  .collections-section,
  .contact-section,
  .craft,
  .results {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden;
  }

  .page-shell {
    width: calc(100% - 12px);
    padding: 8px 14px 18px;
  }

  /* All headlines auto-shrink + wrap aggressively */
  h1, h2, h3, h4, h5,
  .gallery-title-full,
  .section-title,
  .contact-copy h2,
  .reviews-section h2,
  .hero h1 {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    hyphens: auto;
    line-height: 1.1 !important;
  }
  h1, .hero h1 { font-size: clamp(1.85rem, 7.8vw, 2.8rem) !important; }
  h2, .gallery-title-full, .section-title { font-size: clamp(1.45rem, 6.2vw, 2.2rem) !important; }
  h3 { font-size: clamp(1.15rem, 4.8vw, 1.6rem) !important; }
  h4 { font-size: clamp(1rem, 4.2vw, 1.25rem) !important; }
  p, li, a, span, label { word-break: break-word; overflow-wrap: anywhere; }

  /* Header & nav */
  .site-header {
    padding: 10px 12px;
    border-radius: 24px;
    gap: 10px;
  }
  .brand-mark { width: 38px; height: 38px; font-size: 14px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy span { font-size: 11px; }
  .site-header-actions { gap: 6px; }
  .site-header-actions .button { padding: 8px 14px; font-size: 13px; }

  /* Hero stack vertical */
  .hero,
  .hero-stack,
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .hero-spotlight, .hero-spotlight img {
    min-height: 280px !important;
    max-height: 70vh;
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .button { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 14px 22px; }

  /* Marquee */
  .headline-marquee .moving-text { font-size: 1rem; }

  /* Section padding */
  section { padding: 36px 0 !important; }

  /* Gallery grid → single column */
  .gallery-grid,
  .work-grid,
  .collections-grid,
  .videos-grid,
  .craft-grid,
  .admin-gallery-grid,
  .photo-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .gallery-card img,
  .photo-grid img {
    height: auto;
    width: 100%;
  }

  /* Video player */
  video, .video-player {
    width: 100%;
    height: auto;
  }

  /* Forms — contact form, review form, all forms */
  .contact-section,
  .reviews-section {
    padding: 32px 0 !important;
  }
  .contact-panel,
  .reviews-form-card {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
    gap: 14px;
    border-radius: 18px;
  }
  .contact-form,
  .review-form,
  .auth-card,
  form {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0;
    width: 100% !important;
  }
  .contact-form .field,
  .review-form .field,
  form .field,
  form label {
    grid-column: 1 / -1 !important;
    display: block;
    width: 100%;
  }
  input, textarea, select, .button {
    font-size: 16px; /* prevents iOS zoom on focus */
    width: 100%;
    box-sizing: border-box;
  }
  textarea { min-height: 110px; }
  .form-status, .contact-cta { width: 100%; }
  .contact-cta .button { width: 100%; text-align: center; }

  /* Review button in nav — make it stand out and full width */
  .nav-review-cta {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    padding: 10px 18px;
    font-size: 15px;
  }

  /* Footer */
  .site-footer {
    padding: 24px 16px;
    margin: 18px -14px -18px;
  }
  .site-footer .columns,
  .site-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  /* Admin / pasha pages */
  .admin-shell,
  .admin-panel,
  .admin-grid {
    grid-template-columns: 1fr !important;
  }
  .admin-stats { flex-wrap: wrap; }
  .admin-stat { flex: 1 1 calc(50% - 10px); }
  .admin-item-actions { flex-wrap: wrap; gap: 8px; }
  .admin-item-actions .button { flex: 1 1 100%; }

  /* Cards & spacing */
  .card, .featured-card { padding: 16px; }
  .featured-card { border-radius: 18px; }

  /* Hide noise/cursor effects on phones for performance */
  .noise { opacity: 0.4; }
}

/* Tiny phones (below 380px) */
@media (max-width: 380px) {
  .hero h1,
  .admin-copy h1,
  section h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem) !important;
  }
  .brand-copy { display: none; }
  .site-header { padding: 8px 10px; }
}
