/* ===========================================================
   Summerlin Center for Aesthetic Dentistry — preview concept
   Skin: Apple design system — "white room with a single blue switch"
   Type: Inter (free substitute for SF Pro Display/Text)
   =========================================================== */

:root {
  --ink: #1d1d1f;          /* Carbon — primary text */
  --ink-mid: #333333;      /* Smoke — secondary */
  --ink-soft: #707070;     /* Ash — muted text */
  --canvas: #f5f5f7;       /* Frost — section canvas */
  --wash: #f4f8fb;         /* Ice — elevated wash */
  --pebble: #e2e2e5;       /* filled surfaces */
  --hairline: #d2d2d7;     /* 1px rules */
  --blue-fill: #0071e3;    /* filled action buttons ONLY */
  --blue-line: #0066cc;    /* outlined actions + inline links */
  --blue-air: #2997ff;     /* decorative only */
  --logo-gold: #dfb978;    /* practice logo accent — brand mark only */
  --radius: 8px;           /* cards, images, inputs */
  --pill: 980px;           /* every interactive pill */
  --img-shadow: 3px 5px 30px rgba(0, 0, 0, 0.22); /* photography grounding only */
  --wrap: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.016em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: 0.007em;
}

a {
  color: var(--blue-line);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.center {
  text-align: center;
  margin-top: 44px;
}

.eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  line-height: 1.33;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.eyebrow.light {
  color: var(--ink-soft);
}

.section-head {
  max-width: 730px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.011em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.24;
  font-weight: 300;
  letter-spacing: -0.011em;
}

.soft {
  background: var(--canvas);
}

/* ---------- Buttons — pill shape is non-negotiable ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 17px;
  line-height: 1.29;
  font-weight: 400;
  letter-spacing: -0.016em;
  text-transform: none;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--pill);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-fill);
  color: #fff;
  border-color: var(--blue-fill);
}

.btn-primary:hover {
  background: #0077ed;
  border-color: #0077ed;
  color: #fff;
}

.btn-outline {
  border-color: var(--blue-line);
  color: var(--blue-line);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue-line);
  color: #fff;
}

/* On light surfaces the secondary action is the outlined blue pill */
.btn-ghost {
  border-color: var(--blue-line);
  color: var(--blue-line);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--blue-line);
  color: #fff;
}

/* On the dark promotional band the secondary pill outlines in Ice */
.offer .btn-ghost {
  border-color: rgba(244, 248, 251, 0.66);
  color: #f4f8fb;
}

.offer .btn-ghost:hover {
  background: rgba(244, 248, 251, 0.14);
  color: #fff;
}

/* Typographic CTA block primary — same single blue */
.btn-light {
  background: var(--blue-fill);
  color: #fff;
  border-color: var(--blue-fill);
}

.btn-light:hover {
  background: #0077ed;
  border-color: #0077ed;
  color: #fff;
}

.btn.full {
  width: 100%;
  text-align: center;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row.left {
  justify-content: center;
}

/* ---------- Top bar — dark global strip ---------- */
.topbar {
  background: var(--ink);
  color: var(--canvas);
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: -0.01em;
}

.topbar-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-links {
  display: flex;
  gap: 26px;
}

.topbar a {
  color: var(--canvas);
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
  text-decoration: none;
}

/* ---------- Header — ghost nav over white, hairline rule ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--hairline);
}

.header-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink);
  border: 1px solid var(--logo-gold);
  border-radius: var(--radius);
  padding: 7px 9px;
  line-height: 1;
}

.brand-mark.light {
  color: var(--ink);
  display: inline-block;
}

.brand-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.016em;
  color: var(--ink);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}

.brand-name small {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}

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

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.on {
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-cta {
  background: var(--blue-fill);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--pill);
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 12px !important;
}

.nav-cta:hover {
  background: #0077ed;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  display: block;
}

/* ---------- Hero — centered name, tagline, two pills, then the photo ---------- */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  padding: 0;
}

.hero-media {
  position: relative;
  inset: auto;
  order: 2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: clamp(340px, 44vw, 620px);
  object-fit: cover;
  object-position: center 28%;
}

.hero-overlay {
  position: relative;
  order: 1;
  width: 100%;
  padding: 72px 0 48px;
  background: none;
  color: var(--ink);
  text-align: center;
}

.hero-overlay h1 {
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.07;
  letter-spacing: 0.011em;
  margin-bottom: 18px;
}

.hero-lede {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.24;
  font-weight: 300;
  letter-spacing: -0.011em;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ---------- Page hero — full-bleed photographic feature banner ---------- */
.page-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.page-hero .eyebrow,
.page-hero .eyebrow.light {
  color: rgba(245, 245, 247, 0.78);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.011em;
}

.page-hero-lede {
  color: rgba(245, 245, 247, 0.86);
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 300;
  letter-spacing: -0.011em;
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--img-shadow);
}

.split-copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.011em;
  margin-bottom: 14px;
}

.split-copy p {
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.checklist {
  list-style: none;
  margin: 22px 0 30px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.43;
  color: var(--ink-mid);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--ink-soft);
}

/* ---------- Offer — dark promotional band ---------- */
.offer {
  background: #000;
  color: #fff;
  padding: 72px 0;
}

