
:root{
  --navy:#09295f;
  --blue:#1d63d6;
  --blue-2:#0f4aa6;
  --gold:#f2c94c;
  --ink:#10233c;
  --muted:#62708a;
  --line:#dbe5f5;
  --bg:#f5f8fd;
  --card:#ffffff;
  --shadow:0 18px 50px rgba(10,43,102,.10);
  --shadow-soft:0 12px 32px rgba(10,43,102,.08);
  --radius:26px;
  --radius-lg:34px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(29,99,214,.08), transparent 26%),
    radial-gradient(circle at right 180px top 50px, rgba(242,201,76,.10), transparent 18%),
    linear-gradient(180deg, #ffffff, var(--bg));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
::selection{background:rgba(29,99,214,.16)}

.container{width:min(var(--container), calc(100% - 32px)); margin:0 auto}
.topbar{
  background:linear-gradient(90deg,var(--navy), var(--blue-2));
  color:#fff;
  font-size:.92rem;
}
.topbar .inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:8px 0;
}
.topbar strong{color:#fff}
.topbar a{color:#fff; opacity:.95}
.header{
  position:sticky; top:0; z-index:40;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(219,229,245,.8);
}
.nav{
  display:flex;
  align-items:center;
  gap:20px;
  min-height:160px;
  width:min(1360px, calc(100% - 32px));
}
.brand{
  display:flex; align-items:center; gap:14px; flex:0 0 auto;
}
.header .brand img{
  width:260px;
  max-height:142px;
  height:auto;
  object-fit:contain;
}
.header .brand > span{
  max-width:235px;
  font-size:1.02rem;
}
.brand span{
  font-weight:800;
  font-size:1rem;
  color:var(--navy);
  line-height:1.15;
}
.brand small{
  display:block;
  font-weight:600;
  color:var(--muted);
  margin-top:4px;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
}
.site-nav a{
  color:var(--ink);
  font-weight:600;
  position:relative;
  padding:10px 0;
  white-space:nowrap;
}
.site-nav a.active,
.site-nav a:hover{color:var(--blue-2)}
.site-nav a.active::after,
.site-nav a:hover::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px; border-radius:999px;
  background:linear-gradient(90deg,var(--blue),var(--gold));
}
.nav-actions{display:flex; gap:12px; align-items:center}
.account-menu{position:relative;display:flex;align-items:center}
.account-menu-toggle{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border:1px solid var(--navy);border-radius:14px;background:#fff;box-shadow:var(--shadow-soft);cursor:pointer}
.account-menu-toggle span,.account-menu-toggle span::before,.account-menu-toggle span::after{display:block;width:21px;height:2px;border-radius:999px;background:var(--navy);position:relative;transition:transform .2s ease,top .2s ease,opacity .2s ease}
.account-menu-toggle span::before,.account-menu-toggle span::after{content:"";position:absolute;left:0}
.account-menu-toggle span::before{top:-7px}
.account-menu-toggle span::after{top:7px}
.account-menu.open .account-menu-toggle{background:var(--navy)}
.account-menu.open .account-menu-toggle span,.account-menu.open .account-menu-toggle span::before,.account-menu.open .account-menu-toggle span::after{background:#fff}
.account-menu.open .account-menu-toggle span{background:transparent}
.account-menu.open .account-menu-toggle span::before{top:0;transform:rotate(45deg)}
.account-menu.open .account-menu-toggle span::after{top:0;transform:rotate(-45deg)}
.account-menu-panel{display:none;position:absolute;z-index:60;right:0;top:calc(100% + 12px);width:260px;padding:8px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow)}
.account-menu.open .account-menu-panel{display:grid}
.account-menu-panel a{display:grid;padding:11px 13px;border-radius:12px;color:var(--navy)}
.account-menu-panel a:hover{background:#edf3ff;color:var(--blue-2)}
.account-menu-panel strong{font-size:.96rem}
.account-menu-panel small{color:var(--muted);font-size:.78rem;font-weight:600}
.menu-toggle{
  display:none;
  margin-left:auto;
  width:48px; height:48px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
  display:block; width:18px; height:2px; background:var(--navy); margin:0 auto; position:relative;
}
.menu-toggle span::before, .menu-toggle span::after{
  content:""; position:absolute; left:0;
}
.menu-toggle span::before{top:-6px}
.menu-toggle span::after{top:6px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:13px 20px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  box-shadow:none;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--blue-2),var(--blue));
  color:#fff;
  box-shadow:0 14px 30px rgba(29,99,214,.22);
}
.btn-primary:hover{box-shadow:0 18px 38px rgba(29,99,214,.28)}
.btn-secondary{
  background:#fff;
  color:var(--blue-2);
  border-color:var(--line);
  box-shadow:var(--shadow-soft);
}
.btn-ghost{
  background:transparent;
  color:var(--blue-2);
  border-color:rgba(29,99,214,.22);
}
.btn-dark{
  background:var(--navy);
  color:#fff;
}

main{display:block}
.section{padding:78px 0}
.section-sm{padding:48px 0}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--blue-2);
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.kicker::before{
  content:"✦"; color:var(--gold); font-size:.92rem;
}
.section-head{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.section-head h2,
.hero-copy h1{
  margin:10px 0 12px;
  line-height:1.05;
  letter-spacing:-.04em;
}
.section-head h2{font-size:clamp(2rem, 4vw, 3.2rem)}
.section-head p{color:var(--muted); margin:0}
.hero{
  padding:26px 0 0;
}
.hero-shell{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  background:
    radial-gradient(circle at 70% 15%, rgba(242,201,76,.12), transparent 16%),
    radial-gradient(circle at 100% 0%, rgba(29,99,214,.18), transparent 20%),
    linear-gradient(180deg, #fff, #f6faff);
  border:1px solid rgba(219,229,245,.92);
  box-shadow:var(--shadow);
}
.hero-shell::before,
.hero-shell::after{
  content:"";
  position:absolute;
  inset:auto;
  border-radius:999px;
  background:radial-gradient(circle, rgba(29,99,214,.13), transparent 66%);
  filter:blur(6px);
}
.hero-shell::before{width:280px; height:280px; top:-80px; right:-80px}
.hero-shell::after{width:220px; height:220px; bottom:-70px; left:-50px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:38px;
  align-items:center;
  padding:36px;
  min-height:620px;
}
.hero-copy{padding:18px 10px 18px 8px}
.hero-copy h1{
  font-size:clamp(3rem, 6vw, 5.2rem);
  color:var(--navy);
}
.hero-copy p{
  font-size:1.08rem;
  color:var(--muted);
  max-width:620px;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:28px}
.trust-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}
.trust{
  display:inline-flex; align-items:center; gap:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 16px;
  color:var(--ink);
  font-weight:600;
  box-shadow:var(--shadow-soft);
  white-space:nowrap;
  line-height:1;
  min-width:0;
  flex:1 1 190px;
}
.trust svg{flex:0 0 auto; width:22px; height:22px}
.trust-text{display:flex; flex-direction:column; gap:3px; min-width:0}
.trust-text strong{color:var(--blue-2); display:block; line-height:1}
.trust-text span{display:block; color:var(--ink); line-height:1.15}
.hero-visual{
  position:relative;
  min-height:540px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-logo-panel{
  position:relative;
  width:min(100%, 560px);
  padding:24px;
  border-radius:34px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(219,229,245,.9);
  box-shadow:var(--shadow);
}
.hero-logo-panel img{
  width:100%;
  max-width:520px;
  margin:0 auto;
  filter:drop-shadow(0 18px 32px rgba(10,43,102,.10));
}
.hero-logo-panel .note{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:var(--muted);
  font-weight:600;
}
.note .chip{
  display:inline-flex; align-items:center; gap:8px;
  background:#f4f8ff;
  color:var(--blue-2);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
}
.panel-card{
  position:absolute;
  right:-8px;
  bottom:12px;
  width:min(300px, 40vw);
  background:linear-gradient(180deg, #fff, #f7fbff);
  border-radius:24px;
  padding:18px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.panel-card strong{display:block; font-size:1.02rem; margin-bottom:6px}
.panel-card p{margin:0; color:var(--muted); font-size:.95rem}
.grid{display:grid; gap:20px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.card{
  background:var(--card);
  border:1px solid rgba(219,229,245,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
.card-pad{padding:22px}
.card h3{margin:0 0 10px; font-size:1.2rem}
.card p{color:var(--muted)}
.service-card{
  position:relative;
  overflow:hidden;
}
.service-icon{
  width:54px; height:54px;
  display:grid; place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(29,99,214,.12), rgba(242,201,76,.12));
  border:1px solid rgba(29,99,214,.12);
  color:var(--blue-2);
  margin-bottom:14px;
}
.service-icon svg{width:28px; height:28px; fill:currentColor}
.service-card ul,
.checklist{padding-left:18px; margin:14px 0 0; color:var(--muted)}
.checklist li{margin-bottom:10px}
.meta{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:14px;
}
.badge,
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--blue-2);
  padding:8px 13px;
  font-size:.92rem;
  font-weight:700;
}
.feature-band{
  background:linear-gradient(90deg, var(--navy), var(--blue-2));
  color:#fff;
  padding:18px 0;
  margin:8px 0 0;
}
.feature-band .grid-5{
  display:grid; gap:18px;
  grid-template-columns:repeat(5,minmax(0,1fr));
}
.feature{
  display:flex; gap:12px;
  align-items:flex-start;
}
.feature .dot{
  width:42px; height:42px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.feature strong{display:block; margin-bottom:4px}
.feature span{opacity:.88; font-size:.95rem}
.illustration{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  box-shadow:var(--shadow);
  border:1px solid rgba(219,229,245,.95);
}
.illustration img{width:100%; height:100%; object-fit:cover}
.stamp{
  position:absolute;
  left:24px; top:24px;
  background:rgba(255,255,255,.88);
  color:var(--navy);
  padding:11px 14px;
  border-radius:999px;
  font-weight:800;
  box-shadow:var(--shadow-soft);
}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:center;
}
.subhead{
  max-width:720px;
  color:var(--muted);
  margin:0 auto;
}
.callout{
  background:linear-gradient(135deg, rgba(29,99,214,.08), rgba(242,201,76,.10));
  border:1px solid rgba(29,99,214,.12);
  border-radius:30px;
  padding:26px;
  box-shadow:var(--shadow-soft);
}
.callout h3{margin:0 0 10px; color:var(--navy); font-size:1.8rem; line-height:1.1}
.callout p{margin:0; color:var(--muted)}
.map-frame{
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  background:#fff;
  min-height:420px;
}
.map-frame iframe{
  width:100%; height:420px; border:0; display:block;
}
.form{
  display:grid; gap:14px;
}
.field{
  display:grid; gap:8px;
}
.field label{font-weight:700}
.field input,
.field textarea,
.field select{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  background:#fff;
  color:var(--ink);
}
.field textarea{min-height:150px; resize:vertical}
.form-row{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px}
.footer{
  background:linear-gradient(180deg, #061f49, #061734);
  color:#d9e5ff;
  padding:62px 0 28px;
  margin-top:30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .7fr .7fr;
  gap:26px;
  align-items:start;
}
.footer a{color:#fff}
.footer .brand img{width:180px}
.footer h4{margin:0 0 12px; color:#fff}
.footer p{color:#d7e0f5}
.footer ul{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.footer-bottom{
  margin-top:34px; padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  color:#a9b8d8;
  font-size:.95rem;
}
.floating{
  position:fixed; right:18px; bottom:18px;
  z-index:45;
  display:flex; flex-direction:column; gap:12px;
}
.fab{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 16px;
  border-radius:999px;
  font-weight:800;
  box-shadow:var(--shadow);
}
.fab.call{background:#fff; color:var(--blue-2); border:1px solid var(--line)}
.fab.wa{background:#25d366; color:#fff}
.reveal{opacity:0; transform:translateY(16px); transition:opacity .7s ease, transform .7s ease}
.reveal.is-visible{opacity:1; transform:none}
.hero-copy .reveal, .section-head .reveal{transition-delay:.05s}
.faq-list{display:grid; gap:14px}
.faq-item{
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.faq-q{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  padding:18px 20px;
  font-weight:800;
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .34s ease;
  color:var(--muted);
}
.faq-a > div{padding:0 20px 18px}
.faq-item.open .faq-a{max-height:240px}
.page-hero{
  padding:36px 0 10px;
}
.page-hero .hero-banner{
  padding:36px;
  border-radius:36px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 85% 12%, rgba(242,201,76,.12), transparent 14%),
    linear-gradient(180deg, #fff, #f6faff);
  box-shadow:var(--shadow);
}
.page-hero h1{
  margin:8px 0 12px;
  font-size:clamp(2.4rem, 5vw, 4.4rem);
  line-height:1.03;
  color:var(--navy);
}
.page-hero p{max-width:760px; color:var(--muted); font-size:1.06rem}
.notice{
  display:inline-flex;
  background:#f4f8ff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 14px;
  font-weight:700;
  color:var(--blue-2);
  margin-bottom:14px;
}
.price{
  display:flex; flex-direction:column; align-items:flex-start; gap:2px; margin:14px 0 10px;
}
.price strong{font-size:1.9rem; color:var(--navy)}
.price span{color:var(--muted)}
.price small{color:var(--muted); font-weight:700}
.timeline{
  display:grid; gap:14px;
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.timeline .step{
  padding:22px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.gallery-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.gallery-grid figure{
  margin:0;
  padding:12px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.gallery-grid img{border-radius:20px; width:100%}
.gallery-grid figcaption{padding:10px 6px 2px; color:var(--muted)}
.pricing-grid{display:grid; gap:20px; grid-template-columns:repeat(3,minmax(0,1fr))}
.price-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.ribbon{
  position:static;
  align-self:flex-start;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(29,99,214,.10);
  color:var(--blue-2);
  font-weight:800;
  font-size:.88rem;
  border:1px solid rgba(29,99,214,.10);
}
.price-card h3{margin-top:0}
.price-card .checklist{flex:1}
.pricing-calculator{overflow:hidden}
.estimator-heading{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:24px}
.estimator-heading h2{margin:5px 0 4px}
.estimator-heading p{margin:0}
.estimate-disclaimer{max-width:280px; padding:12px 16px; border-radius:14px; background:#edf3ff; color:var(--blue-2); font-weight:700; font-size:.9rem}
.estimator-fields{display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:14px}
.estimator-fields label{display:grid; gap:7px; color:var(--navy); font-weight:800; font-size:.92rem}
.estimator-fields select{width:100%; min-height:48px; padding:9px 34px 9px 12px; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--ink)}
.section--pricing-results{padding-top:0}
.table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--line);
}
.table th, .table td{
  padding:15px 16px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.table th{background:#f6f9ff}
.table tr:last-child td{border-bottom:0}
.socials{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.socials a{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  font-weight:900;
  color:var(--blue-2);
}
.contact-socials{
  gap:12px;
  align-items:center;
}
.contact-socials a{
  width:auto;
  min-width:112px;
  height:44px;
  padding:0 18px;
  white-space:nowrap;
}

@media (max-width: 1080px){
  .hero-inner,.split,.footer-grid,.grid-4,.pricing-grid,.gallery-grid,.timeline,.feature-band .grid-5,.grid-3,.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-inner{min-height:auto}
  .hero-visual{min-height:420px}
  .estimator-fields{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width: 860px){
  .site-nav{display:none}
  .nav-actions{display:flex;margin-left:0}
  .nav-actions > .btn{display:none}
  .menu-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav{min-height:76px}
  .brand img{width:152px}
  .hero-inner,.split,.footer-grid,.grid-2,.grid-3,.grid-4,.pricing-grid,.gallery-grid,.timeline,.feature-band .grid-5{grid-template-columns:1fr}
  .hero-inner{padding:26px}
  .hero-copy h1{font-size:clamp(2.6rem, 12vw, 4rem)}
  .panel-card{position:static; width:100%; margin-top:18px}
  .trust-row{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .estimator-heading{align-items:flex-start; flex-direction:column}
  .estimate-disclaimer{max-width:none}
  .estimator-fields{grid-template-columns:1fr}
  .account-links{display:none}
}
body.nav-open .site-nav{
  display:flex; position:absolute; left:16px; right:16px; top:calc(100% + 10px);
  flex-direction:column; gap:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:8px;
}
body.nav-open .site-nav a{
  width:100%; padding:14px 14px;
}
body.nav-open .site-nav a::after{display:none}
/* --- Home page screenshot-matched layout overrides --- */
.topbar{display:none !important;}

body.home-page .header{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(219,229,245,.7);
}
body.home-page .nav{
  min-height:160px;
  gap:18px;
}
body.home-page .brand{
  gap:12px;
}
body.home-page .brand img{
  width:260px;
  max-height:142px;
  object-fit:contain;
}
body.home-page .brand span{
  font-size:.98rem;
  line-height:1.08;
}
body.home-page .brand small{
  font-size:.86rem;
  margin-top:5px;
}
.btn{white-space:nowrap}
.nav-actions .btn{
  min-width:126px;
  padding-inline:18px;
}

body.home-page .hero{
  padding:14px 0 0;
}
body.home-page .home-hero-shell{
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}
body.home-page .home-hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(0, .98fr);
  grid-template-areas:
    "copy visual"
    "trust focus";
  gap:18px 18px;
  align-items:stretch;
}
body.home-page .home-hero-copy{
  grid-area:copy;
  padding:34px 0 6px;
  max-width:640px;
}
body.home-page .home-hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(29,99,214,.08);
  color:var(--blue-2);
  border:1px solid rgba(29,99,214,.10);
  font-weight:700;
  font-size:.98rem;
  box-shadow:0 10px 24px rgba(10,43,102,.05);
}
body.home-page .home-hero-tag svg{
  width:20px;
  height:20px;
  fill:currentColor;
}
body.home-page .home-hero-copy h1{
  margin:18px 0 14px;
  font-size:clamp(3.1rem, 5.8vw, 5.4rem);
  line-height:.95;
  letter-spacing:-.05em;
  color:var(--navy);
  max-width:none;
}
body.home-page .home-hero-copy h1 .headline-line{
  display:block;
  white-space:nowrap;
}
body.home-page .home-hero-copy h1 .accent{
  color:var(--blue);
}
body.home-page .home-hero-copy h1 .headline-heart{
  display:inline-block;
  margin-left:.04em;
  font-size:.42em;
  line-height:1;
  vertical-align:.12em;
  letter-spacing:0;
}
body.home-page .home-hero-copy p{
  margin:0;
  max-width:440px;
  font-size:1.08rem;
  color:var(--ink);
}
body.home-page .home-hero-description span{
  display:block;
}
body.home-page .hero-actions{
  margin-top:28px;
  gap:14px;
}
body.home-page .hero-actions .btn{
  min-width:170px;
  padding:15px 26px;
}

body.home-page .home-hero-visual{
  grid-area:visual;
  min-height:520px;
  overflow:hidden;
  border-radius:28px;
  position:relative;
  background:#fff;
}
body.home-page .home-hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}
body.home-page .home-hero-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.2) 18%, rgba(255,255,255,0) 30%);
  pointer-events:none;
}

body.home-page .home-trust-card{
  grid-area:trust;
  display:grid;
  grid-template-columns:.92fr .98fr 1.1fr;
  background:#fff;
  border:1px solid rgba(219,229,245,.95);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
body.home-page .home-trust-card .trust-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:22px 16px;
  min-width:0;
  position:relative;
}
body.home-page .home-trust-card .trust-item:not(:last-child){
  border-right:0;
}
body.home-page .home-trust-card .trust-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:50%;
  right:0;
  width:1px;
  height:76px;
  max-height:calc(100% - 32px);
  background:var(--line);
  transform:translateY(-50%);
}
body.home-page .home-trust-card .icon{
  width:62px;
  height:62px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--blue-2));
  color:#fff;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
body.home-page .home-trust-card .icon svg{
  width:30px;
  height:30px;
  fill:currentColor;
}
body.home-page .home-trust-card .label strong{
  display:block;
  color:var(--navy);
  font-size:1.06rem;
  margin-bottom:4px;
}
body.home-page .home-trust-card .label{
  min-width:0;
}
body.home-page .home-trust-card .label span{
  display:block;
  color:var(--ink);
  font-size:.98rem;
  white-space:nowrap;
}

body.home-page .home-focus-card{
  grid-area:focus;
  display:grid;
  grid-template-columns:150px 1px 1fr;
  align-items:center;
  gap:0;
  background:#fff;
  border:1px solid rgba(219,229,245,.95);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  padding:22px 22px;
}
body.home-page .home-focus-card .focus-side{
  display:grid;
  place-items:center;
  gap:12px;
  text-align:center;
  padding-right:16px;
}
body.home-page .home-focus-card .focus-icon{
  width:66px;
  height:66px;
  border-radius:50%;
  background:#edf3ff;
  color:var(--blue-2);
  display:grid;
  place-items:center;
}
body.home-page .home-focus-card .focus-icon svg{
  width:34px;
  height:34px;
  fill:currentColor;
}
body.home-page .home-focus-card .focus-side strong{
  color:var(--blue-2);
  font-size:1.12rem;
  line-height:1.15;
}
body.home-page .home-focus-card .divider{
  width:1px;
  height:100%;
  background:var(--line);
}
body.home-page .home-focus-card .focus-copy{
  padding-left:22px;
}
body.home-page .home-focus-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:clamp(1.8rem, 2.7vw, 2.45rem);
  line-height:1.05;
}
body.home-page .home-focus-card p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
  max-width:400px;
}

body.home-page .feature-band{
  margin-top:22px;
  padding:14px 0;
}
body.home-page .feature-band .container.grid-4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:start;
}
body.home-page .feature-band .feature{
  display:flex;
  align-items:center;
  gap:14px;
  padding-right:14px;
  position:relative;
}
body.home-page .feature-band .feature:not(:last-child){
  border-right:0;
}
body.home-page .feature-band .feature:not(:last-child)::after{
  content:"";
  position:absolute;
  top:50%;
  right:0;
  width:1px;
  height:50px;
  background:rgba(255,255,255,.22);
  transform:translateY(-50%);
}
body.home-page .feature-band .dot{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
body.home-page .feature-band .dot svg{
  width:26px;
  height:26px;
  fill:var(--blue-2);
}
body.home-page .feature-band .dot svg.icon-stroke{
  fill:none;
  stroke:var(--blue-2);
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
body.home-page .feature-band .feature strong{
  margin-bottom:3px;
}

/* Customer portal */
.portal-page{min-height:100vh;background:var(--bg)}
.portal-header{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:20}
.portal-nav{min-height:160px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.portal-brand{display:inline-flex;align-items:center;gap:12px;font-weight:900;color:var(--navy)}
.portal-brand img{width:260px;max-height:142px;height:auto;object-fit:contain;flex:0 0 auto}
.portal-brand span{display:block;max-width:230px;font-size:1rem;line-height:1.2}
.portal-brand small{display:block;margin-top:4px;color:var(--muted);font-size:.78rem;font-weight:700}
.portal-nav nav{display:flex;align-items:center;gap:18px;font-weight:800;color:var(--blue-2)}
.portal-nav form{margin:0}
.portal-link-button{border:0;background:none;color:inherit;font:inherit;font-weight:inherit;cursor:pointer;padding:0}
.portal-main{padding-top:42px;padding-bottom:70px}
.portal-footer{padding:24px 0;background:var(--navy);color:#fff}
.portal-auth{max-width:560px;margin:20px auto}
.portal-back-button{display:inline-flex;align-items:center;margin-bottom:20px;padding:9px 14px;border:1px solid var(--line);border-radius:12px;background:#fff;color:var(--blue-2);font-weight:800}
.portal-back-button:hover{background:#edf3ff;color:var(--navy)}
.portal-auth h1,.portal-welcome h1{color:var(--navy);margin:6px 0 8px}
.portal-form{display:grid;gap:16px}
.portal-form label{display:grid;gap:7px;font-weight:800;color:var(--navy)}
.portal-form input,.portal-form textarea{width:100%;border:1px solid var(--line);border-radius:12px;padding:12px;color:var(--ink);background:#fff;font-size:1rem}
.portal-alert{padding:12px 15px;border-radius:12px;background:#fff0f0;color:#8b1e1e;font-weight:700}
.portal-success{padding:12px 15px;border-radius:12px;background:#e9f9ef;color:#176b38;font-weight:700}
.portal-text-link{color:var(--blue);font-weight:800;text-decoration:underline}
.portal-demo-note{margin-bottom:0;padding-top:14px;border-top:1px solid var(--line);color:var(--muted);font-size:.9rem}
.portal-welcome{margin-bottom:26px}
.portal-empty{text-align:center}
.portal-records{display:grid;gap:18px}
.portal-record{overflow:hidden}
.record-top{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.record-top h2{margin:7px 0 0;color:var(--navy)}
.record-status{display:inline-flex;padding:6px 10px;border-radius:999px;background:#edf3ff;color:var(--blue-2);font-weight:800;font-size:.85rem}
.record-price{font-size:1.65rem;color:var(--navy);white-space:nowrap}
.record-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:22px 0}
.record-grid div{padding:14px;border-radius:14px;background:#f5f8fd}
.record-grid span{display:block;color:var(--muted);font-size:.85rem;margin-bottom:4px}
.record-grid strong{color:var(--navy)}
.record-tasks{padding:16px 0;border-top:1px solid var(--line)}
.record-tasks h3{margin:0 0 5px}.record-tasks p{margin:0 0 16px}
.staff-form{grid-template-columns:repeat(2,minmax(0,1fr));margin-bottom:24px}
.staff-form h2,.staff-form-wide{grid-column:1/-1}
.staff-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}.staff-actions form{margin:0}
.admin-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-bottom:22px}
.admin-stats span{display:block;color:var(--muted);font-weight:700}.admin-stats strong{display:block;margin-top:5px;color:var(--navy);font-size:2rem}
.portal-form select{width:100%;border:1px solid var(--line);border-radius:12px;padding:12px;color:var(--ink);background:#fff;font-size:1rem}
.portal-form select:required:invalid{color:#66758f;font-weight:600}
.portal-form select option{color:var(--ink);font-weight:600}
.customer-account-actions{display:flex;align-items:center;flex-wrap:wrap;gap:10px 14px;min-width:0}
.customer-account-actions .btn{max-width:100%;min-width:0;white-space:normal;overflow-wrap:anywhere;text-align:center}
.customer-account-actions small{flex:1 1 280px;min-width:0;color:var(--muted);font-weight:600;line-height:1.5}
.portal-notice{position:fixed;right:20px;bottom:max(20px,env(safe-area-inset-bottom));z-index:1000;display:flex;align-items:flex-start;gap:14px;width:min(440px,calc(100vw - 40px));padding:16px 18px;border:1px solid #9bd8af;border-radius:16px;background:#e9f9ef;color:#145c32;box-shadow:0 18px 50px rgba(6,32,73,.24);font-weight:700}
.portal-notice[hidden]{display:none}
.portal-notice[data-type="error"]{border-color:#f0b0b0;background:#fff0f0;color:#8b1e1e}
.portal-notice p{flex:1;min-width:0;margin:0;line-height:1.5;overflow-wrap:anywhere}
.portal-notice button{border:0;background:transparent;color:inherit;font:inherit;font-weight:900;text-decoration:underline;cursor:pointer;padding:0}
.record-admin-meta{color:var(--muted);margin:5px 0 0}.record-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}.record-actions button{cursor:pointer}
.appointment-browser{margin-top:38px}
.appointment-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;text-align:left}
.appointment-head h2{margin-bottom:6px}
.appointment-calendar{display:flex;align-items:flex-end;gap:10px;padding:12px;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:0 10px 30px rgba(12,51,112,.08)}
.calendar-date-label{display:grid;gap:5px;color:var(--navy);font-size:.78rem;font-weight:800}
.calendar-date-label input{min-height:46px;border:1px solid var(--line);border-radius:11px;padding:8px 11px;background:#fff;color:var(--navy);font:inherit;font-size:1rem;font-weight:700;cursor:pointer}
.calendar-step{width:46px;height:46px;border:1px solid var(--line);border-radius:11px;background:#edf3ff;color:var(--blue-2);font-size:1.25rem;font-weight:900;cursor:pointer}
.calendar-step:hover,.calendar-step:focus-visible{background:var(--blue-2);color:#fff}
.calendar-today{min-height:46px}
.booking-form{grid-template-columns:repeat(2,minmax(0,1fr));margin-bottom:24px}.booking-form h2,.booking-wide{grid-column:1/-1}.booking-total{display:grid;align-content:center;padding:14px 16px;border-radius:14px;background:#edf3ff;color:var(--navy)}.booking-total strong{font-size:1.8rem}.booking-total small{color:var(--muted)}
.receipt-page{background:#eef3fb;padding:30px}.receipt-sheet{max-width:760px;margin:auto;background:#fff;padding:48px;border:1px solid var(--line);box-shadow:var(--shadow)}
.receipt-actions{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:28px}.receipt-actions button{cursor:pointer}.receipt-brand{color:var(--navy);border-bottom:2px solid var(--blue);padding-bottom:16px}.receipt-details{display:grid;grid-template-columns:1fr 1fr;gap:12px 30px;margin:26px 0}.receipt-details span{display:block;color:var(--muted);font-size:.85rem}.receipt-total{display:flex;justify-content:space-between;border-top:1px solid var(--line);padding-top:18px;font-size:1.3rem}
@media print{.receipt-page{background:#fff;padding:0}.receipt-sheet{box-shadow:none;border:0;max-width:none}.receipt-actions{display:none}}
@media(max-width:860px){.portal-nav{align-items:flex-start;flex-direction:column;padding:16px 0}.portal-nav nav{flex-wrap:wrap}.record-grid{grid-template-columns:1fr 1fr}.staff-form,.booking-form{grid-template-columns:1fr}.staff-form h2,.staff-form-wide,.booking-form h2,.booking-wide{grid-column:auto}.appointment-head{align-items:stretch;flex-direction:column}.appointment-calendar{align-items:stretch;flex-wrap:wrap}.calendar-date-label{flex:1 1 220px}.calendar-date-label input{width:100%}.portal-form input,.portal-form select,.portal-form textarea{font-size:16px!important}}
@media(max-width:560px){.record-top{flex-direction:column}.record-grid,.admin-stats,.receipt-details{grid-template-columns:1fr}.receipt-page{padding:0}.receipt-sheet{padding:25px}.customer-account-actions{display:grid;grid-template-columns:minmax(0,1fr);align-items:stretch}.customer-account-actions .btn{width:100%;padding-inline:12px}.customer-account-actions small{width:100%}.portal-notice{right:12px;bottom:max(12px,env(safe-area-inset-bottom));width:calc(100vw - 24px);padding:14px}}

body.home-page .section-head--split{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  text-align:left;
  margin-bottom:26px;
}
body.home-page .section-head--split h2{
  margin:0;
}
body.home-page .section-head--split p{
  margin:0;
  max-width:420px;
}

@media (max-width: 1600px){
  .nav{flex-wrap:wrap;padding:10px 0}
  .site-nav{
    order:10;
    width:100%;
    display:flex;
    justify-content:center;
    margin:0;
    padding-top:6px;
    border-top:1px solid var(--line);
  }
  .menu-toggle{display:none}
  .nav-actions{display:flex;margin-left:auto}
}

@media (max-width: 1080px){
  body.home-page .home-hero-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "copy"
      "visual"
      "trust"
      "focus";
  }
  body.home-page .home-hero-copy{
    max-width:none;
    padding-top:18px;
  }
  body.home-page .home-hero-copy h1{
    max-width:none;
  }
  body.home-page .home-hero-visual{
    min-height:420px;
  }
  body.home-page .home-trust-card{
    grid-template-columns:1fr;
  }
  body.home-page .home-trust-card .trust-item:not(:last-child){
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  body.home-page .home-trust-card .trust-item:not(:last-child)::after{
    display:none;
  }
  body.home-page .home-focus-card{
    grid-template-columns:120px 1px 1fr;
  }
  body.home-page .section-head--split{
    flex-direction:column;
    align-items:flex-start;
  }
  body.home-page .feature-band .container.grid-4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  body.home-page .feature-band .feature:nth-child(2n){
    border-right:0;
  }
  body.home-page .feature-band .feature:nth-child(2n)::after{
    display:none;
  }
}

@media (max-width: 860px){
  .nav{flex-wrap:nowrap}
  .site-nav{display:none}
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center;margin-left:auto}
  body.nav-open .site-nav{display:flex}
  body.home-page .nav{
    min-height:132px;
  }
  body.home-page .brand img{
    width:190px;
    max-height:106px;
  }
  body.home-page .brand span{
    font-size:.92rem;
  }
  body.home-page .nav-actions .btn{
    min-width:0;
    padding-inline:18px;
  }
  body.home-page .hero-actions{
    flex-direction:row;
    gap:12px;
  }
  body.home-page .hero-actions .btn{
    min-width:0;
    flex:1 1 0;
    width:auto;
  }
  body.home-page .home-hero-copy h1{
    font-size:clamp(2.4rem, 11vw, 4.4rem);
  }
  body.home-page .home-focus-card{
    grid-template-columns:1fr;
    text-align:left;
  }
  body.home-page .home-focus-card .divider{
    width:100%;
    height:1px;
  }
  body.home-page .home-focus-card .focus-side{
    grid-template-columns:auto 1fr;
    justify-items:start;
    text-align:left;
    padding-right:0;
  }
  body.home-page .home-focus-card .focus-side strong{
    text-align:left;
  }
  body.home-page .home-focus-card .focus-copy{
    padding-left:0;
    padding-top:18px;
  }
  body.home-page .feature-band .container.grid-4{
    grid-template-columns:1fr;
  }
  body.home-page .feature-band .feature{
    border-right:0 !important;
    padding-right:0;
  }
  body.home-page .feature-band .feature::after{
    display:none;
  }
  body.home-page .home-trust-card .trust-item{
    padding:18px 16px;
  }
  body.home-page .home-trust-card .icon{
    width:56px;
    height:56px;
  }
}

@media (max-width: 640px){
  .nav{min-height:auto;padding:10px 0;flex-wrap:wrap}
  body.home-page .nav{min-height:auto}
  .brand{width:100%;justify-content:center;gap:8px}
  .header .brand img,
  body.home-page .brand img{width:185px;max-height:104px}
  .header .brand > span{max-width:145px;font-size:.82rem}
  .header .brand small{display:none}
  .menu-toggle{margin-left:auto}
  .nav-actions{margin-right:auto}
  .portal-nav{min-height:96px}
  .portal-brand{width:100%;justify-content:center;gap:8px}
  .portal-brand img{width:175px;max-height:100px}
  .portal-brand span{max-width:145px;font-size:.8rem}
  .portal-brand small{display:none}
}

/*
 * Mobile header navigation
 * Keep the primary website pages visible. The only hamburger shown on small
 * screens is the account menu created by script.js for Customer, Admin, and
 * Sign Up.
 */
@media (max-width: 860px){
  .header .nav{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 52px;
    align-items:center;
    column-gap:8px;
  }

  .header .brand{
    grid-column:1 / -1;
    grid-row:1;
    width:100%;
    justify-content:center;
  }

  .header .menu-toggle{
    display:none !important;
  }

  .header .site-nav,
  body.nav-open .header .site-nav{
    position:static !important;
    grid-column:1;
    grid-row:2;
    order:2;
    display:flex !important;
    width:100%;
    min-width:0;
    flex-direction:row !important;
    flex-wrap:wrap;
    justify-content:center;
    gap:2px 14px;
    margin:0;
    padding:9px 4px 7px;
    border:0;
    border-top:1px solid var(--line);
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }

  .header .site-nav a,
  body.nav-open .header .site-nav a{
    width:auto;
    padding:7px 2px;
    font-size:.88rem;
    white-space:nowrap;
  }

  .header .site-nav a.active::after,
  .header .site-nav a:hover::after{
    display:block;
  }

  .header .nav-actions{
    grid-column:2;
    grid-row:2;
    order:2;
    width:52px;
    justify-content:center;
    align-self:center;
    margin:0 !important;
  }

  .header .account-menu-panel{
    right:0;
    left:auto;
    transform:none;
  }
}

@media (max-width: 640px){
  body.home-page .home-trust-card{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  body.home-page .home-trust-card .trust-item{
    flex-direction:column;
    justify-content:center;
    gap:7px;
    padding:13px 4px;
    text-align:center;
  }

  body.home-page .home-trust-card .trust-item:not(:last-child){
    border-right:1px solid var(--line);
    border-bottom:0;
  }

  body.home-page .home-trust-card .icon{
    width:44px;
    height:44px;
  }

  body.home-page .home-trust-card .icon svg{
    width:22px;
    height:22px;
  }

  body.home-page .home-trust-card .label strong{
    font-size:.78rem;
    line-height:1.15;
    margin-bottom:3px;
  }

  body.home-page .home-trust-card .label span{
    font-size:.69rem;
    line-height:1.2;
    white-space:normal;
  }
}
.quote-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}

/* v54: compact admin and customer dashboards on phones */
@media (max-width: 640px){
  body.admin-dashboard-page,
  body.customer-dashboard-page{
    line-height:1.4;
  }

  body.admin-dashboard-page .container,
  body.customer-dashboard-page .container{
    width:min(100% - 20px,var(--container));
  }

  body.admin-dashboard-page .portal-nav,
  body.customer-dashboard-page .portal-nav{
    min-height:86px;
    padding:5px 0;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:8px;
  }

  body.admin-dashboard-page .portal-brand,
  body.customer-dashboard-page .portal-brand{
    width:auto;
    min-width:0;
    justify-content:flex-start;
    gap:0;
  }

  body.admin-dashboard-page .portal-brand img,
  body.customer-dashboard-page .portal-brand img{
    width:155px;
    max-height:82px;
  }

  body.admin-dashboard-page .portal-brand > span,
  body.customer-dashboard-page .portal-brand > span{
    display:none;
  }

  body.admin-dashboard-page .portal-nav nav,
  body.customer-dashboard-page .portal-nav nav{
    flex-wrap:nowrap;
    justify-content:flex-end;
    font-size:.9rem;
  }

  body.admin-dashboard-page .portal-main,
  body.customer-dashboard-page .portal-main{
    padding-top:16px;
    padding-bottom:36px;
  }

  body.admin-dashboard-page .portal-welcome,
  body.customer-dashboard-page .portal-welcome{
    margin-bottom:14px;
  }

  body.admin-dashboard-page .portal-welcome h1,
  body.customer-dashboard-page .portal-welcome h1{
    font-size:1.65rem;
    line-height:1.15;
    margin:4px 0 5px;
  }

  body.admin-dashboard-page .portal-welcome p,
  body.customer-dashboard-page .portal-welcome p{
    margin:0;
    font-size:.88rem;
  }

  body.admin-dashboard-page .kicker,
  body.customer-dashboard-page .kicker{
    font-size:.72rem;
  }

  body.admin-dashboard-page .admin-stats{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:7px;
    margin-bottom:12px;
  }

  body.admin-dashboard-page .admin-stats .card-pad{
    min-width:0;
    padding:10px 7px;
    border-radius:14px;
    text-align:center;
  }

  body.admin-dashboard-page .admin-stats span{
    min-height:2.35em;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.67rem;
    line-height:1.15;
  }

  body.admin-dashboard-page .admin-stats strong{
    margin-top:2px;
    font-size:1.45rem;
    line-height:1;
  }

  body.admin-dashboard-page .card-pad,
  body.customer-dashboard-page .card-pad{
    padding:14px;
  }

  body.admin-dashboard-page .portal-form,
  body.customer-dashboard-page .portal-form{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-bottom:16px;
  }

  body.admin-dashboard-page .portal-form h2,
  body.customer-dashboard-page .portal-form h2,
  body.admin-dashboard-page .staff-form-wide,
  body.customer-dashboard-page .booking-wide{
    grid-column:1 / -1;
  }

  body.admin-dashboard-page .portal-form h2,
  body.customer-dashboard-page .portal-form h2{
    margin:0 0 2px;
    font-size:1.25rem;
  }

  body.admin-dashboard-page .portal-form label,
  body.customer-dashboard-page .portal-form label{
    gap:4px;
    min-width:0;
    font-size:.78rem;
    line-height:1.25;
  }

  body.admin-dashboard-page .portal-form input,
  body.admin-dashboard-page .portal-form select,
  body.admin-dashboard-page .portal-form textarea,
  body.customer-dashboard-page .portal-form input,
  body.customer-dashboard-page .portal-form select,
  body.customer-dashboard-page .portal-form textarea{
    min-width:0;
    padding:9px 10px;
    border-radius:10px;
    font-size:16px!important;
  }

  body.admin-dashboard-page .portal-form input,
  body.admin-dashboard-page .portal-form select,
  body.customer-dashboard-page .portal-form input,
  body.customer-dashboard-page .portal-form select{
    min-height:42px;
  }

  body.admin-dashboard-page .portal-form textarea,
  body.customer-dashboard-page .portal-form textarea{
    min-height:76px;
    resize:vertical;
  }

  body.admin-dashboard-page .customer-account-actions{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:8px;
    align-items:center;
  }

  body.admin-dashboard-page .customer-account-actions .btn{
    width:100%;
    min-height:40px;
    padding:8px 9px;
    font-size:.76rem;
    line-height:1.2;
  }

  body.admin-dashboard-page .customer-account-actions small{
    font-size:.68rem;
    line-height:1.3;
  }

  body.admin-dashboard-page .portal-form > .btn,
  body.customer-dashboard-page .portal-form > .btn{
    min-height:42px;
    padding:9px 10px;
    align-self:end;
    font-size:.82rem;
  }

  body.customer-dashboard-page .booking-total{
    padding:9px 10px;
    border-radius:10px;
  }

  body.customer-dashboard-page .booking-total span,
  body.customer-dashboard-page .booking-total small{
    font-size:.68rem;
    line-height:1.25;
  }

  body.customer-dashboard-page .booking-total strong{
    font-size:1.35rem;
  }

  body.admin-dashboard-page .appointment-browser{
    margin-top:22px;
  }

  body.admin-dashboard-page .appointment-head{
    gap:10px;
    margin-bottom:12px;
  }

  body.admin-dashboard-page .section-head,
  body.customer-dashboard-page .section-head{
    margin-bottom:14px;
  }

  body.admin-dashboard-page .section-head h2,
  body.customer-dashboard-page .section-head h2{
    font-size:1.55rem;
    line-height:1.15;
  }

  body.admin-dashboard-page .appointment-head p{
    font-size:.8rem;
  }

  body.admin-dashboard-page .appointment-calendar{
    display:grid;
    grid-template-columns:38px minmax(0,1fr) 38px auto;
    align-items:end;
    gap:6px;
    padding:7px;
    border-radius:12px;
  }

  body.admin-dashboard-page .calendar-step{
    width:38px;
    height:42px;
  }

  body.admin-dashboard-page .calendar-date-label{
    min-width:0;
    font-size:.65rem;
  }

  body.admin-dashboard-page .calendar-date-label input{
    min-width:0;
    min-height:42px;
    padding:6px;
    font-size:.8rem;
  }

  body.admin-dashboard-page .calendar-today{
    min-height:42px;
    padding:7px 9px;
    font-size:.72rem;
  }

  body.admin-dashboard-page .portal-records,
  body.customer-dashboard-page .portal-records{
    gap:11px;
  }

  body.admin-dashboard-page .portal-record,
  body.customer-dashboard-page .portal-record{
    border-radius:16px;
  }

  body.admin-dashboard-page .record-top,
  body.customer-dashboard-page .record-top{
    flex-direction:row;
    align-items:flex-start;
    gap:8px;
  }

  body.admin-dashboard-page .record-top > div,
  body.customer-dashboard-page .record-top > div{
    min-width:0;
  }

  body.admin-dashboard-page .record-status,
  body.customer-dashboard-page .record-status{
    padding:4px 7px;
    font-size:.68rem;
  }

  body.admin-dashboard-page .record-top h2,
  body.customer-dashboard-page .record-top h2{
    margin-top:5px;
    font-size:1.05rem;
    line-height:1.2;
  }

  body.admin-dashboard-page .record-price,
  body.customer-dashboard-page .record-price{
    font-size:1.1rem;
  }

  body.admin-dashboard-page .record-admin-meta{
    margin-top:4px;
    font-size:.7rem;
    line-height:1.35;
    overflow-wrap:anywhere;
  }

  body.admin-dashboard-page .record-grid,
  body.customer-dashboard-page .record-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
    margin:11px 0;
  }

  body.admin-dashboard-page .record-grid div,
  body.customer-dashboard-page .record-grid div{
    min-width:0;
    padding:9px;
    border-radius:10px;
  }

  body.admin-dashboard-page .record-grid span,
  body.customer-dashboard-page .record-grid span{
    margin-bottom:2px;
    font-size:.67rem;
  }

  body.admin-dashboard-page .record-grid strong,
  body.customer-dashboard-page .record-grid strong{
    display:block;
    font-size:.75rem;
    line-height:1.3;
    overflow-wrap:anywhere;
  }

  body.customer-dashboard-page .record-tasks{
    padding:9px 0;
    font-size:.78rem;
  }

  body.customer-dashboard-page .record-tasks h3,
  body.customer-dashboard-page .record-tasks p{
    margin-bottom:4px;
  }

  body.admin-dashboard-page .record-actions{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
    margin-top:10px;
  }

  body.admin-dashboard-page .record-actions .btn,
  body.admin-dashboard-page .record-actions button,
  body.customer-dashboard-page .portal-record > .btn{
    width:100%;
    min-height:40px;
    padding:8px 9px;
    font-size:.76rem;
    text-align:center;
  }

  body.admin-dashboard-page .portal-footer,
  body.customer-dashboard-page .portal-footer{
    padding:14px 0;
    font-size:.75rem;
  }
}

@media (max-width: 370px){
  body.admin-dashboard-page .portal-brand img,
  body.customer-dashboard-page .portal-brand img{
    width:138px;
  }

  body.admin-dashboard-page .portal-form,
  body.customer-dashboard-page .portal-form{
    grid-template-columns:1fr;
  }

  body.admin-dashboard-page .portal-form h2,
  body.customer-dashboard-page .portal-form h2,
  body.admin-dashboard-page .staff-form-wide,
  body.customer-dashboard-page .booking-wide,
  body.admin-dashboard-page .customer-account-actions{
    grid-column:auto;
  }
}

/* v55: uniform, compact mobile layout for public pages, account pages, and dashboards */
@media (max-width: 640px){
  html{
    -webkit-text-size-adjust:100%;
  }

  body{
    overflow-x:hidden;
  }

  input,
  select,
  textarea,
  button{
    max-width:100%;
  }

  /* Public Home / Services / About / Gallery / Pricing / FAQ / Contact header */
  .topbar{
    display:none;
  }

  .header .nav{
    width:min(100% - 20px,var(--container));
    min-height:auto;
    padding:5px 0 6px;
    grid-template-columns:minmax(0,1fr) 44px;
    column-gap:6px;
    row-gap:1px;
  }

  .header .brand{
    min-width:0;
    gap:7px;
  }

  .header .brand img,
  body.home-page .header .brand img{
    width:152px;
    max-height:82px;
  }

  .header .brand > span{
    max-width:132px;
    font-size:.76rem;
    line-height:1.15;
  }

  .header .site-nav,
  body.nav-open .header .site-nav{
    gap:0 12px;
    padding:5px 2px 4px;
  }

  .header .site-nav a,
  body.nav-open .header .site-nav a{
    padding:5px 2px;
    font-size:.82rem;
    line-height:1.15;
  }

  .header .nav-actions{
    width:44px;
  }

  .header .account-menu-toggle{
    width:42px;
    height:42px;
    border-radius:12px;
  }

  body:not(.portal-page) main > .container,
  body:not(.portal-page) .section > .container{
    width:min(100% - 20px,var(--container));
  }

  /* Customer and administrator sign-in, sign-up, and recovery pages */
  body.portal-account-page .container{
    width:min(100% - 20px,var(--container));
  }

  body.portal-account-page .portal-nav{
    min-height:84px;
    padding:4px 0;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:8px;
  }

  body.portal-account-page .portal-brand{
    width:auto;
    min-width:0;
    justify-content:flex-start;
    gap:7px;
  }

  body.portal-account-page .portal-brand img{
    width:138px;
    max-height:76px;
  }

  body.portal-account-page .portal-brand > span{
    display:block;
    max-width:112px;
    font-size:.69rem;
    line-height:1.12;
  }

  body.portal-account-page .portal-brand small{
    display:none;
  }

  body.portal-account-page .portal-nav nav{
    flex-wrap:nowrap;
    justify-content:flex-end;
    gap:10px;
    font-size:.78rem;
    white-space:nowrap;
  }

  body.portal-account-page .portal-main{
    width:min(100% - 20px,520px);
    padding-top:12px;
    padding-bottom:24px;
  }

  body.portal-account-page .portal-auth{
    width:100%;
    max-width:none;
    margin:0 auto;
    padding:15px;
    border-radius:16px;
  }

  body.portal-account-page .portal-back-button{
    margin-bottom:10px;
    padding:7px 10px;
    border-radius:10px;
    font-size:.76rem;
  }

  body.portal-account-page .kicker{
    font-size:.68rem;
  }

  body.portal-account-page .portal-auth h1{
    margin:4px 0 6px;
    font-size:1.55rem;
    line-height:1.1;
  }

  body.portal-account-page .portal-auth > p{
    margin:7px 0;
    font-size:.82rem;
    line-height:1.4;
  }

  body.portal-account-page .portal-form{
    grid-template-columns:1fr;
    gap:9px;
    margin-top:10px;
  }

  body.portal-account-page .portal-form label{
    min-width:0;
    gap:4px;
    font-size:.78rem;
  }

  body.portal-account-page .portal-form input,
  body.portal-account-page .portal-form select,
  body.portal-account-page .portal-form textarea{
    width:100%;
    max-width:100%;
    min-width:0;
    min-height:42px;
    padding:8px 10px;
    border-radius:10px;
    font-size:16px!important;
    box-sizing:border-box;
  }

  body.portal-account-page .portal-form .btn{
    width:100%;
    min-height:42px;
    padding:9px 12px;
    font-size:.82rem;
  }

  body.portal-account-page .portal-alert,
  body.portal-account-page .portal-success{
    padding:10px 12px;
    font-size:.78rem;
  }

  body.portal-account-page .portal-footer{
    padding:13px 0;
    font-size:.72rem;
  }

  /* Dashboard header and content use the same compact proportions. */
  body.admin-dashboard-page .portal-nav,
  body.customer-dashboard-page .portal-nav{
    min-height:84px;
  }

  body.admin-dashboard-page .portal-brand img,
  body.customer-dashboard-page .portal-brand img{
    width:150px;
    max-height:78px;
  }

  body.admin-dashboard-page .portal-main,
  body.customer-dashboard-page .portal-main{
    overflow-x:clip;
  }

  body.admin-dashboard-page .portal-form > *,
  body.customer-dashboard-page .portal-form > *{
    min-width:0;
    max-width:100%;
    box-sizing:border-box;
  }

  body.admin-dashboard-page .portal-form{
    grid-template-columns:repeat(12,minmax(0,1fr));
    gap:8px;
  }

  body.admin-dashboard-page .portal-form h2,
  body.admin-dashboard-page .staff-form-wide,
  body.admin-dashboard-page .customer-account-actions{
    grid-column:1 / -1;
  }

  body.admin-dashboard-page .customer-search-field,
  body.admin-dashboard-page .service-field{
    grid-column:span 6;
  }

  body.admin-dashboard-page .price-field{
    grid-column:span 4;
  }

  body.admin-dashboard-page .mobile-date-field{
    grid-column:span 8;
  }

  body.admin-dashboard-page .portal-form > .btn{
    grid-column:span 6;
  }

  body.admin-dashboard-page .portal-form label,
  body.customer-dashboard-page .portal-form label{
    overflow:hidden;
  }

  body.admin-dashboard-page .portal-form input,
  body.admin-dashboard-page .portal-form select,
  body.admin-dashboard-page .portal-form textarea,
  body.customer-dashboard-page .portal-form input,
  body.customer-dashboard-page .portal-form select,
  body.customer-dashboard-page .portal-form textarea{
    display:block;
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
  }

  body.admin-dashboard-page input[type="datetime-local"],
  body.customer-dashboard-page input[type="datetime-local"]{
    width:100%;
    max-width:100%;
    min-width:0;
    -webkit-appearance:none;
    appearance:none;
  }

  body.customer-dashboard-page .mobile-date-field{
    grid-column:1 / -1;
  }

  body.admin-dashboard-page .customer-account-actions{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  }

  body.admin-dashboard-page .customer-account-actions > *{
    min-width:0;
    max-width:100%;
  }
}

@media (max-width: 350px){
  body.portal-account-page .portal-brand img{
    width:126px;
  }

  body.portal-account-page .portal-brand > span{
    display:none;
  }

  body.portal-account-page .portal-nav nav{
    font-size:.75rem;
  }

  body.admin-dashboard-page .portal-form,
  body.customer-dashboard-page .portal-form{
    grid-template-columns:1fr;
  }

  body.admin-dashboard-page .portal-form > *,
  body.customer-dashboard-page .portal-form > *,
  body.admin-dashboard-page .customer-search-field,
  body.admin-dashboard-page .service-field,
  body.admin-dashboard-page .price-field,
  body.admin-dashboard-page .mobile-date-field,
  body.customer-dashboard-page .mobile-date-field,
  body.admin-dashboard-page .portal-form > .btn{
    grid-column:auto;
  }
}

/* v56: centered account access and collision-free mobile administration */
@media (max-width: 640px){
  /* Center the customer/admin access header and keep both links readable. */
  body.portal-account-page .portal-header{
    position:relative;
  }

  body.portal-account-page .portal-nav{
    width:min(100% - 24px,430px);
    min-height:auto;
    padding:7px 0 8px;
    display:grid;
    grid-template-columns:1fr;
    justify-items:center;
    gap:3px;
  }

  body.portal-account-page .portal-brand{
    width:100%;
    justify-content:center;
    gap:7px;
    text-align:left;
  }

  body.portal-account-page .portal-brand img{
    width:150px;
    max-height:82px;
  }

  body.portal-account-page .portal-brand > span{
    display:block;
    max-width:125px;
    font-size:.72rem;
    line-height:1.15;
  }

  body.portal-account-page .portal-nav nav{
    width:100%;
    display:flex;
    justify-content:center;
    gap:24px;
    padding-top:5px;
    border-top:1px solid var(--line);
    font-size:.82rem;
  }

  /* Keep the entire login/sign-up card centered inside the phone viewport. */
  body.portal-account-page .portal-main{
    width:100%;
    padding:12px 10px 24px;
  }

  body.portal-account-page .portal-auth{
    width:min(100%,390px);
    margin-inline:auto;
    padding:15px;
  }

  body.portal-account-page .portal-back-button{
    display:flex;
    width:max-content;
    max-width:100%;
  }

  body.portal-account-page .portal-auth .kicker{
    display:block;
    margin-top:2px;
  }

  body.portal-account-page .portal-auth h1,
  body.portal-account-page .portal-auth > p,
  body.portal-account-page .portal-form{
    width:100%;
  }

  /* One field per row is required on phones: native date/select controls
     have minimum widths that make a two-column form overlap on iOS. */
  body.admin-dashboard-page .staff-form{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    gap:9px;
    padding:13px;
    overflow:hidden;
  }

  body.admin-dashboard-page .staff-form > *,
  body.admin-dashboard-page .staff-form h2,
  body.admin-dashboard-page .staff-form-wide,
  body.admin-dashboard-page .customer-search-field,
  body.admin-dashboard-page .service-field,
  body.admin-dashboard-page .price-field,
  body.admin-dashboard-page .mobile-date-field,
  body.admin-dashboard-page .staff-form > .btn{
    grid-column:1;
    width:100%;
    min-width:0;
    max-width:100%;
  }

  body.admin-dashboard-page .staff-form h2{
    margin-bottom:1px;
    font-size:1.2rem;
  }

  body.admin-dashboard-page .staff-form label{
    display:grid;
    overflow:visible;
  }

  body.admin-dashboard-page .staff-form input,
  body.admin-dashboard-page .staff-form select,
  body.admin-dashboard-page .staff-form textarea{
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }

  body.admin-dashboard-page .customer-account-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:5px;
    align-items:start;
  }

  body.admin-dashboard-page .customer-account-actions .btn{
    width:100%;
    min-height:40px;
  }

  body.admin-dashboard-page .customer-account-actions small{
    width:100%;
    padding:0 2px;
    font-size:.69rem;
    line-height:1.3;
  }

  body.admin-dashboard-page .staff-form textarea{
    min-height:74px;
  }

  body.admin-dashboard-page .staff-form > .btn{
    min-height:42px;
  }
}

@media (max-width: 360px){
  body.portal-account-page .portal-brand img{
    width:138px;
  }

  body.portal-account-page .portal-brand > span{
    display:block;
    max-width:112px;
    font-size:.68rem;
  }
}

/* v57: smaller, uniform mobile administration controls */
@media (max-width: 640px){
  body.admin-dashboard-page .staff-form{
    gap:7px;
    padding:12px;
  }

  body.admin-dashboard-page .staff-form label{
    gap:4px;
    font-size:.76rem;
    line-height:1.2;
  }

  body.admin-dashboard-page .staff-form input,
  body.admin-dashboard-page .staff-form select,
  body.admin-dashboard-page .staff-form textarea{
    font-size:16px!important;
    font-weight:600;
    line-height:1.2;
    padding:8px 10px!important;
    border-radius:10px;
  }

  body.admin-dashboard-page .staff-form input,
  body.admin-dashboard-page .staff-form select{
    min-height:40px!important;
    height:40px;
  }

  body.admin-dashboard-page .staff-form input::placeholder,
  body.admin-dashboard-page .staff-form textarea::placeholder{
    font-size:16px;
    font-weight:600;
  }

  body.admin-dashboard-page .staff-form textarea{
    min-height:68px;
  }

  body.admin-dashboard-page .customer-account-actions .btn{
    min-height:36px;
    padding:7px 10px;
    font-size:.72rem;
    line-height:1.15;
  }

  body.admin-dashboard-page .customer-account-actions small{
    font-size:.66rem;
    line-height:1.22;
  }

  body.admin-dashboard-page .staff-form > .btn{
    min-height:39px;
    padding:8px 12px;
    font-size:.78rem;
  }
}

/* v58: final compact mobile dashboard matching the approved layout */
@media (max-width: 640px){
  body.admin-dashboard-page{
    font-size:12px;
    line-height:1.3;
  }

  body.admin-dashboard-page .container{
    width:min(100% - 12px,430px);
  }

  body.admin-dashboard-page .portal-nav{
    min-height:62px;
    padding:3px 0;
  }

  body.admin-dashboard-page .portal-brand img{
    width:112px;
    max-height:56px;
  }

  body.admin-dashboard-page .portal-nav nav{
    font-size:.74rem;
  }

  body.admin-dashboard-page .portal-main{
    padding-top:9px;
    padding-bottom:28px;
  }

  body.admin-dashboard-page .portal-welcome{
    margin-bottom:10px;
  }

  body.admin-dashboard-page .portal-welcome .kicker{
    font-size:.64rem;
    letter-spacing:.14em;
  }

  body.admin-dashboard-page .portal-welcome h1{
    margin:3px 0 2px;
    font-size:1.32rem;
    line-height:1.05;
  }

  body.admin-dashboard-page .portal-welcome p{
    margin:0;
    font-size:.68rem;
    line-height:1.3;
  }

  body.admin-dashboard-page .admin-stats{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
    margin-bottom:9px;
  }

  body.admin-dashboard-page .admin-stats .card-pad{
    min-height:58px;
    padding:8px 4px;
    border-radius:12px;
    text-align:center;
  }

  body.admin-dashboard-page .admin-stats span{
    font-size:.6rem;
    line-height:1.12;
  }

  body.admin-dashboard-page .admin-stats strong{
    margin-top:3px;
    font-size:1.25rem;
    line-height:1;
  }

  body.admin-dashboard-page .staff-form{
    gap:5px;
    margin-bottom:12px;
    padding:10px;
    border-radius:16px;
  }

  body.admin-dashboard-page .staff-form h2{
    margin:0 0 1px;
    font-size:1rem;
    line-height:1.08;
  }

  body.admin-dashboard-page .staff-form label{
    gap:3px;
    font-size:.67rem;
    line-height:1.15;
  }

  body.admin-dashboard-page .staff-form input,
  body.admin-dashboard-page .staff-form select,
  body.admin-dashboard-page .staff-form textarea{
    font-size:16px!important;
    font-weight:500;
    line-height:1.1;
    padding:6px 8px!important;
    border-radius:9px;
  }

  body.admin-dashboard-page .staff-form input,
  body.admin-dashboard-page .staff-form select{
    min-height:35px!important;
    height:35px;
  }

  body.admin-dashboard-page .staff-form input::placeholder,
  body.admin-dashboard-page .staff-form textarea::placeholder{
    font-size:16px;
    font-weight:500;
  }

  body.admin-dashboard-page .customer-account-actions{
    gap:3px;
  }

  body.admin-dashboard-page .customer-account-actions .btn{
    min-height:31px;
    padding:5px 8px;
    font-size:.63rem;
    line-height:1.1;
  }

  body.admin-dashboard-page .customer-account-actions small{
    padding:0 1px;
    font-size:.59rem;
    line-height:1.17;
  }

  body.admin-dashboard-page .staff-form textarea{
    min-height:60px;
  }

  body.admin-dashboard-page .staff-form > .btn{
    min-height:34px;
    padding:6px 10px;
    font-size:.68rem;
  }
}

/* v60: keep the full company identity visible in every mobile portal header */
@media (max-width: 640px){
  body.admin-dashboard-page .portal-nav,
  body.customer-dashboard-page .portal-nav{
    min-height:72px;
    padding:4px 0;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:6px;
  }

  body.admin-dashboard-page .portal-brand,
  body.customer-dashboard-page .portal-brand{
    width:auto;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:7px;
  }

  body.admin-dashboard-page .portal-brand img,
  body.customer-dashboard-page .portal-brand img{
    width:112px;
    max-height:60px;
    flex:0 0 auto;
  }

  body.admin-dashboard-page .portal-brand > span,
  body.customer-dashboard-page .portal-brand > span,
  body.portal-account-page .portal-brand > span{
    display:block;
    color:var(--navy);
    max-width:132px;
    font-size:.72rem;
    font-weight:900;
    line-height:1.12;
    overflow-wrap:normal;
  }

  body.admin-dashboard-page .portal-brand small,
  body.customer-dashboard-page .portal-brand small,
  body.portal-account-page .portal-brand small{
    display:none;
  }

  body.admin-dashboard-page .portal-nav nav,
  body.customer-dashboard-page .portal-nav nav{
    justify-self:end;
    white-space:nowrap;
  }

  body.portal-account-page .portal-brand{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
  }

  body.portal-account-page .portal-brand img{
    width:138px;
    max-height:76px;
  }
}

@media (max-width: 360px){
  body.admin-dashboard-page .portal-brand img,
  body.customer-dashboard-page .portal-brand img{
    width:96px;
    max-height:54px;
  }

  body.admin-dashboard-page .portal-brand > span,
  body.customer-dashboard-page .portal-brand > span{
    max-width:110px;
    font-size:.65rem;
  }

  body.portal-account-page .portal-brand img{
    width:126px;
  }

  body.portal-account-page .portal-brand > span{
    display:block;
    max-width:112px;
    font-size:.68rem;
  }
}
/* About Us: mission, brand logo, and team layout */
.about-mission-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(380px,.92fr);
  align-items:center;
  gap:clamp(36px,6vw,86px);
}

.about-mission-copy .section-head{
  max-width:700px;
  margin:14px 0 0;
  text-align:left;
}

.about-mission-copy .section-head h2{
  margin-bottom:0;
}

.mission-vision-list{
  display:grid;
  gap:18px;
  margin-top:28px;
}

.mission-vision-list article{
  padding:22px 24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.mission-vision-list h3{
  margin:0 0 8px;
  color:var(--navy);
}

.mission-vision-list p{
  margin:0;
}

.about-logo-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:0;
  aspect-ratio:2009 / 783;
  padding:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 12%,rgba(13,78,166,.1),transparent 28%),
    linear-gradient(145deg,#fff,#edf4ff);
  box-shadow:var(--shadow);
}

.about-logo-panel img{
  display:block;
  width:100%;
  max-width:none;
  height:100%;
  object-fit:contain;
  mix-blend-mode:multiply;
}

.about-team-section{
  padding-top:clamp(34px,6vw,78px);
}

.about-team-section .section-head{
  max-width:780px;
}

.about-team-section > .container{
  width:min(1500px,calc(100% - 32px));
  max-width:1500px;
}

.about-team-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:14px;
}

.team-card{
  min-width:0;
  padding:24px 16px 22px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.team-avatar{
  display:grid;
  place-items:center;
  width:124px;
  height:124px;
  margin:0 auto 16px;
  overflow:hidden;
  border:4px solid #fff;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(145deg,var(--blue-2),var(--navy));
  box-shadow:0 10px 26px rgba(9,51,114,.22),0 0 0 1px var(--line);
}

.team-card:nth-child(2) .team-avatar{background:linear-gradient(145deg,#2d79d8,#143e80)}
.team-card:nth-child(3) .team-avatar{background:linear-gradient(145deg,#557fc2,#172f61)}
.team-card:nth-child(4) .team-avatar{background:linear-gradient(145deg,#1b6bc4,#09295f)}

.team-avatar img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center !important;
  background:#fff;
}

.team-avatar--placeholder{
  color:#fff;
  background:linear-gradient(145deg,#2d79d8,#09295f);
  font-size:3.25rem;
  font-weight:900;
  line-height:1;
}

.team-card h3{
  margin:0 0 5px;
  color:var(--navy);
}

.team-card .team-role{
  margin:0 0 14px;
  color:var(--blue-2);
  font-size:.9rem;
  font-weight:800;
}

.team-card > p:last-child{
  margin:0;
  font-size:.95rem;
}

@media (max-width:1280px){
  .about-team-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
  }
}

@media (max-width:980px){
  .about-mission-grid{
    grid-template-columns:1fr;
  }

  .about-logo-panel{
    min-height:0;
  }

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

@media (max-width:600px){
  .about-mission-section,
  .about-team-section{
    padding-block:34px;
  }

  .about-mission-grid{
    gap:26px;
  }

  .mission-vision-list article{
    padding:18px;
    border-radius:18px;
  }

  .about-logo-panel{
    min-height:0;
    padding:0;
    border-radius:22px;
  }

  .about-team-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .team-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:0;
    padding:18px 16px;
    text-align:center;
  }

  .team-avatar{
    width:96px;
    height:96px;
    margin:0 auto 10px;
    border-radius:50%;
  }

  .team-card h3,
  .team-card .team-role,
  .team-card > p{
    width:100%;
    min-width:0;
    overflow-wrap:anywhere;
  }

  .team-card > p{
    margin:0 0 8px;
    font-size:.9rem;
    line-height:1.55;
  }

  .team-card .team-role{
    margin-bottom:6px;
  }

  .team-avatar--placeholder{
    font-size:2.25rem;
  }
}

/* Footer-only layout fix: balanced logo and clearly labelled social buttons. */
.footer .footer-grid > div:first-child{
  min-width:0;
}

.footer .brand{
  display:flex;
  width:100%;
  max-width:380px;
  justify-content:center;
}

.footer .footer-grid .brand img{
  display:block;
  width:clamp(280px, 26vw, 360px);
  max-width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
}

.footer .socials{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

.footer .socials a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:auto;
  min-width:0;
  max-width:none;
  height:44px;
  padding:0 17px;
  overflow:hidden;
  white-space:nowrap;
  border-radius:14px;
  font-size:0;
  line-height:1;
  text-decoration:none;
}

.footer .socials a::after{
  content:none !important;
  display:none !important;
}

.footer .socials a::before{
  display:block;
  font-size:14px;
  line-height:1;
  font-weight:900;
}

.footer .socials a[aria-label="Facebook"]::before{content:"Facebook"}
.footer .socials a[aria-label="Instagram"]::before{content:"Instagram"}
.footer .socials a[aria-label="WhatsApp"]::before{content:"WhatsApp"}

@media (max-width:860px){
  .footer .brand{
    max-width:320px;
  }

  .footer .footer-grid .brand img{
    width:min(100%, 320px);
  }
}

@media (max-width:480px){
  .footer .brand{
    max-width:280px;
  }

  .footer .footer-grid .brand img{
    width:min(100%, 280px);
  }

  .footer .socials{
    gap:8px;
  }

  .footer .socials a{
    height:42px;
    padding:0 13px;
  }

  .footer .socials a::before{
    font-size:13px;
  }
}

/* Compact footer: shorter proportions on desktop and mobile. */
.footer{
  margin-top:12px;
  padding:18px 0 10px;
}

.footer-grid{
  grid-template-columns:1.05fr .5fr .75fr;
  gap:22px;
}

.footer .brand{
  max-width:220px;
}

.footer .footer-grid .brand img{
  width:clamp(180px, 15vw, 210px);
}

.footer .brand + p{
  max-width:400px !important;
  margin:4px 0 0 !important;
  font-size:.78rem;
  line-height:1.35;
}

.footer h4{
  margin:0 0 7px;
  font-size:.9rem;
}

.footer ul{
  gap:5px;
  font-size:.82rem;
  line-height:1.3;
}

.footer .socials{
  gap:6px;
  margin-top:6px;
}

.footer .socials a{
  min-width:0;
  height:30px;
  padding:0 10px;
  border-radius:10px;
}

.footer .socials a::before{
  font-size:10.5px;
}

.footer-bottom{
  margin-top:11px;
  padding-top:8px;
  font-size:.75rem;
  line-height:1.3;
}

@media (max-width:860px){
  .footer{
    margin-top:10px;
    padding:14px 0 8px;
  }

  .footer-grid{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:14px 14px;
  }

  .footer-grid > div:first-child{
    grid-column:1 / -1;
  }

  .footer .brand{
    max-width:185px;
  }

  .footer .footer-grid .brand img{
    width:min(100%, 175px);
  }

  .footer .brand + p{
    max-width:460px !important;
    font-size:.72rem;
    line-height:1.3;
  }

  .footer h4{
    margin-bottom:6px;
    font-size:.85rem;
  }

  .footer ul{
    gap:5px;
    font-size:.75rem;
    overflow-wrap:anywhere;
  }

  .footer .socials{
    margin-top:6px;
  }

  .footer .socials a{
    height:28px;
    padding:0 9px;
  }

  .footer .socials a::before{
    font-size:10px;
  }

  .footer-bottom{
    margin-top:8px;
    padding-top:7px;
    font-size:.66rem;
  }
}

@media (max-width:380px){
  .footer-grid{
    gap:12px 10px;
  }

  .footer .brand{
    max-width:170px;
  }

  .footer .footer-grid .brand img{
    width:min(100%, 165px);
  }

  .footer .socials a{
    height:30px;
    padding:0 8px;
  }

  .footer .socials a::before{
    font-size:10px;
  }
}

/* Admin application layout */
body.admin-app-page{background:#f4f7fb;color:#10264a;display:block;min-height:100vh}
body.admin-app-page [hidden]{display:none!important}
body.admin-app-page .portal-header,body.admin-app-page .portal-footer{display:none}
.admin-sidebar{position:fixed;inset:0 auto 0 0;width:196px;background:linear-gradient(180deg,#07336b,#031f4c);color:#dce9ff;padding:28px 12px 20px;display:flex;flex-direction:column;z-index:5}
.admin-app-brand{color:#fff;text-decoration:none;display:grid;grid-template-columns:26px minmax(0,1fr);align-items:center;gap:9px;padding:0 7px 26px;font-size:14px;font-weight:700}.admin-app-brand>span:last-child{white-space:nowrap}.admin-app-brand small{display:block;font-size:11px;font-weight:400;color:#b8cdf0;margin-top:3px}.admin-brand-mark{width:26px;font-size:25px;line-height:1;text-align:center}
.admin-sidebar-nav{display:grid;gap:6px}.admin-sidebar-nav a,.admin-signout{border:0;background:transparent;color:#cad9ee;text-decoration:none;border-radius:8px;padding:11px 10px;display:flex;align-items:center;gap:12px;font:500 14px/1.2 inherit;text-align:left;cursor:pointer}.admin-sidebar-nav a:hover,.admin-sidebar-nav a.is-active{background:#0756c8;color:#fff}.admin-signout{margin-top:auto;width:100%}
.admin-app-main{margin-left:196px;max-width:none!important;padding:28px 36px 56px!important}.admin-app-topbar{display:flex;justify-content:space-between;align-items:center;gap:18px;margin-bottom:16px}.admin-app-topbar h1{font-size:27px;margin:0;color:#10264a}.admin-top-actions{display:flex;align-items:center;gap:10px}.admin-icon-button,.admin-filter-button,.admin-new-button{min-height:38px;border:1px solid #d5deeb;border-radius:7px;background:#fff;color:#18345b;font:600 14px inherit;padding:0 14px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer}.admin-icon-button{padding:0 11px;position:relative;overflow:hidden}.admin-icon-button input{position:absolute;inset:0;opacity:0;cursor:pointer}.admin-new-button{background:#0756c8;color:#fff;border-color:#0756c8}.admin-new-button:hover{background:#0646a4}
.admin-compose{margin:0 0 20px!important;grid-template-columns:repeat(2,minmax(0,1fr));box-shadow:0 10px 26px rgba(18,52,93,.1)}.admin-compose[hidden]{display:none}.admin-form-heading{grid-column:1/-1;display:flex;justify-content:space-between;align-items:center}.admin-form-heading h2{margin:0}.admin-form-heading button{border:0;background:transparent;font-size:28px;cursor:pointer;color:#41536e}
.admin-appointments{margin-top:12px}.admin-tabs{display:flex;gap:0;border:1px solid #d5deeb;border-radius:7px;width:max-content;overflow:hidden;background:#fff}.admin-tabs button{border:0;border-right:1px solid #d5deeb;background:#fff;color:#19345a;padding:11px 22px;font:600 14px inherit;cursor:pointer}.admin-tabs button:last-child{border:0}.admin-tabs button.is-active{background:#edf4ff;color:#0756c8;box-shadow:inset 0 0 0 1px #0756c8}.admin-date-line{min-height:30px;display:flex;align-items:center;gap:8px;margin:12px 0;color:#5b6d86;font-size:13px}.admin-date-step,.admin-today{border:0;background:transparent;color:#0756c8;cursor:pointer;font:600 16px inherit}.admin-today{font-size:12px;padding:4px 7px;border:1px solid #d5deeb;border-radius:5px;background:#fff}
.admin-workspace{display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:28px;align-items:start}.admin-featured-record,.admin-record-list{display:grid;gap:14px}.admin-featured-record .portal-record{border:1px solid #d9e1eb;border-radius:10px;box-shadow:0 3px 10px rgba(21,53,90,.08);padding:22px;background:#fff}.admin-featured-record .record-top{display:block}.admin-featured-record .record-top h2{font-size:22px;margin:13px 0}.admin-featured-record .record-status{background:transparent;color:#0756c8;font-size:13px;font-weight:700}.admin-featured-record .record-price{display:none}.admin-featured-record .record-admin-meta{line-height:1.9;margin:0;color:#334b6d}.admin-featured-record .record-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;border-top:1px solid #e1e6ed;margin-top:15px;padding-top:15px}.admin-featured-record .record-grid div{display:grid;gap:4px}.admin-featured-record .record-grid span{font-size:12px;color:#60728c}.admin-featured-record .record-grid strong{font-size:14px;color:#1b3659}.admin-featured-record .record-actions{justify-content:flex-end;margin-top:16px}.admin-featured-record .record-actions .btn{min-width:138px}
.admin-email-preview{background:#e9eef5;border:1px solid #d5deeb;border-radius:10px;padding:16px;box-shadow:0 3px 10px rgba(21,53,90,.08)}.admin-email-title{display:flex;gap:9px;color:#1a3962;font-weight:700;margin:2px 0 15px}.admin-email-title:first-letter{color:#0756c8}.admin-email-sheet{background:#fff;border:1px solid #e1e5ec;border-radius:9px;padding:22px 19px;min-height:285px;box-shadow:0 1px 3px rgba(0,0,0,.04);color:#182b47;line-height:1.55;font-size:14px}.admin-email-sheet p{margin:0 0 20px}.admin-email-sheet strong{font-weight:700}
.admin-all-records{margin-top:26px}.admin-list-title{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:10px}.admin-list-title h2{font-size:18px;margin:0}.admin-list-title span{font-size:12px;color:#687a91}.admin-record-list .portal-record{padding:15px 18px;border:1px solid #d9e1eb;border-radius:8px;box-shadow:none}.admin-record-list .record-grid{display:none}.admin-record-list .record-top{align-items:center}.admin-record-list .record-top h2{font-size:16px}.admin-record-list .record-admin-meta{font-size:12px;margin:3px 0}.admin-record-list .record-actions{margin-top:8px}.admin-record-list .record-actions .btn{font-size:12px;padding:8px 10px}
.cleaner-dialog{width:min(420px,calc(100vw - 30px));border:0;border-radius:10px;padding:0;box-shadow:0 22px 70px rgba(3,22,54,.35)}.cleaner-dialog::backdrop{background:rgba(8,29,61,.42)}.cleaner-dialog form{padding:24px}.cleaner-dialog-heading{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}.cleaner-dialog h2{margin:0;font-size:21px}.cleaner-dialog-heading button{border:0;background:transparent;color:#50617a;font-size:26px;cursor:pointer}.cleaner-dialog label{display:grid;gap:8px;color:#334860;font-size:14px}.cleaner-dialog input{border:1px solid #cbd6e4;border-radius:7px;padding:11px;font:inherit}.cleaner-dialog-actions{display:flex;justify-content:flex-end;gap:12px;margin-top:28px}.cleaner-dialog-actions .btn{min-width:112px}
@media (max-width:900px){.admin-sidebar{width:64px;padding-inline:8px}.admin-app-brand{padding-inline:3px}.admin-app-brand>span:last-child,.admin-sidebar-nav span,.admin-signout span{display:none}.admin-app-main{margin-left:64px;padding:22px!important}.admin-workspace{grid-template-columns:1fr}.admin-email-preview{max-width:none}.admin-app-topbar{align-items:flex-start}.admin-top-actions{flex-wrap:wrap;justify-content:flex-end}}
@media (max-width:620px){.admin-app-main{padding:18px 14px!important}.admin-app-topbar{display:grid}.admin-top-actions{justify-content:flex-start}.admin-tabs{width:100%;overflow:auto}.admin-tabs button{padding:10px 14px;white-space:nowrap}.admin-featured-record .record-grid{grid-template-columns:1fr}.admin-list-title{display:grid;gap:4px}.admin-compose{grid-template-columns:1fr}.admin-compose .staff-form-wide{grid-column:auto}}
.admin-view{max-width:1120px}.admin-mini-form,.admin-settings-form{display:flex;flex-wrap:wrap;gap:10px;background:#fff;border:1px solid #d9e1eb;border-radius:10px;padding:16px;margin:0 0 18px}.admin-mini-form[hidden],.admin-settings-form[hidden]{display:none!important}.admin-mini-form input,.admin-settings-form input,.admin-settings-form textarea{border:1px solid #cbd6e4;border-radius:7px;padding:10px;font:inherit;min-width:180px}.admin-settings-form{display:grid;max-width:600px}.admin-settings-form label{display:grid;gap:7px;color:#334b6d}.admin-settings-form textarea{min-height:90px;resize:vertical}.admin-data-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(245px,1fr));gap:14px}.admin-data-card{background:#fff;border:1px solid #d9e1eb;border-radius:10px;padding:17px;box-shadow:0 2px 8px rgba(20,54,91,.05)}.admin-data-card h2{font-size:17px;margin:0 0 9px}.admin-data-card p{line-height:1.55;margin:0 0 12px;color:#465c79}.admin-data-card small{color:#6d7e95}.admin-help{color:#526781;background:#fff;border:1px solid #d9e1eb;border-radius:8px;padding:15px}.admin-availability{border:1px solid #d5deeb;border-radius:99px;background:#fff;color:#8b3128;padding:7px 11px;font:600 12px inherit;cursor:pointer}.admin-availability.is-available{color:#107240;background:#e8f7ef;border-color:#b8e4c9}.admin-message-card{grid-column:span 2}.admin-schedule{background:#fff;border:1px solid #d9e1eb;border-radius:10px;overflow:hidden}.admin-schedule article{display:grid;grid-template-columns:210px 1fr 220px;gap:14px;padding:16px 18px;border-bottom:1px solid #e6ecf4}.admin-schedule article:last-child{border-bottom:0}.admin-schedule span{color:#405a7b}.admin-schedule em{color:#0756c8;font-style:normal;font-weight:600}@media(max-width:620px){.admin-message-card{grid-column:auto}.admin-schedule article{grid-template-columns:1fr;gap:5px}}
.admin-dashboard-home{max-width:1180px}.admin-dashboard-wallpaper{position:relative;isolation:isolate;min-height:250px;border-radius:16px;overflow:hidden;display:flex;align-items:flex-end;padding:34px;color:#fff;background:linear-gradient(115deg,rgba(3,35,82,.97),rgba(7,86,200,.78));box-shadow:0 12px 32px rgba(6,45,98,.2)}.admin-dashboard-wallpaper::before{content:"";position:absolute;z-index:-1;inset:16px 24px 16px 48%;background:url('../assets/header-logo.png') center/contain no-repeat;opacity:.3;filter:brightness(0) invert(1)}.admin-dashboard-wallpaper span{font-size:12px;letter-spacing:.16em;font-weight:800;color:#bcd7ff}.admin-dashboard-wallpaper h1{font-size:34px;margin:8px 0 7px;color:#fff}.admin-dashboard-wallpaper p{max-width:570px;margin:0;color:#e1edff}.dashboard-summary-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:18px 0}.dashboard-summary-grid article{background:#fff;border:1px solid #d9e1eb;border-radius:11px;padding:18px;box-shadow:0 3px 10px rgba(21,53,90,.06)}.dashboard-summary-grid span{display:block;color:#63758d;font-size:12px;margin-bottom:8px}.dashboard-summary-grid strong{font-size:25px;color:#082e67}.dashboard-home-columns{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(250px,.7fr);gap:18px}.dashboard-home-columns>section{background:#fff;border:1px solid #d9e1eb;border-radius:11px;padding:19px}.dashboard-home-columns h2{font-size:17px;margin:0 0 14px}.dashboard-home-columns .admin-list-title button{border:0;background:transparent;color:#0756c8;font-weight:700;cursor:pointer}.dashboard-recent-list{display:grid}.dashboard-recent-list article{display:grid;grid-template-columns:1fr 175px 100px;gap:12px;align-items:center;padding:13px 0;border-bottom:1px solid #e4eaf2}.dashboard-recent-list article:last-child{border-bottom:0}.dashboard-recent-list div{display:grid;gap:3px}.dashboard-recent-list span,.dashboard-recent-list time{font-size:12px;color:#657790}.dashboard-recent-list em{font-size:11px;font-style:normal;font-weight:700;color:#0756c8;background:#edf4ff;padding:6px 8px;border-radius:99px;text-align:center}.dashboard-quick-actions{display:grid;gap:9px}.dashboard-quick-actions button{border:1px solid #d5deeb;border-radius:8px;background:#f8faff;color:#173d70;padding:12px;text-align:left;font-weight:700;cursor:pointer}.dashboard-quick-actions button:hover{background:#edf4ff;border-color:#8bb7f1}.admin-report-panel{background:#fff;border:1px solid #d9e1eb;border-radius:11px;padding:20px}.admin-report-panel h2{font-size:18px;margin:0 0 12px}.admin-report-panel article{display:flex;justify-content:space-between;gap:18px;padding:13px 4px;border-bottom:1px solid #e5ebf3}.admin-report-panel article:last-child{border-bottom:0}.admin-report-panel article span{color:#344f72}.admin-report-panel article strong{color:#0756c8}@media(max-width:900px){.dashboard-summary-grid{grid-template-columns:repeat(2,1fr)}.dashboard-home-columns{grid-template-columns:1fr}}@media(max-width:620px){.admin-dashboard-wallpaper{min-height:220px;padding:24px}.admin-dashboard-wallpaper::before{inset:20px;opacity:.12}.admin-dashboard-wallpaper h1{font-size:27px}.dashboard-summary-grid{grid-template-columns:1fr 1fr}.dashboard-recent-list article{grid-template-columns:1fr}.dashboard-recent-list em{width:max-content}}
.appointment-summary-card{background:#fff;border:1px solid #d9e1eb;border-radius:10px;padding:20px;display:flex;align-items:center;justify-content:space-between;gap:22px;box-shadow:0 3px 10px rgba(21,53,90,.06)}.appointment-summary-main{min-width:0}.appointment-summary-main h2{font-size:19px;margin:8px 0}.appointment-summary-main p{margin:4px 0;color:#526983;font-size:13px}.appointment-summary-main .record-status{display:inline-block;color:#0756c8;background:#edf4ff;border-radius:99px;padding:5px 9px;font-size:11px}.appointment-summary-card.is-progress{border-left:4px solid #e6a100}.appointment-summary-card.is-progress .record-status{color:#8a5b00;background:#fff4d3}.appointment-summary-card.is-completed{border-left:4px solid #168556}.appointment-summary-card.is-completed .record-status{color:#107044;background:#e7f7ef}.appointment-summary-actions{display:flex;align-items:center;justify-content:flex-end;gap:12px;flex:0 0 auto}.appointment-summary-actions>strong{font-size:17px;color:#0a3978}@media(max-width:700px){.appointment-summary-card{align-items:stretch;flex-direction:column;padding:16px}.appointment-summary-actions{justify-content:flex-start;flex-wrap:wrap}.appointment-summary-actions .btn{width:100%;text-align:center}.admin-email-preview{display:none}.admin-workspace{display:block}}
.admin-date-line .admin-date-step,.admin-date-line .admin-today{display:none}
.admin-card-actions{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:12px}.admin-remove-button{border:1px solid #efb8b5;border-radius:99px;background:#fff5f4;color:#a32821;padding:7px 11px;font:700 12px inherit;cursor:pointer}.admin-remove-button:hover{background:#a32821;border-color:#a32821;color:#fff}.admin-remove-button:disabled{opacity:.55;cursor:wait}
