:root {
  --bg: #07152f;
  --bg-deep: #091d44;
  --bg-ink: #050f24;
  --panel: rgba(8, 20, 43, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --stroke: rgba(255, 255, 255, 0.1);
  --text: #f7f3eb;
  --text-soft: rgba(247, 243, 235, 0.82);
  --text-mute: rgba(247, 243, 235, 0.62);
  --gold: #e3bf7f;
  --gold-strong: #c89447;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(227, 191, 127, 0.12), transparent 18%),
    linear-gradient(180deg, var(--bg-ink) 0%, var(--bg) 22%, var(--bg-deep) 58%, var(--bg) 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.ambient-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-left {
  top: 8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(227, 191, 127, 0.58), transparent 68%);
}

.ambient-glow-right {
  top: 22rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(55, 90, 180, 0.56), transparent 68%);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading h2,
.site-footer h2,
.detail-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading p,
.hero-subhead,
.detail-copy p,
.trust-card p,
.gallery-card figcaption,
.service-content p,
.mini-feature p,
.footer-copy,
.intro-strip-inner p {
  color: var(--text-soft);
  line-height: 1.7;
}

.eyebrow,
.card-tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.card-tag {
  min-height: 40px; /* Aligns tags across cards even with multi-line text */
  display: flex;
  align-items: flex-end; /* Keeps text at the bottom for consistent spacing from title */
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(5, 15, 36, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0 10px 0;
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand-mark img {
  width: 160px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.button {
  transition: transform 0.25s ease;
}

.desktop-nav a,
.header-cta,
.mobile-menu a,
.button {
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.desktop-nav a {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta,
.button-primary {
  border: 1px solid rgba(201, 148, 71, 0.9);
  background: linear-gradient(180deg, var(--gold), var(--gold-strong));
  color: #162948;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 17, 38, 0.96);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
  padding: 16px 0 18px;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-quote {
  color: #162948;
  background: linear-gradient(180deg, var(--gold), var(--gold-strong)) !important;
}

.hero {
  position: relative;
  min-height: min(980px, calc(100vh - 86px));
  overflow: clip;
  perspective: 1200px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  scale: 1.08;
  translate: 0 var(--parallax-offset, 0px);
  will-change: translate;
}

.hero-slide-active {
  opacity: 1;
  transition: opacity 0.9s ease;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 15, 36, 0.96) 0%, rgba(5, 15, 36, 0.62) 50%, rgba(5, 15, 36, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 15, 36, 0.18), rgba(5, 15, 36, 0.44)),
    radial-gradient(circle at top right, rgba(227, 191, 127, 0.12), transparent 24%);
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-dot-active {
  background: var(--gold);
  transform: scale(1.15);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 0px 0 70px;
}

.hero-copy {
  max-width: 700px;
  padding: 2rem 0;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -24px -24px -28px -24px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(5, 15, 36, 0.28), rgba(5, 15, 36, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.hero-subhead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stat,
.trust-card,
.mini-feature,
.gallery-card,
.service-card,
.trust-shell {
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stat {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.hero-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 191, 127, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 1.15rem;
}

.hero-stat span {
  color: var(--text-soft);
  line-height: 1.6;
}

.intro-strip {
  padding: 40px 0 20px 0;
}

.intro-strip-inner {
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.intro-strip-inner p {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.service-card img,
.gallery-card img,
.mini-feature img {
  height: 100%;
  object-fit: cover;
}

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

.signature-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 24, 53, 0.86), rgba(7, 18, 40, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  transform: perspective(1200px) rotateX(calc(var(--tilt-y, 0deg) * -0.35)) rotateY(calc(var(--tilt-x, 0deg) * 0.45));
  transform-style: preserve-3d;
  transition: transform 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}

.signature-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.signature-card:hover {
  transform: perspective(1200px) translateY(-8px) rotateX(calc(var(--tilt-y, 0deg) * -0.35)) rotateY(calc(var(--tilt-x, 0deg) * 0.45));
  border-color: rgba(227, 191, 127, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: auto -5rem -7rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 191, 127, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 0.55s ease;
}

.signature-card:hover::after {
  opacity: 1;
}

.signature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  scale: 1.04;
  filter: blur(4px);
  translate: 0 var(--parallax-offset, 0px);
  will-change: translate;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 40, 0.14) 0%, rgba(7, 18, 40, 0.38) 32%, rgba(7, 18, 40, 0.95) 100%),
    linear-gradient(140deg, rgba(227, 191, 127, 0.06), transparent 34%);
}

.signature-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
  transform: translateZ(28px);
  z-index: 2;
  background: linear-gradient(180deg, rgba(7, 18, 40, 0), rgba(7, 18, 40, 0.68) 16%, rgba(7, 18, 40, 0.92) 100%);
}

.signature-thumb-wrap {
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

.signature-thumb {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .signature-thumb {
    width: 100%;
  }
}

.signature-content .card-tag {
  margin-top: 0;
}

.signature-content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.1;
}

.mini-feature h3,
.trust-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.70rem;
  line-height: 0.98;
}

.signature-content p:last-child,
.mini-feature p:last-child,
.trust-card p {
  margin: 0;
}

.signature-content p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.6;
}

.signature-list {
  font-size: 14px;
  line-height: 1.6;
}

.signature-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 1.4rem;
}

.signature-actions .button {
  padding: 10px 18px;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .signature-actions {
    padding-top: 1rem;
    gap: 8px;
  }
}

.detail-section {
  margin-bottom: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 26px;
  align-items: stretch;
}

.detail-copy {
  padding: 34px 34px 60px 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(227, 191, 127, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-list {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.detail-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mini-feature {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.mini-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 191, 127, 0.24);
}

.mini-feature img {
  flex: 0 0 140px;
  width: 140px;
  min-height: 0;
  /* Remove baseline height to allow flex shrinking */
  border-radius: 14px;
  object-fit: cover;
}

.mini-feature>div {
  flex: 1;
}

.mini-feature p {
  font-size: 14px;
}

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

.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  transition: transform 0.45s ease, border-color 0.45s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 191, 127, 0.24);
}

.gallery-card img {
  aspect-ratio: 1 / 1;
}

.gallery-card figcaption {
  padding: 18px;
}

.trust-section {
  padding-top: 12px;
}

.trust-shell {
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(227, 191, 127, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

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

.trust-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(6, 17, 38, 0.45);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 191, 127, 0.24);
  background: rgba(6, 17, 38, 0.62);
}

.site-footer {
  padding: 40px 0 86px;
}

/* Contact Page & Form Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info .info-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.info-list li {
  margin-bottom: 20px;
}

.info-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-form-wrap {
  position: relative;
}

.premium-form {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(227, 191, 127, 0.1);
}

.form-submit {
  width: 100%;
  padding: 18px;
  margin-top: 10px;
  cursor: pointer;
}

.form-status {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
}

.form-status.success {
  background: rgba(76, 175, 80, 0.1);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-status.error {
  background: rgba(244, 67, 54, 0.1);
  color: #e57373;
  border: 1px solid rgba(244, 67, 54, 0.2);
}

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

@media (max-width: 768px) {
  .contact-info .info-card,
  .premium-form {
    padding: 20px;
  }
}

/* Global Bottom Footer */
.site-bottom-footer {
  background: var(--bg-ink);
  border-top: 1px solid var(--stroke);
  padding: 60px 0 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner .brand-mark {
  width: 160px;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

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

.footer-cta-btn {
  padding: 12px 24px;
  border-radius: 50px;
  background: var(--gold);
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-cta-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.copyright-bar {
  padding-top: 30px;
  text-align: center;
}

.copyright-bar p {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin: 0;
}

@media (max-width: 992px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  .footer-cta-btn {
    width: fit-content;
  }
}

.page-hero {
  position: relative;
  min-height: min(900px, calc(100vh - 86px));
  overflow: clip;
}

.page-hero-media,
.page-hero-media img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translate3d(0, calc(var(--parallax-offset, 0px) * 1), 0);
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 15, 36, 0.92) 0%, rgba(5, 15, 36, 0.48) 52%, rgba(5, 15, 36, 0.82) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 15, 36, 0.28));
}

.branding-page .page-hero-media img {
  filter: blur(6px);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 40px;
  align-items: center;
  padding: 0px 0 70px;
}

.page-hero-copy {
  max-width: 700px;
}

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

.story-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 191, 127, 0.24);
}

.story-card-media {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  /* Uses high-quality browser interpolation */
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: blur(0.5px); /* Subtle smoothing blur */
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1), filter 0.3s ease;
}

.story-card:hover img {
  transform: scale(1.08);
  filter: blur(0.5px);
}

.story-card-media-branding {
  aspect-ratio: 16 / 10 !important;
}

.story-img-branding {
  width: 100%;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
}

.story-card-copy {
  padding: 24px;
}

.story-card-copy h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.70rem;
  line-height: 1;
}

