@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root{
  --bg:#f7f7f5;
  --bg-soft:#fcfcfa;
  --panel:rgba(255,255,255,.82);
  --panel-strong:#ffffff;
  --line:rgba(20,28,36,.08);
  --line-strong:rgba(20,28,36,.14);
  --text:#18212a;
  --muted:#66727d;
  --accent:#b58a5a;
  --accent-dark:#946c42;
  --accent-soft:#f6eee5;
  --shadow:0 24px 60px rgba(18,30,42,.06);
  --shadow-soft:0 12px 32px rgba(18,30,42,.04);
  --radius-xl:30px;
  --radius-lg:24px;
  --radius-md:18px;
  --container:min(1280px, calc(100vw - 48px));
}

*,
*::before,
*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Source Sans 3","Source Sans Pro",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), transparent 34%),
    radial-gradient(circle at top right, rgba(246,238,229,.7), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafaf8 42%, #f5f5f2 100%);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

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

button,
input,
textarea,
select{
  font:inherit;
}

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

.container{
  width:var(--container);
  margin:0 auto;
}

.narrow{ max-width:860px; }

.section{ padding:96px 0; }

.section-kicker,
.eyebrow,
.card-label{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.74rem;
  color:var(--accent-dark);
  font-weight:700;
}

.section h2,
.hero h1,
.footer h3,
.footer h4,
.featured-body h3,
.copy-card h3,
.benefit-card h3,
.appointment-form h3,
.catalog-name{
  font-family:"Source Sans 3","Source Sans Pro",system-ui,sans-serif;
  letter-spacing:-.03em;
  line-height:1;
  margin:0;
  font-weight:600;
}

.hero h1{
  font-size:clamp(3rem, 7vw, 5.8rem);
  max-width:11ch;
}

.section h2{ font-size:clamp(2.2rem, 4vw, 3.9rem); max-width:13ch; }

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

.section-text{
  max-width:62ch;
  color:var(--muted);
  font-size:1.03rem;
  line-height:1.8;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  background:rgba(255,255,255,.78);
  border-bottom:1px solid rgba(20,28,36,.06);
}

.topbar-inner{
  display:flex;
  align-items:center;
  gap:24px;
  min-height:82px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:max-content;
}

.brand-mark{
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid var(--line-strong);
  font-size:1.05rem;
  font-weight:700;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-soft);
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-text strong{
  font-size:1rem;
  line-height:1.1;
  font-weight:700;
}

.brand-text small{
  color:var(--muted);
  font-size:.79rem;
}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
  margin-right:24px;
}

.nav a,
.mobile-menu a{
  color:var(--muted);
  transition:color .2s ease, opacity .2s ease;
  font-weight:600;
}

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

.header-actions{
  display:flex;
  gap:12px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  letter-spacing:.01em;
  transition:transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  cursor:pointer;
}

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

.button-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  color:#fff;
  box-shadow:0 14px 28px rgba(148,108,66,.22);
}

.button-primary:hover{
  box-shadow:0 18px 34px rgba(148,108,66,.28);
}

.button-secondary{
  background:rgba(255,255,255,.9);
  border-color:var(--line-strong);
  color:var(--text);
  box-shadow:var(--shadow-soft);
}

.button-large{
  min-height:56px;
  padding:0 26px;
}

.button-block{ width:100%; }

.inline-link{
  font-weight:700;
  color:var(--accent-dark);
}

.inline-link:hover{ text-decoration:underline; }

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:rgba(255,255,255,.92);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
}

.menu-toggle span{
  width:18px;
  height:2px;
  background:var(--text);
  display:block;
  border-radius:99px;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:16px;
  padding:0 24px 24px;
}

.hero{
  position:relative;
  min-height:calc(100vh - 82px);
  padding:48px 0 40px;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(100deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.74) 38%, rgba(255,255,255,.16) 62%, rgba(255,255,255,.04) 100%),
    url("./images/2026/full/rose_fantasy_8.jpg") center/cover no-repeat;
  transform:scale(1.02);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.28));
}

