[data-theme="dark"] {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-pale: rgba(201, 169, 110, .08);
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #1A1A1A;
  --text: #F5F0E8;
  --text-muted: #8A8A8A;
  --border: rgba(201, 169, 110, .18);
  --border-s: rgba(201, 169, 110, .32);
  --nav-bg: rgba(10, 10, 10, .97);
  --stats-bg: #0A0A0A;
  --stats-border: rgba(255, 255, 255, .07);
  --stats-num: #C9A96E;
  --stats-label: rgba(255, 255, 255, .38);
  --hero-grad: linear-gradient(to right, #0A0A0A, transparent);
  --card-bg: #111111;
  --card-hover: #1A1A1A;
  --quote-bg: #111111;
  --input-bg: #0A0A0A;
  --footer-bg: #0A0A0A;
  --btn-text: #0A0A0A;
  --shadow: rgba(0, 0, 0, .4);
}

[data-theme="light"] {
  --gold: #9A7540;
  --gold-light: #B8935A;
  --gold-pale: #F0E6D3;
  --bg: #FDFAF5;
  --bg-2: #F7F2EA;
  --bg-3: #EFE8DC;
  --text: #1A1612;
  --text-muted: #7A6E62;
  --border: rgba(154, 117, 64, .18);
  --border-s: rgba(154, 117, 64, .32);
  --nav-bg: rgba(253, 250, 245, .97);
  --stats-bg: #1A1612;
  --stats-border: rgba(255, 255, 255, .07);
  --stats-num: #C9A96E;
  --stats-label: rgba(255, 255, 255, .42);
  --hero-grad: linear-gradient(to right, #FDFAF5, transparent);
  --card-bg: #F7F2EA;
  --card-hover: #FDFAF5;
  --quote-bg: #FDFAF5;
  --input-bg: #FDFAF5;
  --footer-bg: #FDFAF5;
  --btn-text: #FDFAF5;
  --shadow: rgba(154, 117, 64, .12);
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  transition: background .4s, color .4s
}

@media(pointer:fine) {
  body {
    cursor: none
  }
}

* {
  transition: background-color .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease
}

img,
svg,
.cursor,
.cursor-ring,
.hero-img,
.ornament-line {
  transition: none !important
}

.cursor,
.cursor-ring {
  display: none
}

@media(pointer:fine) {
  .cursor {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%)
  }

  .cursor-ring {
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 169, 110, .45);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .15s, width .3s, height .3s, border-color .3s !important
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  transition: background .4s, padding .4s, box-shadow .4s !important
}

nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 var(--border)
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2
}

.nav-logo span {
  display: block;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-top: 2px
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 400
}

.nav-links a:hover {
  color: var(--gold)
}

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

.nav-cta {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--btn-text)
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-s);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.theme-toggle:hover {
  background: var(--gold-pale);
  border-color: var(--gold)
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  position: absolute;
  transition: opacity .3s, transform .3s !important;
  line-height: 1
}

[data-theme="dark"] .icon-sun {
  opacity: 1;
  transform: translateY(0)
}

[data-theme="dark"] .icon-moon {
  opacity: 0;
  transform: translateY(8px)
}

[data-theme="light"] .icon-sun {
  opacity: 0;
  transform: translateY(-8px)
}

[data-theme="light"] .icon-moon {
  opacity: 1;
  transform: translateY(0)
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text)
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px
}

.nav-mobile-menu.open {
  display: flex
}

.nav-mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: .1em
}

.nav-mobile-menu a:hover {
  color: var(--gold)
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer
}

.nav-mobile-theme {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 60px;
  position: relative;
  z-index: 2
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards
}

.hero-badge::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--text);
  opacity: 0;
  animation: fadeUp .8s .4s forwards
}

.hero-title em {
  font-style: italic;
  color: var(--gold)
}

.hero-desc {
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 48px;
  letter-spacing: .05em;
  opacity: 0;
  animation: fadeUp .8s .6s forwards
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards
}

.btn-primary {
  background: var(--gold);
  color: var(--btn-text);
  text-decoration: none;
  padding: 15px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  display: inline-block
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--shadow)
}

.btn-secondary {
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px
}

.btn-secondary::after {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor
}

.btn-secondary:hover {
  color: var(--gold)
}

.btn-secondary:hover::after {
  width: 50px
}

.hero-right {
  position: relative;
  overflow: hidden
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  background: var(--hero-grad);
  z-index: 1
}

.hero-ornament {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp .8s 1s forwards
}

.ornament-line {
  height: 1px;
  background: var(--gold);
  opacity: .45
}

.stats-bar {
  background: var(--stats-bg);
  padding: 44px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--stats-border)
}

.stat-item:last-child {
  border-right: none
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--stats-num);
  line-height: 1;
  margin-bottom: 8px
}

.stat-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--stats-label)
}

.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
  background: var(--bg)
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: .55
}

.about {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg)
}

.about-img-wrap {
  position: relative
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block
}