.story-card-copy p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-inner {
  text-align: center;
  padding: 46px 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(227, 191, 127, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(8, 20, 43, 0.95), rgba(8, 20, 43, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.footer-copy {
  max-width: 720px;
  margin: 18px auto 0;
}

.footer-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  translate: 0 80px;
  transition: opacity 1.4s ease, translate 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (max-width: 980px) {

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .hero-grid,
  .page-hero-grid,
  .detail-grid,
  .trust-grid,
  .gallery-grid,
  .service-story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 100px 0 100px;
  }

  .page-hero-grid {
    padding: 100px 0 56px;
  }

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

@media (max-width: 720px) {
  .section {
    padding: 68px 0;
  }

  .brand-mark img {
    width: 132px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 17, 38, 0.58) 0%, rgba(6, 17, 38, 0.24) 26%, rgba(6, 17, 38, 0.94) 100%),
      radial-gradient(circle at top center, rgba(227, 191, 127, 0.16), transparent 26%);
  }

  .hero-grid {
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    align-items: end;
    height: calc(90vh - 106px);
  }

  .hero-carousel-dots {
    bottom: 15px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .hero-subhead {
    font-size: 1rem;
    margin-top: 20px;
  }

  .hero-copy {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-hero-grid {
    padding-top: 90px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 8vw;
  }

  .section-heading h2,
  .site-footer h2,
  .detail-copy h2 {
    font-size: 6.5vw;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 20px;
  }

  .footer-actions {
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .signature-card {
    min-height: 620px;
  }

  .signature-actions {
    flex-direction: column;
  }

  .signature-thumb {
    width: 100%;
    border-radius: 16px;
  }

  .mini-feature {
    flex-direction: column;
    padding: 20px;
  }

  .mini-feature img {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }

  .mini-feature p {
    font-size: 1rem;
  }

  .detail-copy,
  .trust-shell,
  .footer-inner {
    padding: 28px 20px;
  }

  .intro-strip-inner {
    border-radius: 24px;
  }
}

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

  /* *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
*/
  .hero-slide,
  .hero-media img,
  .signature-image {
    transform: none !important;
  }

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

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-grid.gallery-3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, border-color 0.4s ease;
  height: 100%;
}

.gallery-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 191, 127, 0.24);
}

.gallery-item-img-wrap {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1), filter 0.3s ease;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: blur(0.5px);
}

.gallery-item-img-wrap:hover img {
  transform: scale(1.08);
  filter: blur(0.5px);
}

.gallery-card-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gallery-card-info h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--text);
}

.gallery-card-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}



/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 15, 36, 0.94);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.lightbox:not([hidden]) .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-close {
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}