.hero-overlay{ display:none; }

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:end;
  gap:28px;
  min-height:calc(100vh - 170px);
}

.glass-panel{
  background:var(--panel);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}

.hero-copy{
  padding:44px;
  border-radius:var(--radius-xl);
  color:var(--text);
}

.hero-copy .lead{
  font-size:1.08rem;
  line-height:1.9;
  max-width:56ch;
  color:#4f5d68;
  margin:18px 0 0;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:30px 0;
}
.social-proof-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin:0 0 28px;
}

.social-proof-card{
  padding:18px 18px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(20,28,36,.08);
  box-shadow:var(--shadow-soft);
}

.social-proof-card strong{
  display:block;
  font-size:2rem;
  line-height:1;
  font-weight:800;
  color:var(--text);
  margin-bottom:8px;
}

.social-proof-card span{
  display:block;
  color:var(--muted);
  line-height:1.5;
  font-size:.98rem;
}


.hero-points{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-points li{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(20,28,36,.08);
  background:rgba(255,255,255,.78);
  color:#41505b;
  font-size:.96rem;
  box-shadow:var(--shadow-soft);
}

.hero-card{
  display:flex;
  align-items:end;
  justify-content:end;
}

.hero-image-card{
  width:min(100%, 470px);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:0 34px 70px rgba(18,30,42,.11);
  position:relative;
  min-height:640px;
  border:1px solid rgba(255,255,255,.8);
  background:#fff;
}

.hero-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-image-caption{
  position:absolute;
  inset:auto 20px 20px 20px;
  background:rgba(255,255,255,.76);
  color:var(--text);
  border:1px solid rgba(255,255,255,.75);
  border-radius:22px;
  padding:16px 18px;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--shadow-soft);
}

.hero-image-caption span{
  display:block;
  font-size:.76rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:6px;
  font-weight:700;
}

.intro{ padding-top:88px; }

.intro p,
.featured-body p,
.copy-card p,
.benefit-card p,
.appointment-copy p,
.contact-item,
.footer p,
.footer-list,
.demo-form label,
.process-list span{
  color:var(--muted);
  line-height:1.82;
}

.intro p{ font-size:1.05rem; }

.social-media{
  padding-top:0;
}

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

.social-card{
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height:100%;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84));
  border:1px solid rgba(20,28,36,.08);
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}

.social-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(18,30,42,.08);
  border-color:rgba(181,138,90,.22);
}

.social-card-top{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.social-tag{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent-dark);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  font-weight:800;
}

.social-handle{
  color:var(--muted);
  font-size:.95rem;
  font-weight:600;
}

.social-card h3{
  font-size:2rem;
  line-height:1.05;
  margin:0;
}

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

.social-card-footer{
  margin-top:auto;
  display:flex;
  align-items:end;
  gap:10px;
  padding-top:8px;
  border-top:1px solid rgba(20,28,36,.08);
}

.social-card-footer strong{
  font-size:2rem;
  line-height:1;
  font-weight:800;
}

.social-card-footer span{
  color:var(--muted);
  font-size:.95rem;
  padding-bottom:4px;
}

.featured-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.featured-card,
.copy-card,
.benefit-card,
.contact-item,
.catalog-card{
  background:var(--panel-strong);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.featured-card{
  border-radius:28px;
  overflow:hidden;
}

.featured-image{
  aspect-ratio:4/5;
  display:block;
  overflow:hidden;
  background:#f2f2ef;
}

.featured-image img,
.catalog-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease, filter .25s ease;
}

.featured-card:hover .featured-image img,
.catalog-card:hover .catalog-thumb img{
  transform:scale(1.03);
}

.featured-body{ padding:24px; }

.featured-body h3{ font-size:2rem; margin:0 0 12px; }

