:root {
  --ink: #08100f;
  --green: #082b25;
  --green-2: #0c3d34;
  --gold: #c98b29;
  --gold-2: #e9b95d;
  --paper: #f8f6f0;
  --muted: #5f6562;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(24px, 6vw, 90px);
  color: var(--white);
  background: rgba(4, 9, 9, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand-mark {
  width: 46px;
  height: 46px;
  color: var(--gold-2);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.brand strong {
  display: block;
  font-family: "Poppins", "Geist", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .5px;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: none;
}
.main-nav a {
  position: relative;
  padding: 28px 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-2); }
.main-nav a.active::after, .main-nav a:hover::after { transform: scaleX(1); }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--gold-2);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.whatsapp-link span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200,95,134,.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.whatsapp-link:hover { background: var(--gold-2); color: var(--ink); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  min-height: 452px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 520px);
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 8, 8, .96) 0%, rgba(8, 18, 16, .88) 44%, rgba(8, 18, 16, .18) 70%),
    radial-gradient(circle at 8% 38%, rgba(214, 162, 59, .18), transparent 32%),
    linear-gradient(135deg, #070b0b 0%, #14352e 100%);
}
.hero-copy {
  padding: clamp(60px, 7vw, 88px) 0 clamp(32px, 5vw, 48px) clamp(32px, 9vw, 112px);
  max-width: 650px;
}
.hero h1 {
  margin: 0;
  font-family: "Poppins", "Geist", Arial, sans-serif;
  font-size: clamp(48px, 5.6vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}
.hero h1 span { display: block; color: var(--gold-2); }
.gold-rule {
  width: 68px;
  height: 2px;
  margin: 28px 0 20px;
  background: var(--gold-2);
}
.hero p {
  max-width: 360px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.quick-services {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 38px 0 34px;
}
.quick-services span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}
.quick-services svg {
  width: 25px;
  height: 25px;
  stroke: var(--gold-2);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-actions {
  display: flex;
  gap: 28px;
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); }
.btn-gold { color: var(--ink); background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.btn-outline { color: var(--white); border-color: var(--gold-2); background: rgba(0, 0, 0, .18); }
.btn-dark { width: 100%; color: var(--white); background: linear-gradient(135deg, #10362f, #071211); }
.hero-photo {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 24px 58px 0 0;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 16, .2), rgba(255, 255, 255, .48));
}
.hero-photo img {
  position: relative;
  z-index: 1;
  width: min(410px, 100%);
  align-self: end;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .38));
}

.about-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr .56fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 38px clamp(32px, 9vw, 112px);
  color: var(--white);
  background:
    radial-gradient(circle at 65% 50%, rgba(214, 162, 59, .08), transparent 35%),
    linear-gradient(135deg, #082923, #07110f);
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.section-kicker::after {
  content: "";
  width: 56px;
  height: 1px;
  background: currentColor;
}
.centered .section-kicker { justify-content: center; }
.about-strip h2, .section-heading h2, .page-hero h1 {
  margin: 0;
  font-family: "Poppins", "Geist", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}
.about-strip h2 { max-width: 410px; font-size: clamp(28px, 3vw, 36px); }
.about-strip p:not(.section-kicker) { margin: 0; font-weight: 600; }
.about-values {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding-left: 42px;
  border-left: 1px solid rgba(255,255,255,.26);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.section {
  padding: 50px clamp(28px, 7vw, 102px);
}
.section-heading { margin-bottom: 26px; }
.section-heading h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 44px);
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-height: 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 20px;
  text-align: center;
  border: 1px solid rgba(8, 16, 15, .07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(214, 162, 59, .5); }
.service-card svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  stroke: var(--gold);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.25; }
.service-card p { margin: 0; color: #28302d; font-size: 13px; line-height: 1.65; }
.service-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 14px;
  color: var(--gold);
  font-size: 27px;
  line-height: 1;
}

