:root {
  --bg: #f4efe7;
  --surface: #fffdf9;
  --surface-2: #f8f4ee;
  --text: #17233b;
  --muted: #667086;
  --gold: #c89a2b;
  --gold-soft: #f2e4bf;
  --navy: #142846;
  --navy-2: #0e1f3a;
  --border: rgba(20, 40, 70, 0.08);
  --shadow: 0 24px 60px rgba(14, 31, 58, 0.08);
  --shadow-soft: 0 10px 28px rgba(14, 31, 58, 0.07);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 154, 43, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(20, 40, 70, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f3ea 0%, #f4efe7 100%);
}

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

.bg-page {
  min-height: 100vh;
}

.page-shell {
  width: min(1540px, calc(100% - 32px));
  margin: 18px auto 28px;
  padding-top: 108px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: visible;
  position: relative;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), transparent 22%);
  pointer-events: none;
}

.topbar,
.hero,
.trust-strip,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1540px, calc(100% - 32px));
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 44px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(14, 31, 58, 0.08);
  border-radius: 30px 30px 0 0;
}

.navbar-brand img {
  width: 170px !important;
  max-width: 100%;
  height: auto;
  transition: transform .3s ease;
}

.navbar-brand:hover img { transform: translateY(-2px); }

.topbar.is-sticky {
  box-shadow: 0 16px 42px rgba(14, 31, 58, 0.12);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(200, 154, 43, 0.14);
}

.topbar .navbar-nav .nav-link {
  color: var(--navy);
  font-weight: 600;
  opacity: 0.84;
}

.topbar .navbar-nav .nav-link:hover,
.topbar .navbar-nav .nav-link:focus {
  color: var(--gold);
  opacity: 1;
}

.topbar .navbar-nav .nav-link.active {
  color: var(--gold);
  opacity: 1;
}

.btn-brand {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(180deg, #173050 0%, #10223d 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(16, 34, 61, 0.18);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(16, 34, 61, 0.25);
}

.btn-brand-outline {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(200, 154, 43, 0.7);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-weight: 700;
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
  color: var(--navy);
  border-color: rgba(200, 154, 43, 0.95);
  background: rgba(255, 248, 232, 0.92);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(200, 154, 43, 0.12);
}

.nav-link {
  position: relative;
  transition: color .25s ease, opacity .25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 8px rgba(200, 154, 43, 0.06);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5rem;
}

.brand-tag {
  font-size: 0.77rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--navy);
  font-weight: 600;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #173050 0%, #10223d 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 34, 61, 0.18);
}

.btn-outline {
  border: 1px solid rgba(200, 154, 43, 0.55);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.btn-small {
  min-height: 48px;
  padding: 0 18px;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 48px 44px 26px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  top: -170px;
  left: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,154,43,.13), transparent 68%);
  pointer-events: none;
}

.hero .row {
  min-height: 640px;
}

.hero-copy-col {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.contact-box h2 {
  margin: 0;
  color: var(--navy);
  font-family: "DM Serif Display", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(3rem, 3vw, 3rem);
  line-height: 0.96;
}

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

.hero-desc {
  max-width: 46ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric-card,
.trust-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.metric-card strong,
.trust-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.metric-card span,
.trust-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,0.75), transparent 20%),
    linear-gradient(145deg, rgba(244, 238, 228, 0.8), rgba(252, 249, 244, 0.95));
  border-radius: 34px;
  border: 1px solid rgba(20, 40, 70, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
  overflow: hidden;
  animation: hero-breathe 8s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}

.hero-visual:hover img {
  transform: scale(1.035) rotate(1deg);
  filter: saturate(1.08) contrast(1.02);
}

@keyframes hero-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}

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

.info-card,
.benefit-item,
.timeline-item,
.portfolio-showcase-card {
  transform: translateY(var(--lift, 0)) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}

.info-card:hover,
.benefit-item:hover,
.timeline-item:hover,
.portfolio-showcase-card:hover {
  --lift: -7px;
  border-color: rgba(200, 154, 43, 0.28);
  box-shadow: 0 22px 42px rgba(14, 31, 58, 0.12);
}

.info-card::after,
.timeline-item::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  right: -30px;
  bottom: -38px;
  border-radius: 50%;
  background: rgba(200, 154, 43, 0.1);
  transition: transform .4s ease;
}

.info-card:hover::after,
.timeline-item:hover::after { transform: scale(1.8); }