.catalog-toolbar{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  padding:18px;
  border-radius:28px;
  margin-bottom:26px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(20,28,36,.06);
  box-shadow:var(--shadow-soft);
}

.toolbar-group{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.filter-button{
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:#fff;
  cursor:pointer;
  color:var(--text);
  font-weight:700;
  box-shadow:none;
  transition:all .2s ease;
}

.filter-button:hover{
  border-color:rgba(148,108,66,.34);
  color:var(--accent-dark);
}

.filter-button.is-active{
  background:var(--accent-soft);
  border-color:rgba(181,138,90,.34);
  color:var(--accent-dark);
}

.search-wrap{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:min(100%, 320px);
  color:var(--muted);
  font-size:.92rem;
}

.search-wrap input{
  min-height:50px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid var(--line-strong);
  background:#fff;
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.search-wrap input:focus,
.demo-form input:focus,
.demo-form textarea:focus{
  border-color:rgba(181,138,90,.42);
  box-shadow:0 0 0 4px rgba(181,138,90,.10);
}

.two-column-copy{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  margin-bottom:30px;
}

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

.copy-card h3{ font-size:2rem; margin:0 0 10px; }

.year-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent-dark);
  font-size:.8rem;
  font-weight:700;
  margin-bottom:14px;
}

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.catalog-card{
  border-radius:24px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}

.catalog-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(18,30,42,.08);
  border-color:rgba(20,28,36,.12);
}

.catalog-thumb{
  display:block;
  aspect-ratio:4/5;
  overflow:hidden;
  background:#f1f1ed;
}

.catalog-body{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.catalog-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
  font-size:.86rem;
}

.catalog-name{
  font-size:1.85rem;
  line-height:1;
}

.catalog-cta{ margin-top:8px; }

.hidden{ display:none !important; }

.empty-state{
  text-align:center;
  color:var(--muted);
  padding:20px 0 0;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-bottom:28px;
}

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

.benefit-card h3{ font-size:1.85rem; margin:0 0 10px; }

.process-panel{
  border-radius:30px;
  padding:30px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:start;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(20,28,36,.06);
  box-shadow:var(--shadow);
}

.process-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:18px;
}

.process-list li{
  padding:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
  display:grid;
  gap:8px;
  box-shadow:var(--shadow-soft);
}

.process-list strong{
  font-size:1.03rem;
  color:var(--text);
}

.appointment-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:26px;
  align-items:start;
}

.contact-list{
  display:grid;
  gap:14px;
  margin-top:28px;
}

.contact-item{
  border-radius:22px;
  padding:18px 20px;
  display:grid;
  gap:6px;
}

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

.contact-item strong{ font-size:1.02rem; color:var(--text); }

.appointment-form{
  border-radius:30px;
  padding:28px;
}

.appointment-form h3{ font-size:2rem; margin:0 0 18px; }

.demo-form{
  display:grid;
  gap:16px;
}

.demo-form label{
  display:grid;
  gap:8px;
  font-size:.95rem;
}

.demo-form input,
.demo-form textarea{
  width:100%;
  border:1px solid var(--line-strong);
  border-radius:16px;
  background:#fff;
  padding:14px 16px;
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.demo-form textarea{
  resize:vertical;
  min-height:150px;
}

.form-note{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.7;
  margin:0;
}

.footer{
  padding:40px 0 60px;
  border-top:1px solid rgba(20,28,36,.06);
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.6));
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr;
  gap:24px;
}

.footer h3{ font-size:2rem; margin-bottom:12px; }
.footer h4{ font-size:1.45rem; margin-bottom:12px; }

.footer p,
.footer-list{
  margin:0;
  padding:0;
  list-style:none;
}

.footer-list li + li{ margin-top:6px; }