.offer-in {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.offer-in img {
  width: 178px;
  flex: none;
}

.offer .eyebrow {
  color: rgba(245, 245, 247, 0.65);
}

.offer h2 {
  color: #f5f5f7;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.011em;
  margin-bottom: 12px;
}

.offer p {
  color: rgba(245, 245, 247, 0.8);
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 26px;
}

/* ---------- Service cards — quiet tiles, surface shift not shadows ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.svc-card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  display: block;
}

.svc-card:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.svc-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.svc-body {
  padding: 24px;
}

.svc-body h3 {
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}

.svc-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.43;
}

/* ---------- Doctor cards (home) ---------- */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.doc-card {
  text-decoration: none;
  color: inherit;
  background: var(--canvas);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.doc-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top center;
}

.doc-card-body {
  padding: 24px;
}

.doc-card-body h3 {
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}

.role {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.33;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 12px;
}

.doc-card-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.43;
}

/* ---------- Doctor full blocks ---------- */
.doc {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--hairline);
}

.doc:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.doc.flip .doc-photo {
  order: 2;
}

.doc-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--img-shadow);
}

.doc-copy h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.011em;
  margin-bottom: 4px;
}

.doc-copy p {
  color: var(--ink-mid);
  margin-bottom: 14px;
  font-size: 17px;
}

.mem-title {
  font-size: 17px;
  letter-spacing: -0.016em;
  margin: 26px 0 10px;
}

.mem {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}

.mem li {
  font-size: 14px;
  line-height: 1.43;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}

.mem li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--ink-soft);
}

.doc-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  margin-top: 28px;
}

.doc-facts div span {
  display: block;
  font-size: 12px;
  line-height: 1.33;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.doc-facts div strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.016em;
}

/* ---------- Before / after ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.story {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
}

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

.ba > div {
  position: relative;
}

.ba img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.ba span {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.72);
  color: #f5f5f7;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.story figcaption {
  padding: 16px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.016em;
  color: var(--ink);
}

.story-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}

.story-card h3 {
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}

.story-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.43;
}

/* ---------- Feature grid ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 24px;
}

.feature {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.feature img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.feature > div {
  padding: 24px;
}

.feature h3 {
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}

.feature p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.43;
}

/* White sections put tiles on Frost instead */
section:not(.soft):not(.spa) .feature,
section:not(.soft):not(.spa) .story,
section:not(.soft):not(.spa) .svc-card,
section:not(.soft):not(.spa) .story-card {
  background: var(--canvas);
}

/* ---------- Tour grid ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.tour-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: none;
  background: #fff;
}

.tour-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.tour-grid figure:hover img {
  transform: scale(1.04);
}

.tour-grid figcaption {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.43;
  color: var(--ink-soft);
}

/* ---------- Spa band ---------- */
.spa {
  background: var(--canvas);
}

/* ---------- CTA band — typography-only CTA block ---------- */
.cta-band {
  background: #fff;
  color: var(--ink);
  text-align: center;
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}

.cta-band h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.011em;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.24;
  font-weight: 300;
  letter-spacing: -0.011em;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.info-block {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.info-block h4 {
  font-size: 17px;
  letter-spacing: -0.016em;
  margin-bottom: 6px;
}

.info-block p {
  font-size: 14px;
  line-height: 1.43;
  color: var(--ink-soft);
}

.info-block a {
  color: var(--blue-line);
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
}

.info-block a:hover {
  text-decoration: underline;
}

.info-block.sent {
  display: none;
  border-color: var(--blue-line);
}

.form-title {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 6px;
}

.form-sub {
  color: var(--ink-soft);
  margin-bottom: 26px;
}

form.styled input,
form.styled textarea,
form.styled select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font: inherit;
  font-size: 17px;
  letter-spacing: -0.016em;
  background: var(--canvas);
  color: var(--ink);
}

form.styled textarea {
  min-height: 140px;
  resize: vertical;
}

form.styled input:focus,
form.styled textarea:focus,
form.styled select:focus {
  outline: 2px solid var(--blue-fill);
  outline-offset: 1px;
  border-color: transparent;
}

.form-note {
  font-size: 12px;
  line-height: 1.33;
  color: var(--ink-soft);
  margin-top: 10px;
}

.map-embed {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  box-shadow: none;
}

/* ---------- Footer — flat, typographic, structural ---------- */
.site-footer {
  background: var(--canvas);
  color: var(--ink-soft);
  padding: 56px 0 0;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.footer-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 38px;
}

.footer-col h4 {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.33;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 12px;
  margin-bottom: 8px;
}

.footer-lede {
  max-width: 23rem;
  margin-top: 16px;
}

.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.hours {
  margin-top: 10px;
}

.footer-nav {
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
}

.footer-bottom a {
  color: var(--ink-soft);
  text-decoration: underline;
}

/* ---------- Reveal — retired; content renders complete without JS ---------- */
.reveal,
.reveal.in {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split,
  .contact-grid,
  .doc {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .doc.flip .doc-photo {
    order: 0;
  }

  .doc-photo img {
    max-height: 460px;
    object-fit: cover;
    object-position: top center;
  }

  .footer-in {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--hairline);
    box-shadow: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 14px;
    border-bottom: 0 !important;
  }
}

@media (max-width: 640px) {
  section {
    padding: 56px 0;
  }

  .hero-overlay {
    padding: 44px 0 36px;
  }

  .hero-overlay h1 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-media img {
    height: 300px;
  }

  .topbar-tag {
    display: none;
  }

  .topbar-in {
    justify-content: center;
  }

  .offer-in {
    gap: 28px;
  }

  .offer-in img {
    width: 130px;
  }

  .footer-in {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 15px;
  }
}