.visual-card {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(145deg, #173050, #0f1d35);
  color: #fff;
  box-shadow: 0 28px 50px rgba(10, 20, 38, 0.18);
}

.brochure-stack {
  left: 20%;
  top: 14%;
  width: 300px;
  height: 320px;
  background: transparent;
  box-shadow: none;
}

.brochure {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(23, 48, 80, 0.98), rgba(15, 29, 53, 0.98)),
    linear-gradient(140deg, transparent 68%, rgba(200, 154, 43, 0.92) 68% 80%, transparent 80%);
  padding: 22px;
  transform: rotate(-10deg) translateY(8px);
  border: 1px solid rgba(255,255,255,0.12);
}

.brochure::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 58%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(220,227,236,0.7));
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.82;
}

.brochure h3 {
  position: relative;
  z-index: 1;
  width: 65%;
  margin: 68px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.brochure p {
  position: relative;
  z-index: 1;
  width: 68%;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

.brochure .small-logo {
  position: relative;
  z-index: 1;
}

.roll-banner {
  right: 8%;
  top: 4%;
  width: 250px;
  height: 500px;
  padding: 24px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #173050 0%, #11243f 52%, #10223d 100%);
}

.banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.small-logo {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--gold-soft);
}

.banner-badge {
  padding: 7px 12px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(200, 154, 43, 0.12);
  color: #f8e9c4;
}

.roll-banner h3 {
  margin: 34px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  line-height: 1.02;
  max-width: 7ch;
}

.roll-banner ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(255,255,255,0.88);
}

.roll-banner li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.roll-banner li::before {
  content: "•";
  color: var(--gold);
  font-size: 1.2rem;
}

.city-silhouette {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.04) 12%, rgba(255,255,255,0.02) 100%),
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.1) 10% 14%, transparent 14% 18%, rgba(255,255,255,0.08) 18% 24%, transparent 24% 32%, rgba(255,255,255,0.1) 32% 39%, transparent 39% 50%, rgba(255,255,255,0.12) 50% 60%, transparent 60% 70%, rgba(255,255,255,0.08) 70% 82%, transparent 82% 100%);
  clip-path: polygon(0 100%, 0 66%, 8% 56%, 12% 64%, 18% 48%, 23% 60%, 30% 32%, 36% 52%, 42% 20%, 50% 52%, 56% 38%, 63% 60%, 72% 34%, 79% 56%, 86% 42%, 92% 60%, 100% 46%, 100% 100%);
}

.business-card {
  left: 30%;
  bottom: 11%;
  width: 220px;
  height: 122px;
  padding: 24px;
  background:
    linear-gradient(145deg, #10223d 0%, #1a3558 100%);
}

.card-title {
  margin: 28px 0 6px;
  font-size: 1.08rem;
  font-weight: 700;
}

.card-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.76);
}

.contact-card {
  right: 16%;
  bottom: 10%;
  width: 230px;
  height: 128px;
  padding: 18px;
  background: linear-gradient(145deg, #fffefb, #f3f0eb);
  color: var(--navy);
}

.contact-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
}

.contact-head strong {
  font-size: 1rem;
}

.contact-head span,
.contact-lines {
  color: var(--muted);
}

.contact-lines {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  font-size: 0.82rem;
}

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

.trust-card {
  padding: 22px 20px;
  text-align: center;
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.48rem;
  margin-bottom: 6px;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: 76px 44px 0;
}

.section-heading {
  {% comment %} max-width: 760px; {% endcomment %}
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0 0 28px;
  text-align: left;
}

.section-heading h2,
.contact-box h2 {
  font-size: clamp(3rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: 14px;
}

.section-heading p {
  margin: 0 auto;
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.price-card,
.testimonial-card,
.faq-list details,
.contact-box {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-soft);
}

.service-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 24px;
}

.service-filter-button {
  border: 1px solid rgba(20, 40, 70, 0.1);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--muted);
  background: rgba(255,255,255,.7);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.service-filter-button:hover,
.service-filter-button.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.service-card {
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}

.service-card .portfolio-card-body { position: relative; }

.service-card .portfolio-card-body > p:last-of-type { min-height: 58px; }

.service-card-number {
  display: grid;
  place-items: center;
  min-height: 156px;
  color: var(--gold);
  font-family: "DM Serif Display", serif;
  font-size: 5rem;
  line-height: 1;
  background:
    radial-gradient(circle at 22% 30%, rgba(200,154,43,.2), transparent 16%),
    linear-gradient(135deg, rgba(20,40,70,.98), rgba(16,34,61,.9));
}

.service-detail-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.service-detail-toggle span { color: var(--gold); transition: transform .25s ease; }
.service-detail-toggle[aria-expanded="true"] span { transform: rotate(45deg); }

.service-detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  transition: grid-template-rows .35s ease, opacity .35s ease, margin-top .35s ease;
  overflow: hidden;
}