.why-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 26px clamp(32px, 9vw, 112px);
  color: var(--white);
  background: radial-gradient(circle at 18% 50%, rgba(214, 162, 59, .08), transparent 28%), linear-gradient(135deg, #072720, #06110f);
}
.why-band article {
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 10px 34px;
  border-right: 1px solid rgba(255,255,255,.23);
}
.why-band article:last-child { border-right: 0; }
.circle-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  color: var(--gold-2);
}
.circle-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.why-band h3 { margin: 0 0 5px; font-size: 15px; text-transform: uppercase; }
.why-band p { margin: 0; font-size: 13px; line-height: 1.7; }

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding: 34px clamp(32px, 8vw, 102px);
  background:
    linear-gradient(rgba(248, 246, 240, .92), rgba(248, 246, 240, .92)),
    radial-gradient(circle at 38% 70%, rgba(8, 16, 15, .07), transparent 20%);
}
.contact-info { min-height: 200px; }
.contact-info ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
  max-width: 430px;
}
.contact-info li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 18px;
  color: #27312e;
  font-size: 14px;
  line-height: 1.5;
}
.contact-info li span { color: var(--green); font-size: 12px; }
.contact-info li span {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info li span svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form {
  padding-left: 50px;
  border-left: 1px solid rgba(8, 16, 15, .22);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(8, 16, 15, .2);
  border-radius: 4px;
  background: rgba(255,255,255,.82);
  min-height: 48px;
  padding: 13px 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214, 162, 59, .15); }
textarea { min-height: 76px; margin: 12px 0; resize: vertical; }
.form-message {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
}
.form-message.error {
  color: #7a1f17;
  background: #f8dfdb;
  border: 1px solid #e4b1a9;
}
.form-message.success {
  color: #0f3b28;
  background: #dff3e8;
  border: 1px solid #acd8bf;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr .72fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 32px clamp(32px, 8vw, 92px) 22px;
  color: var(--white);
  background: radial-gradient(circle at 20% 0%, rgba(214, 162, 59, .08), transparent 32%), #050b0b;
}
.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 38px;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,.25);
}
.site-footer nav a:hover { color: var(--gold-2); }
.site-footer address {
  display: grid;
  gap: 4px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
}
.copyright {
  grid-column: 1 / -1;
  justify-self: center;
  color: rgba(255,255,255,.86);
}
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 12;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(9, 48, 41, .92);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}

.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 30;
  width: min(350px, calc(100vw - 24px));
  display: grid;
  gap: 0;
  animation: waFadeIn .35s ease;
}
.wa-widget .is-hidden {
  display: none !important;
}
.wa-widget-launcher {
  width: 52px;
  height: 52px;
  margin-left: auto;
  border: 1px solid rgba(200,95,134,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: #222;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(50,37,42,.16);
}
.wa-widget-launcher svg {
  width: 26px;
  height: 26px;
  display: block;
  margin: 0 auto;
  fill: currentColor;
}
.wa-widget-panel {
  overflow: hidden;
  border: 1px solid rgba(200,95,134,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 44px rgba(50,37,42,.2);
}
.wa-widget-panel.is-hidden {
  display: none;
}
.wa-widget-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(232,143,175,.2), rgba(255,255,255,.95));
  border-bottom: 1px solid rgba(200,95,134,.2);
}
.wa-widget-close {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: #343434;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.wa-widget-head img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(200,95,134,.35);
}
.wa-widget-head strong {
  display: block;
  font-size: 14px;
}
.wa-widget-head small {
  color: #59514f;
  font-size: 12px;
}
.wa-widget-body {
  padding: 14px;
}
.wa-widget-body p {
  margin: 0;
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 4px;
  background: #f5eff1;
  color: #2c2c2c;
  font-size: 14px;
}
.wa-widget-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 12px 12px;
}
.wa-widget-form textarea {
  min-height: 36px;
  max-height: 90px;
  padding: 10px 12px;
  border-radius: 10px;
  resize: vertical;
  font-size: 14px;
}
.wa-widget-form button {
  min-width: 72px;
  min-height: 38px;
  max-height: 40px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,95,134,.45);
  border-radius: 10px;
  background: linear-gradient(135deg, #d45f8d, #f0a6bf);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  align-self: center;
  margin-top: 4px;
}
@keyframes waFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.approach-section,
.blog-section {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.94)),
    radial-gradient(circle at 14% 18%, rgba(232,143,175,.13), transparent 26%),
    #fbfaf8;
}
.approach-section .section-heading h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
}
.approach-grid,
.blog-grid,
.blog-page-grid {
  display: grid;
  gap: 18px;
}
.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.approach-grid article,
.blog-card,
.blog-article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 95, 134, .16);
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(84, 59, 68, .08);
}
.approach-grid article {
  padding: 28px;
}
.approach-grid article::after,
.blog-card::after,
.blog-article::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(232, 143, 175, .12);
}
.approach-grid span,
.blog-card span,
.blog-article span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(232,143,175,.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.approach-grid h3,
.blog-card h3,
.blog-article h2 {
  margin: 16px 0 10px;
  color: #242424;
  font-family: "Poppins", "Geist", Arial, sans-serif;
  line-height: 1.22;
}
.approach-grid h3 {
  font-size: 24px;
}
.approach-grid p,
.blog-card p,
.blog-article p {
  margin: 0;
  color: #5a5552;
}
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}
.blog-card h3 {
  font-size: 20px;
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h3 a:hover {
  color: var(--gold);
}
.blog-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold);
  font-weight: 800;
}
.blog-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.blog-article {
  padding: 30px;
}
.blog-article h2 {
  font-size: 30px;
}
.blog-article p + p {
  margin-top: 14px;
}
.article-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}
.legal-detail,
.article-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.legal-detail article,
.article-detail article,
.legal-detail aside,
.article-detail aside {
  border: 1px solid rgba(200, 95, 134, .16);
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(84, 59, 68, .08);
}
.legal-detail article,
.article-detail article {
  padding: 34px;
}
.legal-detail aside,
.article-detail aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
}
.legal-detail h2,
.article-detail h2,
.legal-detail h3,
.article-detail h3 {
  margin: 0 0 12px;
  color: #242424;
}
.legal-detail p,
.article-detail p {
  margin: 0 0 16px;
  color: #56514f;
}
.legal-detail ul {
  margin: 0;
  padding-left: 20px;
  color: #56514f;
}
.article-detail aside a:not(.btn),
.legal-detail aside a:not(.btn) {
  color: var(--gold);
  font-weight: 800;
}