.about-img-frame {
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid var(--border-s);
  pointer-events: none
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  background: var(--gold-pale);
  z-index: -1
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px
}

.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 60px
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text)
}

.section-title em {
  font-style: italic;
  color: var(--gold)
}

.section-text {
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: .04em
}

.oab-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-s);
  padding: 16px 22px;
  margin-top: 28px;
  background: var(--bg-2)
}

.oab-badge-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0
}

.oab-badge-text {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-muted)
}

.oab-badge-text strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2px
}

.areas {
  padding: 90px 60px;
  background: var(--bg-2)
}

.areas-header {
  text-align: center;
  margin-bottom: 60px
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border)
}

.area-card {
  background: var(--card-bg);
  padding: 40px 30px;
  transition: background .35s, transform .3s, box-shadow .3s !important;
  cursor: default;
  position: relative;
  overflow: hidden
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s !important
}

.area-card:hover {
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow)
}

.area-card:hover::before {
  transform: scaleX(1)
}

.area-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.area-card:hover .area-icon {
  border-color: var(--gold);
  background: var(--gold-pale)
}

.area-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: .03em
}

.area-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-muted)
}

.approach {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg)
}

.approach-img-wrap {
  position: relative
}

.approach-img {
  width: 100%;
  object-fit: cover;
  display: block
}

.approach-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%)
}

.approach-quote {
  position: absolute;
  bottom: 36px;
  left: -32px;
  background: var(--quote-bg);
  border: 1px solid var(--border-s);
  padding: 24px 28px;
  max-width: 260px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 32px var(--shadow)
}

.approach-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text)
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 44px
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  min-width: 40px
}

.step-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--text)
}

.step-body p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-muted)
}

.contact {
  padding: 100px 60px;
  background: var(--bg-3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text)
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold)
}

.contact-info>p {
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 44px
}

.contact-details {
  display: flex;
  flex-direction: column
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border)
}

.contact-detail:first-child {
  padding-top: 0
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-2)
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-detail-text {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--text-muted)
}

.contact-detail-text strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2px;
  font-size: 13px
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.form-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted)
}

.form-input,
.form-textarea {
  background: var(--input-bg);
  border: 1px solid var(--border-s);
  color: var(--text);
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale)
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: .55
}

.form-textarea {
  height: 110px
}

.form-submit {
  background: var(--gold);
  color: var(--btn-text);
  border: none;
  padding: 15px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow)
}

footer {
  padding: 36px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--footer-bg)
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: .15em
}

.footer-text {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .08em
}

.footer-links {
  display: flex;
  gap: 24px
}

.footer-links a {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: .1em
}

.footer-links a:hover {
  color: var(--gold)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease !important
}

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

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--gold)
}

@media(max-width:900px) {
  nav {
    padding: 20px 24px
  }

  nav.scrolled {
    padding: 14px 24px
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  .nav-right .theme-toggle {
    width: 36px;
    height: 36px;
    font-size: 13px
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero-right {
    height: 65vw;
    min-height: 280px;
    order: -1
  }

  .hero-right::before {
    display: none
  }

  .hero-left {
    padding: 40px 24px 60px
  }

  .hero-badge {
    margin-bottom: 20px;
    font-size: 9px
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 52px);
    margin-bottom: 18px
  }

  .hero-desc {
    font-size: 12px;
    margin-bottom: 36px;
    max-width: 100%
  }

  .hero-ornament {
    display: none
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
    gap: 0
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--stats-border);
    padding: 20px 0
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--stats-border)
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none
  }

  .stat-num {
    font-size: 36px
  }

  .divider {
    padding: 0 24px
  }

  .about {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px
  }

  .about-img-wrap {
    max-width: 340px;
    margin: 0 auto
  }

  .about-img-frame,
  .about-img-accent {
    display: none
  }

  .areas {
    padding: 60px 24px
  }

  .areas-header {
    margin-bottom: 40px
  }

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

  .area-card {
    padding: 28px 20px
  }

  .area-name {
    font-size: 17px
  }

  .approach {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px
  }

  .approach-content {
    order: 1
  }

  .approach-img-wrap {
    order: 2
  }

  .approach-quote {
    position: static;
    margin-top: 20px;
    border-left: 3px solid var(--gold);
    max-width: 100%
  }

  .contact {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

@media(max-width:480px) {
  .areas-grid {
    grid-template-columns: 1fr
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 44px)
  }
}
/* ── UTILITY & REFACTORED CLASSES ── */
.nav-mobile-cta { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .2em; margin-top: 8px; }
.ornament-line-1 { width: 80px; }
.ornament-line-2 { width: 50px; }
.ornament-line-3 { width: 28px; }
.stat-num-symbol { font-size: 26px; }
.section-eyebrow-center { justify-content: center; margin-bottom: 16px; }
.text-center { text-align: center; }
.areas-desc { text-align: center; max-width: 600px; margin: 16px auto 0; }
.contact-card-transparent { padding: 0; background: none; border: none; box-shadow: none; text-align: center; }