.service-detail::before { content: ""; min-height: 0; }
.service-detail.is-open { grid-template-rows: 1fr; opacity: 1; margin-top: 12px; }

.is-filtered-out {
  display: none;
}

.services-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding: 20px 24px;
  border: 1px solid rgba(200,154,43,.2);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(200,154,43,.1), rgba(255,255,255,.8));
}

.services-note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: var(--gold);
  background: rgba(255,255,255,.85);
  font-size: 1.4rem;
}

.services-note strong { color: var(--navy); }
.services-note p { margin: 3px 0 0; color: var(--muted); }
.services-note .btn { margin-left: auto; white-space: nowrap; }

.info-card {
  padding: 26px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(200, 154, 43, 0.11);
  color: var(--gold);
  font-weight: 800;
}

.info-card h3,
.benefit-item h3,
.timeline-item h3,
.price-card h3,
.testimonial-card strong,
.faq-list summary {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.1rem;
}

.info-card p,
.benefit-item p,
.timeline-item p,
.price-card li,
.testimonial-card p,
.faq-list p,
.contact-box p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

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

.benefit-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.benefit-item span {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(200,154,43,0.16), rgba(200,154,43,0.06));
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

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

.timeline-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.timeline-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.page-title {
  position: relative;
  margin-top: 18px;
  margin-bottom: 18px;
  min-height: 250px;
  padding-top: 44px;
  padding-bottom: 50px;
  border: 1px solid rgba(20, 40, 70, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(200, 154, 43, 0.16), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(20, 40, 70, 0.12), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.96));
  box-shadow: var(--shadow-soft);
}

.page-title.page-title--image {
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.48), rgba(255, 248, 236, 0.28)),
    url("/frontend/images/bg.png") center center / cover no-repeat;
}

.page-title.page-title--image::before {
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 62%, transparent 62% 100%),
    radial-gradient(circle at 78% 60%, rgba(200, 154, 43, 0.04), transparent 18%);
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,0.25) 48% 52%, transparent 52% 100%),
    radial-gradient(circle at 78% 60%, rgba(200, 154, 43, 0.08), transparent 18%);
  pointer-events: none;
}

.page-title > * {
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.page-breadcrumb .breadcrumb-item a {
  color: var(--muted);
  font-weight: 600;
}

.page-breadcrumb .breadcrumb-item.active {
  color: var(--gold);
  font-weight: 700;
}

.page-title-text {
  margin: 0;
  color: var(--navy);
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.portfolio-hero {
  padding: 48px 44px 26px;
}

.portfolio-hero .row {
  min-height: 560px;
}

.portfolio-hero-copy {
  max-width: 720px;
}

.portfolio-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0;
  max-width: 10ch;
}

.portfolio-hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  border: 1px solid rgba(20, 40, 70, 0.07);
  background:
    radial-gradient(circle at top left, rgba(200,154,43,0.12), transparent 28%),
    linear-gradient(145deg, rgba(244, 238, 228, 0.86), rgba(252, 249, 244, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
  overflow: hidden;
}

.portfolio-hero-banner {
  position: absolute;
  inset: 42px 40px 44px 40px;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, #173050 0%, #10223d 100%);
  color: #fff;
  box-shadow: 0 26px 50px rgba(10, 20, 38, 0.16);
}

.portfolio-hero-tag,
.portfolio-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(200, 154, 43, 0.12);
  color: #f8e9c4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.portfolio-hero-banner h2 {
  margin: 22px 0 10px;
  font-family: "DM Serif Display", serif;
}

.portfolio-hero-banner p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

.portfolio-floating-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(14, 31, 58, 0.12);
  min-width: 160px;
}

.portfolio-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.portfolio-floating-card strong {
  font-size: 1rem;
}

.floating-left {
  left: 48px;
  bottom: 68px;
}

.floating-right {
  right: 48px;
  top: 130px;
}

.floating-bottom {
  right: 92px;
  bottom: 52px;
}

.portfolio-showcase-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.86);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.portfolio-thumb {
  height: 220px;
  background: linear-gradient(135deg, #173050 0%, #10223d 100%);
  position: relative;
}

.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.16);
}

.thumb-profile {
  background:
    linear-gradient(135deg, rgba(17, 35, 62, 0.98), rgba(23, 48, 80, 0.98)),
    radial-gradient(circle at 80% 18%, rgba(200,154,43,0.18), transparent 16%);
}

.thumb-card {
  background:
    linear-gradient(135deg, rgba(17, 35, 62, 0.98), rgba(28, 56, 92, 0.98)),
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.2), transparent 14%);
}