.page-hero {
  padding: 68px clamp(28px, 8vw, 102px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 8, 8, .96), rgba(8, 46, 40, .88)),
    radial-gradient(circle at 78% 20%, rgba(214, 162, 59, .16), transparent 30%);
}
.page-hero h1 { font-size: clamp(42px, 6vw, 68px); }
.page-hero p { max-width: 650px; margin: 18px 0 0; font-size: 18px; }
.content-section {
  padding: 56px clamp(28px, 8vw, 102px);
  background: var(--paper);
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.portrait-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #d9d5ca;
}
.portrait-card img { width: 100%; }
.rich-text h2 {
  margin: 0 0 18px;
  font-family: "Poppins", "Geist", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
}
.rich-text p { margin: 0 0 16px; color: #27312e; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.detail-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.detail-card h2, .detail-card h3 { margin: 0 0 10px; }
.detail-card h2 { font-family: "Poppins", "Geist", Arial, sans-serif; font-size: 28px; }
.detail-card p { margin: 0; color: #303936; }
.contact-page {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
}

@media (max-width: 980px) {
  .site-header {
    height: 76px;
    padding: 0 24px;
  }
  .brand strong { font-size: 19px; }
  .brand small { font-size: 10px; }
  .main-nav, .whatsapp-link { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 18px;
    background: rgba(4, 9, 9, .98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a::after { display: none; }

  .hero {
    min-height: 510px;
    grid-template-columns: 1fr;
    position: relative;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 10, .88), rgba(5, 10, 10, .48));
    pointer-events: none;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 34px 28px 32px;
    max-width: none;
  }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .quick-services {
    display: grid;
    gap: 11px;
    margin: 30px 0 32px;
  }
  .hero-actions { display: grid; gap: 12px; }
  .btn { width: 100%; min-height: 56px; }
  .hero-photo {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 56%;
    height: 82%;
    padding: 0;
    opacity: .95;
  }
  .hero-photo::before { display: none; }
  .hero-photo img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: top center;
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 28px 30px;
  }
  .about-values {
    grid-template-columns: repeat(3, 1fr);
    min-height: 86px;
    padding: 14px 8px;
    border-left: 0;
    border-radius: var(--radius);
    background: rgba(0,0,0,.22);
    text-align: center;
    font-size: 14px;
  }
  .about-values span + span { border-left: 1px solid rgba(255,255,255,.35); }

  .service-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 58px 1fr 26px;
    gap: 14px;
    align-items: center;
    padding: 18px 18px;
    text-align: left;
  }
  .service-card svg { margin: 0; }
  .service-card a { margin: 0; padding-top: 0; justify-self: end; color: #8b806d; }

  .why-band {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    background: var(--paper);
    color: var(--ink);
  }
  .why-band::before {
    content: "Neden Biz?";
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
  }
  .why-band article {
    border-right: 0;
    padding: 14px 0;
  }
  .circle-icon {
    width: 76px;
    height: 76px;
    padding: 18px;
    border-radius: 50%;
    color: var(--gold-2);
    background: radial-gradient(circle at 20% 20%, #104a40, #071311);
  }
  .why-band p { color: #26312e; font-size: 14px; }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 28px;
    background: linear-gradient(135deg, #082923, #07110f);
    color: var(--white);
  }
  .contact-section .contact-info { order: 2; color: var(--ink); margin: 0 -28px -32px; padding: 32px 28px; background: var(--paper); }
  .contact-info li { color: #27312e; }
  .contact-form {
    padding-left: 0;
    border-left: 0;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form input,
  .contact-form textarea {
    min-height: 56px;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
  }
  .contact-form textarea { min-height: 126px; }
  .contact-form .btn {
    min-height: 62px;
    font-size: 15px;
  }
  .contact-form .btn-dark { color: var(--ink); background: linear-gradient(135deg, var(--gold-2), var(--gold)); }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 28px 22px;
  }
  .site-footer nav {
    grid-template-columns: 1fr;
    padding-left: 0;
    border-left: 0;
    gap: 0;
  }
  .site-footer nav a {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .copyright { justify-self: start; }
  .back-top { display: grid; }
  .wa-widget {
    right: 12px;
    bottom: 78px;
    width: min(340px, calc(100vw - 16px));
  }
  .wa-widget-form {
    grid-template-columns: 1fr;
  }
  .wa-widget-form button {
    min-height: 46px;
  }
  .split, .detail-grid, .contact-page { grid-template-columns: 1fr; }
  .approach-grid,
  .blog-grid,
  .blog-page-grid,
  .legal-detail,
  .article-detail {
    grid-template-columns: 1fr;
  }
  .approach-grid article,
  .blog-card,
  .blog-article {
    padding: 22px;
  }
  .legal-detail article,
  .article-detail article,
  .legal-detail aside,
  .article-detail aside {
    padding: 22px;
  }
  .legal-detail aside,
  .article-detail aside {
    position: static;
  }
}

@media (max-width: 540px) {
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 9px; }
  .hero { min-height: 510px; }
  .hero h1 { font-size: 36px; max-width: 235px; }
  .hero p { max-width: 225px; }
  .hero-photo { right: -54px; width: 70%; height: 78%; }
  .section { padding: 34px 28px; }
  .section-heading h2 { text-align: left; font-size: 30px; }
  .centered .section-kicker { justify-content: flex-start; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 13px; }
}

/* Floral business-card refresh */
:root {
  --ink: #252525;
  --green: #1c665e;
  --green-2: #2b8b82;
  --gold: #c85f86;
  --gold-2: #e68faf;
  --paper: #fbfaf8;
  --muted: #66615e;
  --shadow: 0 18px 45px rgba(50, 37, 42, .1);
}

body {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.92)),
    url("assets/floral-top.jpg") top center / 1200px auto no-repeat fixed,
    radial-gradient(circle at 12% 12%, rgba(232, 143, 175, .14), transparent 28%),
    radial-gradient(circle at 85% 88%, rgba(232, 143, 175, .08), transparent 30%),
    #fbfaf8;
  color: var(--ink);
}

.site-header {
  height: 88px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(37,37,37,.08);
  box-shadow: 0 12px 32px rgba(42, 30, 34, .08);
  backdrop-filter: blur(14px);
}
.brand-mark {
  color: var(--ink);
}
.brand strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .7px;
}
.brand small {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .55px;
}
.brand.brand-has-logo {
  gap: 0;
}
.brand.brand-has-logo .brand-mark {
  width: clamp(176px, 19vw, 276px);
  height: 58px;
}
.brand.brand-has-logo .brand-mark img {
  object-fit: contain;
  object-position: left center;
}
.brand.brand-has-logo .brand-divider,
.brand.brand-has-logo > span:last-child {
  display: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}
.main-nav a::after {
  background: var(--gold-2);
}
.whatsapp-link {
  color: var(--ink);
  border-color: rgba(200, 95, 134, .7);
  background: rgba(232, 143, 175, .08);
}
.whatsapp-link:hover {
  color: #fff;
  background: var(--gold);
}
.whatsapp-link span { display: none !important; }

.hero {
  min-height: 560px;
  color: var(--ink);
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  background:
    linear-gradient(96deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 52%, rgba(255,255,255,.82) 100%),
    url("assets/floral-top.jpg") center center / cover no-repeat,
    radial-gradient(circle at 12% 18%, rgba(232,143,175,.14), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(232,143,175,.16), transparent 26%),
    linear-gradient(135deg, #fff, #f8f3f4);
}
.hero-copy {
  max-width: 640px;
  margin: 0;
  margin-left: clamp(32px, 9vw, 112px);
  align-self: center;
  padding: 34px 34px 32px;
  border: 1px solid rgba(200,95,134,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 40px rgba(71,47,56,.09);
}
.hero h1 {
  max-width: 520px;
  color: #242424;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
}
.hero-logo-title {
  max-width: 510px;
  margin: 0;
}
.hero-logo-image {
  width: min(100%, 510px);
  height: auto;
  object-fit: contain;
}
.hero h1 span {
  display: block;
  margin-top: 10px;
  color: #242424;
  font-size: .4em;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: .02em;
}
.gold-rule {
  width: 88px;
  background: linear-gradient(90deg, var(--gold), rgba(232,143,175,.25));
}
.hero p {
  color: #4f4b49;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}
.quick-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 32px;
}
.quick-services span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(200,95,134,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #353535;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(84,59,68,.08);
}
.quick-services svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}
.btn {
  border-radius: 999px;
}
.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #d45f8d, #f0a6bf);
}
.btn-outline {
  color: var(--ink);
  border-color: rgba(37,37,37,.22);
  background: rgba(255,255,255,.72);
}
.hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 26px clamp(18px, 3vw, 34px) 24px 8px;
}
.hero-photo::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.52));
}
.hero-photo img {
  width: min(450px, 98%);
  max-height: 540px;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  border: 1px solid rgba(200,95,134,.18);
  background: rgba(255,255,255,.62);
  filter: drop-shadow(0 24px 36px rgba(37,37,37,.18));
}

