@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;700;800&display=swap');

:root{
  --terracotta:#8c5639;
  --terracotta-dark:#5e3526;
  --palm:#87986A;
  --palm-dark:#5f6d49;
  --ivory:#fff8eb;
  --sand:#f3eadc;
  --ink:#8c5639;
  --text:#2b2b2b;
  --muted:#706b63;
  --line:rgba(94,53,38,.16);
  --white:#ffffff;
  --shadow:0 24px 70px rgba(49,32,21,.16);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Cairo',sans-serif;
  background:var(--ivory);
  color:var(--text);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(115deg, rgba(140,86,57,.08), transparent 34%),
    radial-gradient(circle at 12% 28%, rgba(135,152,106,.16), transparent 26%),
    linear-gradient(180deg, var(--ivory), #fff);
}

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

a{
  color:inherit;
}

.header{
  position:fixed;
  top:18px;
  left:50%;
  z-index:100;
  width:min(1120px, calc(100% - 36px));
  height:78px;
  transform:translateX(-50%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 18px 0 24px;
  background:rgba(255,248,235,.76);
  backdrop-filter:blur(18px);
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow:0 18px 44px rgba(49,32,21,.08);
  transition:height .35s ease, background .35s ease, box-shadow .35s ease, top .35s ease;
}

.header.is-scrolled{
  top:10px;
  height:66px;
  background:rgba(255,255,255,.82);
  box-shadow:0 16px 40px rgba(49,32,21,.13);
}

.logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  width:auto;
  height:52px;
  max-width:220px;
  object-fit:contain;
  transition:height .35s ease, transform .35s ease;
}

.header.is-scrolled .logo img{
  height:44px;
}

.logo:hover img{
  transform:scale(1.04);
}

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

.nav a{
  position:relative;
  min-width:86px;
  padding:12px 16px;
  text-align:center;
  text-decoration:none;
  color:var(--text);
  font-size:15px;
  font-weight:800;
  border-radius:999px;
  transition:color .25s ease, background .25s ease, transform .25s ease;
}

.nav a:hover{
  color:var(--palm-dark);
  background:rgba(135,152,106,.16);
  transform:translateY(-2px);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:var(--palm);
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:5px auto;
  background:white;
  border-radius:2px;
  transition:transform .25s ease;
}

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

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

.hero{
  position:relative;
  min-height:100vh;
  display:grid;
  align-items:center;
  grid-template-columns:minmax(0, 1fr) 340px;
  gap:48px;
  padding:132px 6% 72px;
  overflow:hidden;
  isolation:isolate;
}

.hero-image{
  position:absolute;
  inset:0;
  z-index:-3;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
  animation:heroZoom 16s ease-in-out infinite alternate;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg, rgba(255,248,235,.28), rgba(255,248,235,.92) 54%, rgba(255,248,235,.98)),
    linear-gradient(180deg, rgba(21,21,21,.14), transparent 45%, rgba(255,248,235,.88));
}

.hero::after{
  content:"";
  position:absolute;
  right:6%;
  bottom:56px;
  z-index:-1;
  width:44%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(140,86,57,.42), transparent);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  animation:heroContentIn .85s ease both;
}

.kicker,
.section-heading span,
.branch-content span,
.cta-inner span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  font-size:14px;
  font-weight:800;
  color:var(--terracotta-dark);
}

.kicker::before,
.section-heading span::before,
.branch-content span::before,
.cta-inner span::before{
  content:"";
  width:34px;
  height:2px;
  background:var(--palm);
}

.hero h1{
  max-width:760px;
  font-size:clamp(44px, 7vw, 96px);
  line-height:1.08;
  font-weight:800;
  color:var(--ink);
  text-wrap:balance;
}

.description{
  max-width:620px;
  margin:28px 0 34px;
  font-size:19px;
  line-height:2;
  color:var(--muted);
}

.hero-actions,
.buttons,
.cta-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-ghost,
.buttons a,
.cta-buttons a{
  position:relative;
  min-height:54px;
  padding:0 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn-primary,
.buttons a:first-child,
.cta-buttons a{
  background:var(--terracotta);
  color:white;
  box-shadow:0 16px 34px rgba(140,86,57,.25);
}

.btn-ghost,
.buttons a:last-child{
  border:1px solid rgba(135,152,106,.48);
  color:var(--palm-dark);
  background:rgba(255,255,255,.45);
}

.btn-primary:hover,
.btn-ghost:hover,
.buttons a:hover,
.cta-buttons a:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 42px rgba(94,53,38,.2);
}