.thumb-banner {
  background:
    linear-gradient(180deg, #173050 0%, #10223d 100%);
}

.thumb-label {
  background:
    linear-gradient(145deg, #f8f4ee, #fffefb);
}

.thumb-packaging {
  background:
    linear-gradient(135deg, rgba(17, 35, 62, 0.96), rgba(38, 62, 94, 0.96)),
    linear-gradient(135deg, transparent 62%, rgba(200,154,43,0.9) 62% 69%, transparent 69%);
}

.thumb-catalog {
  background:
    linear-gradient(135deg, rgba(18, 37, 67, 0.96), rgba(15, 29, 53, 0.96)),
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent 50%);
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-card-body h3,
.portfolio-feature-card h3 {
  margin: 12px 0 10px;
  font-family: "DM Serif Display", serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--navy);
}

.portfolio-card-body p,
.portfolio-feature-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.portfolio-feature-stack {
  display: grid;
  gap: 16px;
}

.portfolio-feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.portfolio-feature-card span {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 40, 70, 0.06);
  color: var(--navy);
  font-weight: 700;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.order-card,
.order-summary-card,
.order-step-card,
.order-contact-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.order-card {
  padding: 28px;
}

.order-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.order-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: #55705f;
  background: rgba(108, 170, 122, .1);
  font-size: .78rem;
  font-weight: 800;
}

.order-live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65a66f;
  box-shadow: 0 0 0 4px rgba(101,166,111,.14);
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse { 50% { box-shadow: 0 0 0 7px rgba(101,166,111,0); } }

.order-progress {
  display: flex;
  align-items: flex-start;
  max-width: 520px;
  margin: 30px 0 10px;
}

.order-progress-step { display: grid; justify-items: center; gap: 7px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.order-progress-step span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 12px; background: rgba(20,40,70,.07); color: var(--muted); transition: background .3s ease, color .3s ease, transform .3s ease; }
.order-progress-step.is-active span { color: #fff; background: var(--navy); transform: scale(1.08); box-shadow: 0 8px 18px rgba(20,40,70,.18); }
.order-progress-step.is-active small { color: var(--navy); }
.order-progress-line { flex: 1; height: 2px; margin: 16px 10px 0; background: rgba(20,40,70,.1); }

.order-summary-card {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.order-summary-card h3,
.order-card h2,
.order-contact-card h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.order-summary-card h3 {
  font-size: 2rem;
}

.summary-topline { display: flex; align-items: center; justify-content: space-between; }
.summary-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(200,154,43,.12); }
.summary-copy { margin: 10px 0 20px; color: var(--muted); line-height: 1.7; }
.order-live-summary { display: grid; gap: 10px; margin-bottom: 18px; padding: 16px; border-radius: 20px; background: linear-gradient(145deg, rgba(20,40,70,.05), rgba(255,255,255,.7)); border: 1px solid var(--border); }
.order-live-summary div { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.order-live-summary span { color: var(--muted); font-size: .85rem; }
.order-live-summary strong { max-width: 58%; color: var(--navy); font-size: .88rem; text-align: right; }

.order-intro {
  color: var(--muted);
  line-height: 1.8;
  margin: 14px 0 0;
}

.order-form .form-label {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.order-form .form-control,
.order-form .form-select,
.order-form textarea {
  border-radius: 16px;
  border: 1px solid rgba(20, 40, 70, 0.12);
  background: rgba(255,255,255,0.96);
  padding: 14px 16px;
  box-shadow: none;
}

.order-form .form-control:focus,
.order-form .form-select:focus,
.order-form textarea:focus {
  border-color: rgba(200, 154, 43, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(200, 154, 43, 0.14);
}

.form-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.order-summary-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(20, 40, 70, 0.04);
}

.order-summary-item span {
  color: var(--muted);
}

.order-summary-item strong {
  color: var(--navy);
  text-align: right;
}

.order-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200,154,43,0.1), rgba(255,255,255,0.7));
  border: 1px solid rgba(200,154,43,0.18);
  color: var(--muted);
  line-height: 1.8;
}

.order-note strong { color: var(--navy); }
.order-form-status { display: none; padding: 12px 15px; border-radius: 14px; font-size: .9rem; line-height: 1.5; }
.order-form-status.is-error, .order-form-status.is-success { display: block; }
.order-form-status.is-error { color: #8f4c3d; background: rgba(190, 92, 66, .09); }
.order-form-status.is-success { color: #426b4e; background: rgba(101,166,111,.11); }
.order-form.was-validated .form-control:invalid, .order-form.was-validated .form-select:invalid { border-color: rgba(190, 92, 66, .6); }

.order-step-card {
  padding: 22px;
  height: 100%;
}

.order-step-card .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.order-step-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.order-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.order-contact-card {
  padding: 24px;
}

.order-contact-grid {
  display: grid;
  gap: 14px;
}

.order-contact-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--border);
}