.about-strip,
.why-band,
.contact-section,
.site-footer,
.page-hero {
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.93), rgba(255,255,255,.93)),
    url("assets/floral-top.jpg") top right / 520px auto no-repeat,
    #fbfaf8;
}
.about-strip,
.why-band {
  border-top: 1px solid rgba(37,37,37,.06);
  border-bottom: 1px solid rgba(37,37,37,.06);
}
.section-kicker {
  color: var(--gold);
}
.about-strip h2,
.section-heading h2,
.page-hero h1,
.rich-text h2,
.detail-card h2 {
  color: #242424;
  font-weight: 600;
  line-height: 1.2;
}
.section-heading h2,
.page-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
}
.about-strip h2,
.rich-text h2 {
  font-size: clamp(24px, 2.4vw, 32px);
}
.detail-card h2 {
  font-size: clamp(24px, 2.6vw, 31px);
}
.detail-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 800;
}
.about-strip p:not(.section-kicker),
.why-band p,
.rich-text p,
.detail-card p {
  color: #56514f;
}
.about-values {
  color: var(--ink);
  border-left-color: rgba(200, 95, 134, .28);
}

.services-section {
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.94)),
    radial-gradient(circle at 8% 20%, rgba(232,143,175,.12), transparent 24%);
}
.service-card,
.detail-card {
  border: 1px solid rgba(200, 95, 134, .16);
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(84, 59, 68, .09);
}
.service-card:hover {
  border-color: rgba(200, 95, 134, .34);
}
.service-card svg,
.circle-icon {
  color: var(--gold);
  stroke: var(--gold);
}