.hero-panel{
  align-self:end;
  display:grid;
  gap:12px;
  padding:16px;
  border:1px solid rgba(255,255,255,.58);
  border-radius:28px;
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
  animation:heroContentIn .85s .12s ease both;
}

.hero-panel div{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,248,235,.68);
  border:1px solid rgba(135,152,106,.22);
}

.hero-panel strong{
  color:var(--palm-dark);
  font-size:28px;
  line-height:1;
}

.hero-panel span{
  color:var(--muted);
  font-weight:800;
}

.statement{
  padding:118px 6%;
  background:linear-gradient(180deg, #fff, var(--sand));
}

.statement p{
  max-width:1050px;
  font-size:clamp(28px, 4vw, 52px);
  line-height:1.7;
  font-weight:800;
  color:var(--ink);
  text-wrap:balance;
}

.experience-video{
  padding:0 6% 128px;
  background:var(--sand);
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.video-frame{
  position:relative;
  aspect-ratio:16 / 9;
  overflow:hidden;
  border-radius:34px;
  background:var(--terracotta);
  box-shadow:var(--shadow);
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.branches{
  padding:124px 6% 56px;
  background:white;
}

.section-heading{
  max-width:720px;
  margin-bottom:72px;
}

.section-heading h2{
  color:var(--ink);
  font-size:clamp(34px, 4vw, 62px);
  line-height:1.25;
  font-weight:800;
}

.branch-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:64px;
  align-items:center;
  margin-bottom:118px;
}

.reverse{
  direction:ltr;
}

.reverse .branch-content{
  direction:rtl;
}

.branch-image{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  box-shadow:var(--shadow);
}

.branch-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent, rgba(21,21,21,.16));
  opacity:.7;
}

.branch-image img{
  height:680px;
  object-fit:cover;
  transition:transform .75s ease, filter .75s ease;
}

.branch-grid:hover .branch-image img{
  transform:scale(1.06);
  filter:saturate(1.08) contrast(1.03);
}

.branch-content{
  max-width:540px;
}

.branch-content h3{
  margin:14px 0 24px;
  color:var(--ink);
  font-size:clamp(36px, 4.4vw, 66px);
  line-height:1.18;
  font-weight:800;
  text-wrap:balance;
}

.branch-content p{
  max-width:520px;
  color:var(--muted);
  font-size:18px;
  line-height:2;
}

.buttons{
  margin-top:34px;
}

.experience-statement{
  position:relative;
  overflow:hidden;
  padding:172px 6%;
  background:var(--terracotta-dark);
  color:white;
}

.experience-statement::after{
  content:"";
  position:absolute;
  inset:auto 6% 0 auto;
  width:300px;
  height:300px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  transform:translateY(42%);
}

.experience-statement h2{
  position:relative;
  z-index:1;
  max-width:920px;
  font-size:clamp(42px, 6vw, 86px);
  line-height:1.48;
  font-weight:800;
}

.marquee{
  position:absolute;
  top:34px;
  right:0;
  display:flex;
  gap:30px;
  min-width:200%;
  color:rgba(255,255,255,.12);
  font-size:72px;
  font-weight:800;
  white-space:nowrap;
  animation:marquee 24s linear infinite;
}

.gallery-section{
  padding:118px 6%;
  background:white;
}

.gallery-category{
  display:grid;
  gap:24px;
  margin-top:56px;
}

.gallery-category + .gallery-category{
  margin-top:82px;
}

.gallery-category-header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
}

.gallery-category-header span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--terracotta-dark);
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
}

.gallery-category-header span::before{
  content:"";
  width:34px;
  height:2px;
  background:var(--palm);
}

.gallery-category-header h3{
  max-width:620px;
  color:var(--ink);
  font-size:clamp(28px, 3.6vw, 52px);
  line-height:1.2;
  font-weight:800;
  text-align:left;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:18px;
}

.gallery-grid figure{
  position:relative;
  overflow:hidden;
  min-height:430px;
  border-radius:24px;
  background:var(--sand);
  box-shadow:0 18px 48px rgba(49,32,21,.1);
}

.gallery-grid figure:first-child{
  min-height:520px;
}

.gallery-grid img{
  height:100%;
  object-fit:cover;
  transition:transform .7s ease, filter .7s ease;
}

.gallery-grid figure:hover img{
  transform:scale(1.06);
  filter:saturate(1.05);
}