.order-contact-item span {
  color: var(--muted);
}

.order-contact-item strong {
  color: var(--navy);
  text-align: right;
}

.contact-heading-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.contact-status { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; background: rgba(101,166,111,.1); color: #4d7655; font-size: .78rem; font-weight: 800; white-space: nowrap; }
.contact-status i { width: 7px; height: 7px; border-radius: 50%; background: #65a66f; box-shadow: 0 0 0 4px rgba(101,166,111,.14); }
.contact-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.contact-choice { display: flex; align-items: center; gap: 10px; padding: 13px 12px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.7); text-align: left; cursor: pointer; transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.contact-choice:hover, .contact-choice.is-active { transform: translateY(-3px); border-color: rgba(200,154,43,.6); background: rgba(255,249,235,.9); box-shadow: 0 12px 24px rgba(14,31,58,.08); }
.contact-choice-icon { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 11px; background: var(--navy); color: #fff; font-weight: 800; }
.contact-choice strong, .contact-choice small { display: block; }
.contact-choice strong { color: var(--navy); font-size: .86rem; }
.contact-choice small { margin-top: 3px; color: var(--muted); font-size: .7rem; line-height: 1.3; }
.contact-selected { padding: 12px 14px; border-radius: 14px; color: var(--muted); background: rgba(20,40,70,.045); font-size: .88rem; }
.contact-meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.contact-meta-grid > div { padding: 13px 14px; border-radius: 16px; background: rgba(255,255,255,.65); border: 1px solid var(--border); }
.contact-meta-grid span, .contact-meta-grid strong { display: block; }
.contact-meta-grid span { color: var(--muted); font-size: .75rem; }
.contact-meta-grid strong { margin-top: 4px; color: var(--navy); font-size: .82rem; }
.contact-checklist { display: grid; gap: 12px; }
.contact-checklist > div { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 15px; background: rgba(20,40,70,.045); }
.contact-checklist span { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 11px; background: rgba(200,154,43,.14); color: var(--gold); font-size: .75rem; font-weight: 800; }
.contact-checklist p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.45; }
.contact-faq-section { padding-top: 24px; }

.portfolio-card {
  position: relative;
  min-height: 250px;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff, #f4efe8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.portfolio-card.tall {
  grid-row: span 2;
  min-height: 528px;
}

.portfolio-card.wide {
  grid-column: span 2;
}

.portfolio-card.navy {
  background: linear-gradient(160deg, #142846, #0f1e37);
}

.portfolio-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card:not(.navy) .portfolio-label {
  background: rgba(20, 40, 70, 0.06);
  color: var(--navy);
}

.portfolio-visual {
  position: absolute;
  inset: auto 20px 18px;
  border-radius: 22px;
}

.folder {
  inset: 90px 24px 26px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.2), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

.folder::before,
.card-set::before,
.sticker-set::before,
.banner-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.folder::before {
  background:
    linear-gradient(135deg, rgba(200,154,43,0.95) 0 14%, transparent 14% 100%),
    linear-gradient(155deg, rgba(255,255,255,0.9), rgba(255,255,255,0.35));
  clip-path: polygon(0 18%, 30% 0, 100% 16%, 100% 100%, 0 100%);
}

.card-set {
  inset: 70px 22px 18px;
  background:
    linear-gradient(145deg, #10223d, #1d3b61);
}

.card-set::before {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.95), rgba(255,255,255,0.35));
  clip-path: polygon(0 44%, 35% 18%, 75% 30%, 100% 2%, 100% 100%, 0 100%);
  opacity: 0.9;
}

.sticker-set {
  inset: 68px 22px 18px;
  background:
    linear-gradient(145deg, #f8f4ee, #ffffff);
}

.sticker-set::before {
  background:
    radial-gradient(circle at 25% 35%, rgba(200,154,43,0.5), transparent 12%),
    radial-gradient(circle at 70% 60%, rgba(20,40,70,0.14), transparent 14%),
    linear-gradient(135deg, rgba(23,48,80,0.88), rgba(16,34,61,0.12));
}

.banner-preview {
  inset: 72px 22px 18px;
  background:
    linear-gradient(180deg, #173050, #10223d);
}

.banner-preview::before {
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(200,154,43,0.9) 54% 58%, transparent 58% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
}

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

.price-card {
  padding: 28px;
  border-radius: 28px;
}

.price-card.featured {
  background: linear-gradient(180deg, #173050, #10223d);
  color: #fff;
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .plan,
.price-card.featured li {
  color: #fff;
}

.plan {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
}

.price {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.price-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

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

.testimonial-card {
  padding: 26px;
  border-radius: 26px;
}

.testimonial-card p {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding-top: 14px;
}

.contact-section {
  padding-bottom: 56px;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
}

.contact-box h2 {
  max-width: 80ch;
  font-size: 2em;
}

.contact-box p {
  max-width: 100ch;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 44px 42px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.footer-brand {
  margin-bottom: 50px;
}

.footer p {
  /* max-width: 44ch; */
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold);
}

.gallery-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.gallery-intro .section-heading { margin: 0; max-width: 700px; }
.gallery-counter { display: grid; justify-items: end; padding: 18px 22px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.7); white-space: nowrap; }
.gallery-counter strong { color: var(--navy); font-family: "DM Serif Display", serif; font-size: 2.4rem; line-height: 1; }
.gallery-counter span { margin-top: 5px; color: var(--muted); font-size: .8rem; }
.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 34px 0 20px; padding: 10px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.64); }
.gallery-filters, .gallery-category-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.gallery-filter, .gallery-category { border: 0; border-radius: 12px; padding: 10px 13px; color: var(--muted); background: transparent; font: inherit; font-size: .8rem; font-weight: 800; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease; }
.gallery-filter:hover, .gallery-filter.is-active { color: #fff; background: var(--navy); transform: translateY(-2px); }
.gallery-category { font-size: .75rem; font-weight: 700; }
.gallery-category:hover, .gallery-category.is-active { color: var(--gold); background: rgba(200,154,43,.11); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-card { position: relative; min-height: 310px; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 26px; background: #fff; box-shadow: var(--shadow-soft); text-align: left; cursor: pointer; isolation: isolate; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, opacity .3s ease; }
.gallery-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 26px 50px rgba(14,31,58,.16); }
.gallery-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .7s ease; }
.gallery-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .7s ease; }
.gallery-card:hover > img { transform: scale(1.07); filter: saturate(1.08); }
.gallery-card-image:hover img { transform: scale(1.07); filter: saturate(1.08); }
.gallery-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,20,38,0) 34%, rgba(10,20,38,.82) 100%); }
.gallery-card-navy { background: linear-gradient(145deg, #173050, #0f1f38); }
.gallery-card-gold { background: radial-gradient(circle at 78% 24%, rgba(255,255,255,.9), transparent 15%), linear-gradient(145deg, #e7d6a6, #fffaf0 62%, #d7b65b); }
.gallery-card-paper { background: linear-gradient(145deg, #f7f1e7, #fff 58%, #d7e0ea); }
.gallery-art { position: absolute; inset: 32px 26px 72px; border-radius: 18px; transform: rotate(-4deg); box-shadow: 0 20px 32px rgba(14,31,58,.17); }
.gallery-art-display { background: linear-gradient(155deg, #f8f4ee 0 54%, #c89a2b 54% 60%, #142846 60%); }
.gallery-art-display::after { content: "DISPLAY"; position: absolute; top: 30%; left: 15%; color: #142846; font: 700 1.4rem "DM Serif Display", serif; letter-spacing: .08em; }
.gallery-art-label { background: radial-gradient(circle at 25% 34%, #142846 0 7%, transparent 8%), radial-gradient(circle at 70% 64%, #c89a2b 0 9%, transparent 10%), #fffaf0; transform: rotate(5deg); }
.gallery-art-catalog { background: linear-gradient(145deg, #142846, #294b72); }
.gallery-art-catalog::after { content: "CATALOG"; position: absolute; right: 18px; bottom: 20px; color: rgba(255,255,255,.85); font: 700 1.2rem "DM Serif Display", serif; }
.gallery-status { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.88); color: var(--navy); font-size: .7rem; font-weight: 800; }
.gallery-status.is-ongoing { color: #8b671a; background: #fff2cb; }
.gallery-status.is-completed { color: #467052; background: #e5f2e6; }
.gallery-card-arrow { position: absolute; top: 17px; right: 18px; z-index: 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.88); font-size: 1.1rem; transition: transform .3s ease; }
.gallery-card:hover .gallery-card-arrow { transform: rotate(45deg); }
.gallery-card-caption { position: absolute; right: 20px; bottom: 18px; left: 20px; z-index: 2; color: #fff; }
.gallery-card-caption small, .gallery-card-caption strong { display: block; }
.gallery-card-caption small { margin-bottom: 5px; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.gallery-card-caption strong { font-family: "DM Serif Display", serif; font-size: 1.65rem; line-height: 1; }
.gallery-card-caption em { display: block; max-width: 34ch; margin-top: 7px; color: rgba(255,255,255,.78); font-size: .78rem; font-style: normal; line-height: 1.45; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; }
.gallery-card:hover .gallery-card-caption em { opacity: 1; transform: translateY(0); }
.gallery-card-gold .gallery-card-caption, .gallery-card-paper .gallery-card-caption { color: var(--navy); }
.gallery-card-gold .gallery-card-caption small, .gallery-card-paper .gallery-card-caption small { color: var(--muted); }
.gallery-card-gold .gallery-card-caption em, .gallery-card-paper .gallery-card-caption em { color: var(--muted); }
.gallery-card.is-hidden { display: none; }
.gallery-empty { display: none; padding: 50px 20px; color: var(--muted); text-align: center; }
.gallery-empty.is-visible { display: block; }
.gallery-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 22px; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.gallery-modal.is-open { opacity: 1; visibility: visible; }
.gallery-modal-backdrop { position: absolute; inset: 0; background: rgba(10,20,38,.7); backdrop-filter: blur(8px); }
.gallery-modal-content { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; width: min(880px, 100%); overflow: hidden; border-radius: 28px; background: var(--surface); box-shadow: 0 30px 80px rgba(0,0,0,.25); transform: translateY(18px) scale(.97); transition: transform .35s ease; }
.gallery-modal.is-open .gallery-modal-content { transform: translateY(0) scale(1); }
.gallery-modal-visual { min-height: 420px; background: linear-gradient(145deg, #173050, #0f1f38); }
.gallery-modal-visual img { width: 100%; height: 100%; object-fit: cover; }
.gallery-modal-copy { align-self: center; padding: 38px; }
.gallery-modal-copy h2 { margin: 0 0 12px; }
.gallery-modal-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.gallery-modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.92); font-size: 1.5rem; cursor: pointer; }
body.modal-open { overflow: hidden; }

.btn.btn-email { color: var(--navy); background: #fff; border: 1px solid rgba(200,154,43,.7); box-shadow: 0 10px 22px rgba(14,31,58,.06); }
.btn.btn-email:hover, .btn.btn-email:focus { color: var(--navy); background: #fffdf7; border-color: var(--gold); }
.btn.btn-order { color: #fff; background: linear-gradient(180deg, #173050 0%, #10223d 100%); box-shadow: 0 14px 30px rgba(16,34,61,.2); }
.btn.btn-order:hover, .btn.btn-order:focus { color: #fff; background: linear-gradient(180deg, #214363 0%, #0d1c34 100%); }
.btn.btn-email svg { width: 20px; height: 20px; fill: currentColor; }
.btn-symbol { display: inline-grid; place-items: center; width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.55); border-radius: 7px; font-size: 1.1rem; line-height: 1; }

#contactPrimaryAction.btn-whatsapp {
  min-width: 196px;
  color: #fff;
  background: linear-gradient(180deg, #2fbe6b 0%, #159447 100%);
  box-shadow: 0 14px 30px rgba(21,148,71,.24);
}

#contactPrimaryAction.btn-whatsapp:hover,
#contactPrimaryAction.btn-whatsapp:focus {
  color: #fff;
  background: linear-gradient(180deg, #42cf7c 0%, #11813d 100%);
}

#contactPrimaryAction.btn-whatsapp svg { fill: #fff; }
#contactPrimaryAction.btn-whatsapp span { max-width: 92px; text-align: center; line-height: 1.12; }

.btn.btn-whatsapp {
  color: #fff;
  background: linear-gradient(180deg, #2fbe6b 0%, #159447 100%);
  box-shadow: 0 14px 30px rgba(21, 148, 71, .22), inset 0 1px 0 rgba(255,255,255,.2);
}

.btn.btn-whatsapp svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}

.btn.btn-whatsapp:hover,
.btn.btn-whatsapp:focus {
  color: #fff;
  background: linear-gradient(180deg, #42cf7c 0%, #11813d 100%);
  box-shadow: 0 18px 38px rgba(21, 148, 71, .3), inset 0 1px 0 rgba(255,255,255,.25);
}

/* Primary brand actions: warm gold for a more premium feel. */
.btn.btn-brand,
.btn-primary.btn-brand {
  color: var(--navy);
  background: linear-gradient(180deg, #e3bd58 0%, #c89a2b 100%);
  box-shadow: 0 14px 30px rgba(160, 115, 20, 0.22), inset 0 1px 0 rgba(255,255,255,.3);
}

.btn.btn-brand:hover,
.btn.btn-brand:focus,
.btn-primary.btn-brand:hover,
.btn-primary.btn-brand:focus {
  color: var(--navy);
  background: linear-gradient(180deg, #edcc70 0%, #b8871e 100%);
  box-shadow: 0 18px 38px rgba(160, 115, 20, 0.3), inset 0 1px 0 rgba(255,255,255,.35);
}

@media (max-width: 640px) {
  .gallery-intro { display: block; }
  .gallery-counter { justify-items: start; width: fit-content; margin-top: 20px; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-modal-content { grid-template-columns: 1fr; max-height: calc(100vh - 40px); overflow-y: auto; }
  .gallery-modal-visual { min-height: 240px; max-height: 300px; }
  .gallery-modal-copy { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-on-scroll { opacity: 1; transform: none; }
}

.faq-accordion {
  max-width: 920px;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  box-shadow: none;
  padding: 22px 24px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--navy);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: var(--muted);
  line-height: 1.8;
  padding: 0 24px 22px;
}

.navbar-toggler {
  padding: 0.4rem 0.65rem;
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .service-grid,
  .pricing-section .pricing-grid,
  .testimonial-grid,
  .timeline,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .portfolio-hero .row {
    min-height: auto;
  }

  .portfolio-hero-panel {
    min-height: 520px;
  }

  .portfolio-card.wide {
    grid-column: span 2;
  }

  .split-section,
  .contact-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 18px, 1540px);
    padding-top: 118px;
    border-radius: 24px;
  }

  .topbar,
  .hero,
  .section,
  .footer,
  .trust-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .topbar {
    top: 12px;
    width: min(100% - 18px, 1540px);
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }

  .nav {
    order: 3;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 3.5vw, 3.5rem);
  }

  .hero-metrics,
  .service-grid,
  .pricing-section .pricing-grid,
  .testimonial-grid,
  .timeline,
  .trust-strip,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card.tall,
  .portfolio-card.wide {
    grid-column: auto;
    min-height: 280px;
  }

  .portfolio-hero {
    padding-top: 34px;
  }

  .page-title {
    min-height: 190px;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .portfolio-hero-banner {
    inset: 24px;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary-card {
    position: static;
  }

  .hero-visual {
    min-height: 560px;
  }

  .roll-banner {
    right: 4%;
    top: 8%;
    width: 180px;
    height: 430px;
  }

  .brochure-stack {
    left: 14%;
    width: 210px;
    height: 230px;
  }

  .business-card {
    left: 10%;
    bottom: 10%;
    width: 180px;
  }

  .floating-right {
    right: 24px;
    top: 100px;
  }

  .floating-bottom {
    right: 34px;
    bottom: 32px;
  }

  .contact-card {
    right: 8%;
    bottom: 12%;
    width: 190px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-top: 128px;
  }

  .topbar {
    top: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .navbar-brand img { width: 150px !important; }

  .navbar-collapse {
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  .topbar .navbar-nav { gap: .25rem; }

  .topbar .btn-brand { width: 100%; margin-top: 10px; }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-desc,
  .section-heading p,
  .contact-box p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .portfolio-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .portfolio-hero-panel {
    min-height: 460px;
  }

  .portfolio-hero-banner {
    inset: 18px;
    padding: 20px;
  }

  .portfolio-floating-card {
    min-width: 130px;
    padding: 14px 15px;
  }

  .floating-left {
    left: 18px;
    bottom: 52px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .brochure-stack {
    left: 50%;
    top: 22%;
    width: 200px;
    height: 220px;
    transform: translateX(-50%);
    transform-origin: top center;
  }

  .roll-banner {
    right: auto;
    left: 50%;
    top: 6%;
    width: 170px;
    height: 390px;
    transform: translateX(-50%);
  }

  .business-card {
    left: 14px;
    bottom: 16px;
    width: 165px;
    height: 108px;
  }

  .contact-card {
    display: none;
  }

  .brochure-2,
  .brochure-3 {
    display: none;
  }

  .info-card,
  .benefit-item,
  .timeline-item,
  .price-card,
  .testimonial-card,
  .faq-list details,
  .contact-box {
    padding: 20px;
  }

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

  .metric-card,
  .trust-card {
    padding: 16px 16px 14px;
  }

  .trust-strip {
    gap: 10px;
  }

  .services-note { align-items: flex-start; flex-wrap: wrap; }
  .services-note .btn { width: 100%; margin-left: 60px; }

  .order-card-heading { display: block; }
  .order-live-badge { margin-top: 16px; }
  .order-card, .order-summary-card { padding: 20px; }
  .contact-heading-row { display: block; }
  .contact-status { margin-top: 14px; }
  .contact-choice-grid, .contact-meta-grid { grid-template-columns: 1fr; }
}