.why-band article {
  border-right-color: rgba(200,95,134,.18);
}
.circle-icon {
  padding: 11px;
  border-radius: 50%;
  background: rgba(232,143,175,.1);
}

.contact-form {
  border-left-color: rgba(200,95,134,.22);
}
.contact-info li span {
  color: var(--gold);
}
input,
textarea {
  border-color: rgba(37,37,37,.14);
  background: rgba(255,255,255,.9);
  border-radius: 10px;
}
input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,143,175,.18);
}
.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, #252525, #51484b);
}

.site-footer {
  border-top: 1px solid rgba(37,37,37,.08);
  background:
    linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.96)),
    url("assets/floral-band.jpg") center top / cover no-repeat,
    #fbfaf8;
}
.site-footer nav {
  border-left-color: rgba(200,95,134,.2);
}
.site-footer nav a:hover {
  color: var(--gold);
}
.copyright {
  color: #68605f;
}
.back-top {
  color: #fff;
  background: var(--gold);
}

.faq-section {
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.94)),
    radial-gradient(circle at 80% 20%, rgba(232,143,175,.1), transparent 25%);
}
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(200,95,134,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 30px rgba(84, 59, 68, .08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #56514f;
}

.map-section {
  padding-top: 22px;
}
.map-wrap {
  overflow: hidden;
  border: 1px solid rgba(200,95,134,.22);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(84, 59, 68, .1);
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.map-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.certificate-section {
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.96)),
    radial-gradient(circle at 14% 16%, rgba(232,143,175,.12), transparent 24%),
    #fbfaf8;
}
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.certificate-card {
  padding: 0;
  border: 1px solid rgba(200,95,134,.18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(50,37,42,.12);
  overflow: hidden;
  cursor: zoom-in;
}
.certificate-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(13, 12, 12, .82);
  padding: 20px;
}
.image-lightbox img {
  max-width: min(960px, 96vw);
  max-height: 90vh;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.image-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    height: 82px;
  }
  .main-nav {
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 30px rgba(42,30,34,.08);
  }
  .main-nav a {
    color: var(--ink);
    border-bottom-color: rgba(37,37,37,.08);
    font-size: 16px;
    font-weight: 600;
  }
  .menu-toggle {
    color: var(--gold);
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    background:
      linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
      url("assets/floral-top.jpg") top center / cover no-repeat,
      #fff;
  }
  .hero::after {
    background: linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.28));
  }
  .hero h1 { font-size: 34px; max-width: 300px; line-height: 1.16; }
  .hero h1 span { font-size: .45em; line-height: 1.34; margin-top: 8px; }
  .hero-logo-title {
    max-width: 420px;
  }
  .hero-copy {
    margin: 22px 20px 14px;
    padding: 22px 18px 20px;
    align-self: start;
  }
  .hero-photo {
    width: 100%;
    height: auto;
    padding: 0 20px 20px;
    align-self: start;
    justify-content: center;
  }
  .hero-photo img {
    width: min(360px, 100%);
    max-height: 420px;
    margin: 0 auto;
  }
  .quick-services {
    margin: 22px 0 26px;
    gap: 10px;
  }
  .quick-services span {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }
  .hero-actions {
    max-width: 330px;
  }
  .about-values {
    background: rgba(255,255,255,.74);
    box-shadow: 0 14px 36px rgba(84, 59, 68, .08);
  }
  .about-values span + span {
    border-left-color: rgba(200,95,134,.2);
  }
  .why-band {
    background: #fbfaf8;
  }
  .circle-icon {
    background: rgba(232,143,175,.12);
    color: var(--gold);
  }
  .contact-section {
    color: var(--ink);
    background:
      linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.94)),
      url("assets/floral-band.jpg") top right / 520px auto no-repeat,
      #fbfaf8;
  }
  .contact-section .contact-info {
    background: rgba(255,255,255,.72);
  }
  .contact-form .btn-dark {
    color: #fff;
    background: linear-gradient(135deg, #d45f8d, #f0a6bf);
  }
  .map-wrap iframe {
    height: 300px;
  }
  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .site-footer {
    background:
      linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.96)),
      url("assets/floral-band.jpg") top center / 560px auto no-repeat,
      #fbfaf8;
  }
}

