@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; max-width: 100%; overflow-x: clip; }
img { max-width: 100%; }

:root {
  --font-body: 'Montserrat', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-hero: 'Playfair Display', Georgia, serif;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #f8fbfc 0%, #eef5f7 100%);
  color: #1f2a30;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(245, 247, 248, 0.55);
  z-index: -2;
}

.site-parallax-bg {
  position: fixed;
  inset: 0;
  background-image: url('/uploads/bg.png');
  background-position: center top;
  background-size: 100% auto;
  background-repeat: repeat-y;
  transform: translate3d(0, var(--bg-parallax-y, 0px), 0) scale(1.06);
  transform-origin: center top;
  opacity: 0.82;
  z-index: -3;
  pointer-events: none;
  will-change: transform;
}

a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.page > .container {
  max-width: 1200px;
}

.page .card {
  max-width: 1200px;
  margin: 0 auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(116, 165, 173, 0.25);
  background: rgba(245, 247, 248, 0.7);
  backdrop-filter: blur(8px);
  overflow: visible;
  font-family: var(--font-body);
}

.header-inner {
  height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #35535b;
  font-weight: 600;
  min-width: 0;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.nav-links a {
  white-space: nowrap;
  font-family: var(--font-body);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.admin-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #b9cfd5;
  border-radius: 10px;
  background: #fff;
  color: #35535b;
  font-size: 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lang-switch { display: flex; border: 1px solid #b9cfd5; border-radius: 999px; padding: 3px; gap: 2px; background: #fff; }
.lang-switch a { font-size: 12px; text-transform: uppercase; padding: 4px 8px; border-radius: 999px; }
.lang-switch a.active { background: #2f9aa1; color: #fff; }

@media (min-width: 981px) {
  .header {
    position: fixed;
    left: 0;
    right: 0;
  }

  .page {
    padding-top: 110px;
  }

  .brand-link {
    grid-column: 1;
  }

  .nav {
    grid-column: 2;
  }

  .header-tools {
    grid-column: 3;
  }
}

@media (max-width: 980px) {
  .header {
    position: fixed;
    left: 0;
    right: 0;
  }

  .header-inner {
    min-height: 54px;
    padding: 8px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: visible;
  }

  .brand-link {
    grid-column: 1;
    justify-self: start;
  }

  .brand-logo {
    height: 34px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-tools {
    grid-column: 2;
    justify-self: center;
    gap: 8px;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(116, 165, 173, 0.25);
    border-radius: 14px;
    background: rgba(245, 247, 248, 0.98);
    box-shadow: 0 10px 24px rgba(40, 68, 76, 0.14);
  }

  .header.is-open .nav {
    display: flex;
  }

  .nav-links {
    display: grid;
    gap: 4px;
    width: 100%;
    min-width: 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 2px;
    white-space: normal;
    text-align: left;
  }

  .nav-controls {
    display: none;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    gap: 8px;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    height: auto;
    max-height: 420px;
  }

  .page {
    padding-top: 86px;
  }
}

.page { padding: 24px 0 56px; }
.stack { display: grid; gap: 32px; }
.card {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.page,
.stack,
.hero-grid,
.hero-grid > div,
.about-layout,
.grid-2,
.grid-3,
.grid-4,
.hero-actions {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero-grid { display: grid; gap: 26px; align-items: center; min-height: auto; position: relative; }
@media (min-width: 900px){
  .hero-grid {
    grid-template-columns: minmax(360px, 610px) minmax(300px, 560px);
    grid-template-areas:
      "content image"
      "actions image";
    justify-content: space-between;
    align-items: center;
  }

  .hero-content {
    grid-area: content;
  }

  .hero-image {
    grid-area: image;
  }

  .hero-actions {
    grid-area: actions;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline {
    white-space: nowrap;
  }
}
.hero-grid > div:first-child { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.02;
  margin: 0;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}
.hero-subtitle { color: #567881; max-width: 620px; }
.hero-gift-note {
  margin: 6px 0 0;
  font-family: var(--font-hero);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.25;
  color: #2f9aa1;
  max-width: 620px;
}
.section-title,
.hero-subtitle {
  overflow-wrap: anywhere;
}
.btn {
  display: inline-flex; border: 0; cursor: pointer; border-radius: 999px;
  padding: 12px 18px; font-weight: 600; transition: .2s; background: #2f9aa1; color: #fff;
  text-align: center;
  white-space: normal;
}
.btn:hover { opacity: .9; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-outline {
  background: transparent;
  color: #2f9aa1;
  border: 1px solid #2f9aa1;
}

.btn-outline:hover {
  background: rgba(47, 154, 161, 0.08);
}
.hero-image { width: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 26px rgba(58, 115, 123, 0.16); position: relative; z-index: 1; }
.hero-image img { width: 100%; height: auto; max-height: 620px; object-fit: contain; display: block; margin: 0 auto; }

.hero-section { padding-top: 18px; }
.section-title {
  margin: 0 0 18px;
  font-size: 32px;
  color: #2f9aa1;
  line-height: 1.1;
}
.section-title-center { text-align: center; }
.muted { color: #5f7680; }
.grid-2 { display: grid; gap: 12px; }
.grid-3 { display: grid; gap: 12px; }
.grid-4 { display: grid; gap: 12px; }
@media (min-width: 760px){ .grid-2 { grid-template-columns: repeat(2,1fr);} .grid-3 { grid-template-columns: repeat(3,1fr);} .grid-4 { grid-template-columns: repeat(2,1fr);} }
@media (min-width: 980px){ .grid-4 { grid-template-columns: repeat(4,1fr);} }
.mini-card { border: 1px solid rgba(179, 212, 219, 0.65); background: rgba(255, 255, 255, 0.72); border-radius: 18px; padding: 16px; }
.art-card {
  border: 1px solid rgba(179, 212, 219, 0.65);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  will-change: transform;
}

.art-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .36s ease;
}
.art-body { padding: 12px; }
.form { display: grid; gap: 10px; }
.input, .select, .textarea {
  width: 100%; border-radius: 12px; border: 1px solid #bed6dc;
  background: #fff; color: #20353b; padding: 10px 12px;
}

.select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f9aa1' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
  max-width: 100%;
  min-width: 0;
}

.select:focus,
.input:focus,
.textarea:focus {
  outline: none;
  border-color: #76b7c0;
  box-shadow: 0 0 0 3px rgba(47, 154, 161, 0.14);
}

.select option {
  color: #20353b;
  background: #fff;
}
.textarea { min-height: 110px; resize: vertical; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip { border: 1px solid #c4d9df; background: #fff; border-radius: 999px; padding: 8px 12px; cursor: pointer; color: #2f4d55; }
.chip.active { background: #2f9aa1; color: #fff; }
.gallery-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(179, 212, 219, 0.65);
  background: rgba(255, 255, 255, 0.75);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  will-change: transform;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: rgba(245, 247, 248, 0.8);
  transition: transform .36s ease;
}
.gallery-item .meta { padding: 10px; }

@media (hover: hover) and (pointer: fine) {
  .art-card:hover,
  .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(43, 84, 92, 0.16);
    border-color: rgba(107, 170, 181, 0.65);
  }

  .art-card:hover img,
  .gallery-item:hover img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .art-card,
  .gallery-item,
  .art-card img,
  .gallery-item img {
    transition: none;
  }
}
.lightbox {
  position: fixed; inset: 0; background: rgba(30, 44, 49, 0.75);
  display: none; align-items: center; justify-content: center; padding: 16px; z-index: 80;
  overflow: hidden;
}
.lightbox.active { display: flex; }
.lightbox-content { width: min(94vw, 1100px); max-height: 92vh; border-radius: 16px; overflow: hidden; border: 1px solid #c1d9df; background: #fff; display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.lightbox-content img { width: 100%; max-height: 76vh; object-fit: contain; display: block; background: #eef5f7; margin: 0 auto; }
.lightbox-meta { padding: 14px; }
.lightbox-meta h3 { margin: 0 0 10px; color: #1f2a30; font-family: var(--font-body); font-weight: 700; }
.lightbox-meta p { margin: 0 0 10px; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td { border-bottom: 1px solid #d5e4e8; padding: 9px; text-align: left; vertical-align: top; }
.table-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; border: 1px solid #c7dce1; display: block; background: #fff; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-sm { border-radius: 8px; border: 1px solid #bdd6dc; background: #fff; color: #2b4b53; padding: 6px 10px; cursor: pointer; }
.btn-danger { border-color: #e1b3b3; color: #b14e4e; }
.notice { padding: 10px 12px; border-radius: 12px; background: #eff9fa; border: 1px solid #c7dfe4; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  z-index: 60;
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-fab-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  display: block;
}

.contact-fab {
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contact-fab-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-fab-menu {
  display: none;
  min-width: 140px;
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  background: #fff;
  border: 1px solid #c4d9df;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(43, 75, 83, 0.14);
}

.contact-fab-menu a {
  display: block;
  padding: 8px 12px;
  color: #2f4d55;
  border-bottom: 1px solid #e0ecef;
}

.contact-fab-menu a:last-child {
  border-bottom: 0;
}

.contact-fab-menu a:hover {
  background: #f1f8fa;
}

.contact-fab-wrap.active .contact-fab-menu {
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 640px);
  bottom: 16px;
  z-index: 95;
  border: 1px solid #c4d9df;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(43, 75, 83, 0.16);
  padding: 12px;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.cookie-banner.is-open {
  display: flex;
}

.cookie-banner-text {
  margin: 0;
  color: #2f4d55;
  font-size: 14px;
}

@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    display: grid;
    gap: 8px;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.about-content {
  display: grid;
  gap: 10px;
}

.about-layout {
  display: grid;
  gap: 26px;
  align-items: start;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(420px, 560px) minmax(420px, 560px);
    gap: 40px;
    justify-content: space-between;
    align-items: center;
  }

  .about-layout .about-photo-wrap {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
  }

  .about-layout .about-content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .about-layout .about-photo {
    height: 100%;
    min-height: 0;
    max-height: none;
  }
}

.about-content p {
  margin: 0;
  color: #344f57;
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
}

.about-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(57, 100, 107, 0.18);
}

.about-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  display: grid;
  gap: 10px;
}

.service-title {
  margin: 0;
  font-size: 22px;
  color: #2f6c76;
}

.service-desc {
  margin: 0;
  color: #3f5e66;
  line-height: 1.65;
}

.service-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: #406169;
}

.process-layout {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  gap: 12px;
}

.process-step {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.process-video-wrap {
  border: 1px solid rgba(179, 212, 219, 0.65);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  overflow: hidden;
}

.process-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  border: 0;
  object-fit: cover;
  background: #eef5f7;
}

@media (min-width: 900px) {
  .process-layout {
    grid-template-columns: minmax(280px, 420px) minmax(300px, 460px);
    align-items: stretch;
    justify-content: center;
  }

  .process-video {
    min-height: 100%;
  }
}

@media (max-width: 899px) {
  .about-photo-wrap {
    max-width: 460px;
    margin: 0 auto;
  }
}

.order-section {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  justify-self: stretch;
}

.order-form {
  width: min(100%, 620px);
  margin: 0 auto;
}

.order-form .btn {
  width: min(100%, 260px);
  justify-content: center;
  margin: 6px auto 0;
}

.order-btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

.order-form .btn.is-loading {
  position: relative;
  opacity: 0.92;
  pointer-events: none;
}

.order-form .btn.is-loading .order-btn-loader {
  display: inline-block;
  animation: order-spin .7s linear infinite;
}

@keyframes order-spin {
  to {
    transform: rotate(360deg);
  }
}

.order-form .textarea {
  resize: none;
}

.admin-login-form .btn {
  width: min(100%, 220px);
  justify-content: center;
  margin: 6px auto 0;
}

.admin-artwork-form .btn {
  width: min(100%, 260px);
  justify-content: center;
  justify-self: center;
  margin-top: 6px;
}

.admin-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #b9cfd5;
  border-radius: 999px;
  padding: 4px;
  background: #fff;
}

.admin-tab {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #35535b;
  transition: .2s;
}

.admin-tab.active {
  background: #2f9aa1;
  color: #fff;
}

.admin-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-dashboard .table-wrap {
  overflow: auto;
}

@media (max-width: 980px) {
  .admin-dashboard .grid-3 {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .admin-tab {
    text-align: center;
  }

  .admin-header-row {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-header-row .btn-sm {
    width: 100%;
    text-align: center;
  }
}

.order-section .notice {
  width: min(100%, 620px);
  margin: 0 auto 12px;
}

.order-success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(30, 44, 49, 0.56);
  padding: 16px;
  z-index: 90;
}

.order-success-modal.is-open {
  display: flex;
}

.order-success-dialog {
  width: min(92vw, 460px);
  border-radius: 16px;
  border: 1px solid #c7dfe4;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(42, 73, 81, 0.2);
  display: grid;
  gap: 14px;
}

.order-success-text {
  margin: 0;
  color: #2f4d55;
  font-weight: 600;
  text-align: center;
}

.order-success-dialog .btn {
  width: min(100%, 220px);
  margin: 0 auto;
  justify-content: center;
}

.pricing-wrap {
  overflow: auto;
  border: 1px solid #c0d9de;
  border-radius: 16px;
  background: #f8fcfd;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.pricing-table th,
.pricing-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #d3e4e8;
  text-align: left;
}

.pricing-table thead th {
  background: #e8f4f6;
  color: #265861;
  font-weight: 700;
}

.pricing-table tbody tr:nth-child(even) td {
  background: #f1f9fa;
}

.price-note {
  margin: 12px 0 0;
  color: #516e76;
  font-style: italic;
}

.shipping-grid {
  align-items: stretch;
}

.shipping-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.shipping-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.shipping-card .service-title {
  text-align: center;
}

.footer {
  color: #4d666e;
  font-size: 13px;
  padding: 32px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
  align-items: center;
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.footer-agency {
  color: #2f9aa1;
  font-weight: 700;
  text-decoration: none;
}

.footer-agency:hover {
  text-decoration: underline;
}

.socials-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.socials-label {
  color: #3e626a;
  font-weight: 600;
}

.socials-wrap a {
  color: #2f9aa1;
  font-weight: 600;
}

.socials-wrap a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .container {
    padding: 0 14px;
  }

  .card {
    overflow: hidden;
  }

  .page {
    padding: 82px 0 40px;
  }

  .stack {
    gap: 24px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .header-inner {
    min-height: 50px;
    padding: 6px 0;
  }

  .brand-logo {
    height: 30px;
  }

  .nav-links {
    font-size: 14px;
  }

  .header-tools {
    gap: 6px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-grid > .hero-actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-grid > .hero-actions > .btn,
  .hero-grid > .hero-actions > .btn-outline {
    width: 100% !important;
    max-width: none !important;
    justify-content: center;
    margin: 0;
  }

  .hero-title {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-image {
    border-radius: 14px;
  }

  .hero-image img {
    height: auto;
    max-height: none;
  }

  .about-layout {
    gap: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 260px));
    justify-content: center;
  }

  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 260px));
    justify-content: center;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
  }

  .about-photo {
    min-height: 260px;
  }

  .mini-card,
  .art-card {
    border-radius: 14px;
  }

  .pricing-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .pricing-table {
    min-width: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody {
    display: grid;
    gap: 10px;
  }

  .pricing-table tbody tr {
    display: grid;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #c0d9de;
    border-radius: 12px;
    background: #f8fcfd;
  }

  .pricing-table tbody td {
    display: grid;
    grid-template-columns: minmax(96px, 44%) minmax(0, 1fr);
    align-items: baseline;
    gap: 8px;
    padding: 0;
    border: 0;
  }

  .pricing-table tbody td::before {
    content: attr(data-label);
    color: #2f6c76;
    font-weight: 600;
  }

  .pricing-table tbody tr:nth-child(even) td {
    background: transparent;
  }

  .pricing-table tbody td:first-child {
    display: block;
    font-weight: 700;
    color: #265861;
    padding-bottom: 6px;
    margin-bottom: 2px;
    border-bottom: 1px solid #d3e4e8;
  }

  .pricing-table tbody td:first-child::before {
    display: none;
  }

  .pricing-table th {
    padding: 10px 12px;
    font-size: 14px;
  }

  .pricing-table tbody td {
    font-size: 14px;
  }

  .table {
    font-size: 13px;
  }

  .table th,
  .table td {
    padding: 8px;
  }

  .table-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .actions {
    gap: 6px;
  }

  .actions .btn-sm,
  .actions .btn-danger {
    width: 100%;
    text-align: center;
  }

  .order-section {
    max-width: 100%;
  }

  .order-form,
  .order-section .notice {
    width: 100%;
  }

  .order-form .select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .order-form .btn {
    width: min(100%, 260px);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .admin-dashboard .table-wrap {
    overflow: visible;
  }

  .admin-dashboard .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .admin-dashboard .table thead {
    display: none;
  }

  .admin-dashboard .table tbody {
    display: grid;
    gap: 10px;
  }

  .admin-dashboard .table tbody tr {
    display: grid;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #c0d9de;
    border-radius: 12px;
    background: #f8fcfd;
  }

  .admin-dashboard .table tbody td {
    display: grid;
    grid-template-columns: minmax(96px, 44%) minmax(0, 1fr);
    align-items: baseline;
    gap: 8px;
    padding: 0;
    border: 0;
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .admin-dashboard .table tbody td::before {
    content: attr(data-label);
    color: #2f6c76;
    font-weight: 600;
  }

  .admin-dashboard .table-thumb {
    width: 56px;
    height: 56px;
  }

  .admin-dashboard .table .actions {
    gap: 6px;
  }

  .admin-dashboard .table .actions .btn-sm,
  .admin-dashboard .table .actions .btn-danger {
    width: 100%;
    text-align: center;
  }

  .contact-fab-icon {
    width: 30px;
    height: 30px;
  }

  .contact-fab {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 12px;
  }

  .header {
    width: 100%;
    max-width: 100%;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .nav-links {
    font-size: 13px;
    gap: 6px 10px;
  }

  .lang-switch a {
    font-size: 11px;
    padding: 3px 6px;
  }

  .admin-icon {
    width: 18px;
    height: 18px;
  }

  .hero-title {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-image img {
    height: auto;
    max-height: none;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .featured-grid {
    grid-template-columns: minmax(0, 240px);
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 240px);
    justify-content: center;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table th {
    padding: 9px 10px;
    font-size: 13px;
  }

  .pricing-table tbody td {
    font-size: 13px;
  }

  .pricing-table tbody td {
    grid-template-columns: minmax(86px, 42%) minmax(0, 1fr);
    gap: 6px;
  }

  .btn {
    padding: 11px 16px;
  }

  .order-form .select {
    font-size: 16px;
  }

  .footer-grid,
  .socials-wrap {
    justify-content: center;
    text-align: center;
  }

  .contact-fab-menu {
    min-width: 126px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  .contact-fab-wrap {
    left: 14px;
    bottom: 14px;
  }

  .contact-fab {
    width: 44px;
    height: 44px;
  }

  .contact-fab-icon {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 981px) {
  .page {
    padding-top: 118px;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline {
    white-space: nowrap;
  }
}