@media (max-width:1180px){
  .nav,
  .header-actions{ display:none; }

  .menu-toggle{
    display:flex;
    margin-left:auto;
  }

  .mobile-menu.is-open{ display:flex; }

  .hero-grid,
  .appointment-grid,
  .process-panel,
  .featured-grid,
  .two-column-copy,
  .benefits-grid,
  .footer-grid,
  .social-grid{
    grid-template-columns:1fr;
  }

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

  .hero-image-card{ min-height:520px; }
}

@media (max-width:860px){
  :root{ --container:min(100vw - 28px); }

  .section{ padding:72px 0; }

  .hero{
    min-height:auto;
    padding:28px 0 34px;
  }

  .hero-grid{ min-height:auto; }

  .hero-copy{ padding:30px 22px; }

  .catalog-toolbar{
    flex-direction:column;
    align-items:stretch;
  }

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

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

@media (max-width:560px){
  .catalog-grid{ grid-template-columns:1fr; }

  .hero h1{ max-width:12ch; }

  .hero-points{ flex-direction:column; }
  .social-proof-strip{ grid-template-columns:1fr; }

  .topbar-inner{ min-height:74px; }

  .button,
  .filter-button{ width:100%; }

  .toolbar-group{
    display:grid;
    grid-template-columns:1fr;
  }
}


/* Product page */
.topbar-solid {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.product-shell {
  background: linear-gradient(180deg, #fff 0%, #fbfbf8 100%);
}

.product-main {
  padding-top: 1rem;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.product-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 52ch;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin: 1.5rem 0 2rem;
}

.meta-chip {
  min-width: 140px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.meta-chip span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.meta-chip strong {
  font-size: 1rem;
}

.product-hero-card {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.product-hero-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-shot {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.product-shot img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.info-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-panel {
  padding: 2rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.product-steps {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.product-steps li + li {
  margin-top: 0.7rem;
}

@media (max-width: 980px) {
  .product-hero-grid,
  .info-panels,
  .gallery-section-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gallery-section-head {
    align-items: start;
  }

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

@media (max-width: 640px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-meta-row {
    flex-direction: column;
  }
}


.favorite-toggle{
  position:absolute;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.94);
  color:#241f1d;
  box-shadow:0 12px 26px rgba(18,30,42,.12);
  cursor:pointer;
  z-index:4;
  transition:transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.favorite-toggle:hover{
  transform:translateY(-1px) scale(1.02);
  box-shadow:0 16px 30px rgba(18,30,42,.16);
}

.favorite-toggle.is-active{
  background:#fff3f6;
  color:#b14f6f;
}

.favorite-heart{
  font-size:1.45rem;
  line-height:1;
  font-weight:700;
}

.featured-card,
.catalog-card,
.product-hero-card{
  position:relative;
}

.favorites-head{
  align-items:end;
}

.favorites-whatsapp{
  white-space:nowrap;
}

.product-hero-card .favorite-toggle{
  top:22px;
  right:22px;
}

@media (max-width: 640px){
  .favorite-toggle{
    top:14px;
    right:14px;
    width:44px;
    height:44px;
  }

  .favorite-heart{
    font-size:1.3rem;
  }

  .favorites-head{
    gap:16px;
  }

  .favorites-whatsapp{
    width:100%;
  }
}




.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0.85rem 0 1rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.12);
  border-color: rgba(17, 17, 17, 0.18);
}

.social-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: #111111;
}

.footer-list-social {
  margin-top: 0.5rem;
}

.footer-list-social li {
  margin-bottom: 0.35rem;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:stretch;
  gap:28px;
  min-height:calc(100vh - 170px);
}

.hero-card{
  display:flex;
  align-items:stretch;
  justify-content:stretch;
  height:100%;
}

.hero-image-card{
  width:100%;
  max-width:none;
  height:100%;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:0 34px 70px rgba(18,30,42,.11);
  position:relative;
  min-height:640px;
  border:1px solid rgba(255,255,255,.8);
  background:#fff;
}
.hero-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