@media (max-width: 540px) {
  .site-header {
    height: 78px;
  }
  .brand strong { font-size: 20px; }
  .brand small {
    font-size: 9px;
  }
  .brand.brand-has-logo .brand-mark {
    width: 156px;
    height: 46px;
  }
  .hero { min-height: auto; }
  .hero h1 { font-size: 31px; max-width: 240px; line-height: 1.18; }
  .hero h1 span { font-size: .46em; line-height: 1.35; margin-top: 7px; }
  .hero p {
    max-width: 245px;
  }
  .quick-services {
    max-width: 240px;
  }
  .hero-copy { margin: 24px 18px 28px; padding: 24px 18px 22px; }
  .hero-photo {
    right: auto;
    width: 100%;
    height: auto;
    padding: 0 14px 18px;
  }
  .hero-photo img {
    width: min(320px, 100%);
    max-height: 380px;
  }
  .faq-item summary {
    font-size: 16px;
  }
  .map-wrap iframe {
    height: 260px;
  }
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .approach-section {
    padding: 24px 18px !important;
  }
  .approach-section .section-heading {
    margin-bottom: 14px !important;
  }
  .approach-section .section-kicker {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  .approach-section .section-heading h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }
  .approach-grid {
    gap: 10px !important;
  }
  .approach-grid article {
    padding: 16px !important;
    border-radius: 10px !important;
  }
  .approach-grid article::after {
    width: 72px !important;
    height: 72px !important;
    right: -24px !important;
    top: -24px !important;
  }
  .approach-grid span {
    min-height: 22px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
  }
  .approach-grid h3 {
    margin: 10px 0 6px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
  }
  .approach-grid p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .services-section .section-heading h2,
  .blog-section .section-heading h2,
  .faq-section .section-heading h2 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 0;
    position: static !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
      url("assets/floral-top.jpg") top center / cover no-repeat,
      #fff;
  }
  .hero::after {
    display: none !important;
    content: none !important;
  }
  .hero-photo {
    order: 1;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    padding: 14px 14px 6px;
    justify-content: center;
    opacity: 1 !important;
  }
  .hero-photo img {
    width: min(360px, 100%);
    max-height: 320px;
    object-fit: contain;
    margin: 0 auto;
  }
  .hero-copy {
    order: 2;
    width: calc(100% - 28px);
    margin: 0 14px 18px;
    padding: 18px 14px 16px;
    position: relative !important;
    z-index: 1 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
  }
  .hero-logo-title {
    order: 1;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .hero-logo-image {
    width: min(100%, 320px);
    margin: 0 auto;
  }
  .gold-rule {
    display: none;
  }
  .quick-services {
    order: 2;
    margin: 2px 0 4px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .quick-services span {
    min-height: 74px;
    padding: 10px 8px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
    gap: 7px;
    font-weight: 600;
  }
  .quick-services svg {
    width: 18px;
    height: 18px;
  }
  .hero p {
    order: 3;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    text-align: left;
  }
  .hero-actions {
    order: 4;
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 2px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 10px;
    font-size: 12px;
    gap: 8px;
  }
}

/* Final mobile hero lock */
@media (max-width: 980px) {
  .quick-services {
    display: none !important;
  }
  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    position: static !important;
    overflow: visible !important;
  }
  .hero::after {
    display: none !important;
    content: none !important;
  }
  .hero-photo {
    order: 1 !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    padding: 14px 14px 8px !important;
    opacity: 1 !important;
    justify-content: center !important;
    align-self: auto !important;
  }
  .hero-photo img {
    width: min(360px, 100%) !important;
    max-height: 320px !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto !important;
  }
  .hero-copy {
    order: 2 !important;
    width: calc(100% - 28px) !important;
    margin: 0 14px 18px !important;
    padding: 18px 14px 16px !important;
    position: relative !important;
    z-index: 1 !important;
    border-radius: 16px !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .hero-logo-title {
    order: 1 !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .hero-logo-image {
    width: min(100%, 320px) !important;
    margin: 0 auto !important;
  }
  .gold-rule {
    display: none !important;
  }
  .quick-services {
    order: 2 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 2px 0 4px !important;
    align-items: stretch !important;
  }
  .quick-services span {
    min-height: 96px !important;
    padding: 10px 7px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    gap: 7px !important;
    font-weight: 600 !important;
    white-space: normal !important;
    word-break: normal !important;
  }
  .quick-services span em {
    display: block !important;
    min-height: 2.5em !important;
    font-style: normal !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
  }
  .quick-services svg {
    width: 18px !important;
    height: 18px !important;
    margin-top: 1px !important;
  }
  .hero p {
    order: 3 !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
  .hero-actions {
    order: 4 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    gap: 8px !important;
  }
  .back-top {
    display: none !important;
  }
}

/* definitive mobile hide for hero quick services */
@media (max-width: 980px) {
  .hero .quick-services {
    display: none !important;
  }
}

/* mobile hero photo fill */
@media (max-width: 980px) {
  .hero .hero-photo {
    padding: 10px 14px 8px !important;
  }
  .hero .hero-photo img {
    width: 100% !important;
    height: 360px !important;
    max-height: 360px !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 540px) {
  .hero .hero-photo img {
    height: 320px !important;
    max-height: 320px !important;
    object-position: center 18% !important;
  }
}