.gallery-more-actions{
  display:flex;
  justify-content:center;
  margin-top:56px;
}

.gallery-more-actions a{
  min-height:56px;
  padding:0 32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--terracotta);
  color:white;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 16px 34px rgba(140,86,57,.2);
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery-more-actions a:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 42px rgba(94,53,38,.2);
}

.gallery-page-hero{
  min-height:76vh;
  display:grid;
  align-items:end;
  padding:140px 6% 70px;
  background:
    linear-gradient(rgba(255,248,235,.88), rgba(255,248,235,.96)),
    url('gallery-ceremony.jpg?v=kh-lounge') center/cover;
}

.gallery-page-section{
  padding:104px 6% 128px;
  background:white;
}

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

.all-gallery-grid figure{
  overflow:hidden;
  min-height:360px;
  border-radius:24px;
  background:var(--sand);
  box-shadow:0 18px 48px rgba(49,32,21,.1);
}

.all-gallery-grid img{
  height:100%;
  object-fit:cover;
  transition:transform .7s ease, filter .7s ease;
}

.all-gallery-grid figure:hover img{
  transform:scale(1.06);
  filter:saturate(1.05);
}

.cta{
  padding:132px 6%;
  text-align:center;
  background:
    linear-gradient(rgba(255,248,235,.9), rgba(255,248,235,.96)),
    url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1800&auto=format&fit=crop') center/cover;
}

.cta-inner{
  max-width:900px;
  margin:0 auto;
}

.cta-inner span{
  justify-content:center;
}

.cta h2{
  margin-bottom:38px;
  color:var(--ink);
  font-size:clamp(36px, 5vw, 68px);
  line-height:1.25;
  font-weight:800;
}

.cta-buttons{
  justify-content:center;
}

.whatsapp{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:999;
  min-height:56px;
  padding:0 24px;
  display:none;
  align-items:center;
  justify-content:center;
  background:var(--ink);
  color:white;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 16px 34px rgba(0,0,0,.22);
  transition:transform .25s ease, background .25s ease;
}

.whatsapp:hover{
  transform:translateY(-4px);
  background:#1f6f48;
}

.branch-page-hero{
  position:relative;
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 330px;
  align-items:end;
  gap:42px;
  padding:140px 6% 70px;
  overflow:hidden;
  isolation:isolate;
  background:var(--ivory);
}

.branch-page-image{
  position:absolute;
  inset:0;
  z-index:-3;
  height:100%;
  object-fit:cover;
}

.branch-page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:rgba(255,248,235,.84);
}

.branch-page-hero::after{
  content:"";
  position:absolute;
  inset:auto 6% 44px 6%;
  z-index:-1;
  height:1px;
  background:rgba(135,152,106,.44);
}

.branch-page-content{
  max-width:830px;
  animation:heroContentIn .85s ease both;
}

.branch-page-content h1{
  max-width:860px;
  color:var(--ink);
  font-size:clamp(46px, 7vw, 98px);
  line-height:1.08;
  font-weight:800;
  text-wrap:balance;
}

.branch-stats{
  align-self:end;
  display:grid;
  gap:12px;
  padding:16px;
  border:1px solid rgba(135,152,106,.22);
  border-radius:28px;
  background:rgba(255,255,255,.62);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
  animation:heroContentIn .85s .12s ease both;
}

.branch-stats div{
  display:grid;
  gap:8px;
  padding:18px;
  border:1px solid rgba(135,152,106,.2);
  border-radius:20px;
  background:rgba(255,248,235,.7);
}

.branch-stats strong{
  color:var(--palm-dark);
  font-size:30px;
  line-height:1;
}

.branch-stats span{
  color:var(--muted);
  font-weight:800;
}

.branch-detail-section,
.branch-media-section,
.lead-section{
  padding:118px 6%;
}

.branch-detail-section{
  display:grid;
  grid-template-columns:1fr .86fr;
  gap:70px;
  align-items:start;
  background:white;
}

.branch-detail-section span,
.lead-section span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--terracotta-dark);
  font-size:14px;
  font-weight:800;
}

.branch-detail-section span::before,
.lead-section span::before{
  content:"";
  width:34px;
  height:2px;
  background:var(--palm);
}

.branch-detail-section h2,
.lead-section h2{
  max-width:780px;
  color:var(--ink);
  font-size:clamp(34px, 4.6vw, 68px);
  line-height:1.22;
  font-weight:800;
  text-wrap:balance;
}

.branch-detail-section p,
.lead-section p{
  max-width:640px;
  margin-top:22px;
  color:var(--muted);
  font-size:18px;
  line-height:2;
}

.feature-list-modern{
  display:grid;
  gap:14px;
}

.feature-list-modern p{
  position:relative;
  max-width:none;
  margin:0;
  padding:22px 24px;
  border:1px solid rgba(135,152,106,.24);
  border-radius:22px;
  background:var(--ivory);
  color:var(--text);
  font-weight:800;
}

.feature-list-modern p::before{
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  margin-left:12px;
  border-radius:50%;
  background:var(--palm);
}

.branch-media-section{
  background:var(--sand);
}

.media-showcase{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:stretch;
}

.media-showcase img{
  height:560px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.media-showcase > div{
  padding:34px;
  border:1px solid rgba(135,152,106,.24);
  border-radius:28px;
  background:white;
}

.media-showcase h3{
  margin-bottom:22px;
  color:var(--ink);
  font-size:34px;
  font-weight:800;
}

.tag-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.tag-grid span{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  border:1px solid rgba(135,152,106,.28);
  border-radius:999px;
  color:var(--palm-dark);
  background:var(--ivory);
  font-weight:800;
  text-align:center;
}

.lead-section{
  display:grid;
  grid-template-columns:.78fr 1fr;
  gap:56px;
  align-items:start;
  background:white;
}

.lead-form-modern{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  padding:24px;
  border:1px solid rgba(135,152,106,.24);
  border-radius:28px;
  background:var(--ivory);
  box-shadow:var(--shadow);
}

.lead-form-modern label{
  display:grid;
  gap:9px;
  color:var(--ink);
  font-size:14px;
  font-weight:800;
}

.lead-form-modern .full,
.form-submit,
.form-note{
  grid-column:1 / -1;
}

.lead-form-modern input,
.lead-form-modern select,
.lead-form-modern textarea{
  width:100%;
  min-height:54px;
  border:1px solid rgba(94,53,38,.16);
  border-radius:16px;
  padding:0 16px;
  background:white;
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease;
}

.lead-form-modern textarea{
  min-height:130px;
  padding-top:14px;
  resize:vertical;
}

.lead-form-modern input:focus,
.lead-form-modern select:focus,
.lead-form-modern textarea:focus{
  border-color:var(--palm);
  box-shadow:0 0 0 4px rgba(135,152,106,.16);
}

.form-submit{
  border:0;
  cursor:pointer;
}

.form-note{
  min-height:28px;
  margin:0;
  color:var(--palm-dark);
  font-weight:800;
}

.site-footer{
  display:grid;
  grid-template-columns:1.1fr .62fr .62fr .78fr;
  gap:44px;
  padding:72px 6% 30px;
  background:var(--palm);
  color:white;
}

.footer-brand img{
  width:220px;
  height:auto;
  margin-bottom:24px;
  filter:brightness(0) invert(1);
}

.footer-brand p{
  max-width:430px;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.9;
}

.footer-links,
.footer-social,
.footer-contact{
  display:grid;
  align-content:start;
  gap:12px;
}

.footer-links h3,
.footer-social h3,
.footer-contact h3{
  margin-bottom:12px;
  color:white;
  font-size:18px;
  font-weight:800;
}

.footer-links a,
.footer-contact a{
  width:max-content;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:800;
  transition:color .25s ease, transform .25s ease;
}

.footer-contact a[href^="tel:"]{
  display:grid;
  grid-template-columns:58px max-content;
  align-items:center;
  column-gap:10px;
  direction:rtl;
}

.footer-contact a[href^="tel:"] span{
  text-align:right;
}

.footer-contact a[href^="tel:"] bdi{
  direction:ltr;
  text-align:left;
  font-variant-numeric:tabular-nums;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:white;
  transform:translateX(-4px);
}

.social-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.social-links a{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  color:white;
  background:rgba(255,255,255,.08);
  text-decoration:none;
  font-size:11px;
  font-weight:800;
  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}

.social-links a:hover{
  transform:translateY(-4px);
  border-color:white;
  background:var(--terracotta);
}

.footer-bottom{
  grid-column:1 / -1;
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.2);
  color:rgba(255,255,255,.76);
  font-size:14px;
  font-weight:800;
}

.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .8s ease, transform .8s ease;
}

.hero .reveal{
  opacity:1;
  transform:none;
}

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

.delay-1{
  transition-delay:.12s;
}

.delay-2{
  transition-delay:.24s;
}

@keyframes heroZoom{
  from{ transform:scale(1.05); }
  to{ transform:scale(1.12); }
}

@keyframes heroContentIn{
  from{
    opacity:0;
    transform:translateY(22px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(50%); }
}

@media(max-width:980px){
  .header{
    width:calc(100% - 28px);
  }

  .menu-toggle{
    display:block;
  }

  .nav{
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    right:0;
    display:grid;
    gap:6px;
    padding:12px;
    background:rgba(255,255,255,.94);
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
  }

  .nav.is-open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  .nav a{
    width:100%;
  }

  .hero{
    min-height:auto;
    grid-template-columns:1fr;
    padding:124px 24px 56px;
  }

  .hero-panel{
    align-self:stretch;
  }

  .statement,
  .branches,
  .experience-statement,
  .cta{
    padding-left:24px;
    padding-right:24px;
  }

  .experience-video{
    padding-left:24px;
    padding-right:24px;
    grid-template-columns:1fr;
  }

  .branch-grid,
  .branch-grid.reverse{
    grid-template-columns:1fr;
    gap:34px;
    direction:rtl;
    margin-bottom:86px;
  }

  .branch-image img{
    height:460px;
  }

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

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

  .gallery-category-header{
    display:grid;
  }

  .gallery-category-header h3{
    text-align:right;
  }

  .gallery-grid figure,
  .gallery-grid figure:first-child{
    min-height:340px;
  }

  .all-gallery-grid figure{
    min-height:320px;
  }

  .branch-page-hero,
  .branch-detail-section,
  .media-showcase,
  .lead-section,
  .site-footer{
    grid-template-columns:1fr;
  }

  .branch-page-hero{
    min-height:auto;
    padding:124px 24px 58px;
  }

  .branch-detail-section,
  .branch-media-section,
  .lead-section,
  .site-footer{
    padding:86px 24px;
  }

  .site-footer{
    gap:34px;
    padding-bottom:28px;
  }

  .footer-bottom{
    grid-column:auto;
  }

  .media-showcase img{
    height:420px;
  }
}

@media(max-width:560px){
  .header{
    top:10px;
    height:66px;
    padding:0 12px 0 14px;
  }

  .logo img{
    height:38px;
    max-width:170px;
  }

  .hero{
    padding-top:104px;
  }

  .hero h1{
    font-size:42px;
  }

  .description,
  .branch-content p{
    font-size:16px;
  }

  .btn-primary,
  .btn-ghost,
  .buttons a,
  .cta-buttons a{
    width:100%;
  }

  .hero-panel div{
    padding:15px;
  }

  .statement{
    padding-top:82px;
    padding-bottom:82px;
  }

  .experience-video{
    padding-bottom:84px;
  }

  .video-frame{
    border-radius:24px;
  }

  .branches{
    padding-top:84px;
  }

  .section-heading{
    margin-bottom:46px;
  }

  .branch-image{
    border-radius:22px;
  }

  .branch-image img{
    height:360px;
  }

  .experience-statement{
    padding-top:122px;
    padding-bottom:122px;
  }

  .marquee{
    font-size:46px;
  }

  .gallery-section{
    padding:84px 10px;
  }

  .gallery-category{
    margin-top:40px;
  }

  .gallery-category + .gallery-category{
    margin-top:58px;
  }

  .gallery-grid{
    gap:10px;
  }

  .gallery-grid figure{
    border-radius:18px;
  }

  .gallery-more-actions a{
    width:100%;
  }

  .gallery-page-hero{
    min-height:auto;
    padding:116px 24px 62px;
  }

  .gallery-page-section{
    padding:72px 10px 88px;
  }

  .all-gallery-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .all-gallery-grid figure{
    min-height:280px;
    border-radius:18px;
  }

  .whatsapp{
    left:16px;
    bottom:16px;
    min-height:50px;
  }

  .branch-page-content h1{
    font-size:42px;
  }

  .branch-stats{
    border-radius:22px;
  }

  .lead-form-modern,
  .tag-grid{
    grid-template-columns:1fr;
  }

  .lead-form-modern{
    padding:16px;
    border-radius:22px;
  }

  .media-showcase img{
    height:320px;
    border-radius:22px;
  }

  .media-showcase > div{
    padding:22px;
    border-radius:22px;
  }

  .footer-brand img{
    width:180px;
  }

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

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

  .reveal{
    opacity:1;
    transform:none;
  }
}
