/* style.css */

/* =========================
   Root / Base
========================= */
:root {
  --bg: #060606;
  --bg-soft: #0c0c0d;
  --bg-card: rgba(14, 14, 15, 0.94);
  --text: #f3eee7;
  --text-soft: #a8a29a;
  --gold: #b8904f;
  --gold-soft: #8d6c39;
  --line: rgba(184, 144, 79, 0.22);
  --white-line: rgba(255, 255, 255, 0.06);
  --container: 1200px;
  --transition: all 0.35s ease;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  /* Header / layout tuning vars */
  --brand-mark-size: 1.05rem;
  --nav-gap: 48px;
  --balanced-right-col: 420px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

/* Page transition helpers */
body.page-enter{ opacity: 0; transition: opacity 420ms ease-out; }
body.page-enter.page-ready{ opacity: 1; }
body.page-exit{ opacity: 0; transition: opacity 420ms ease-in; }

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 120px 0;
}

/* =========================
   Typography
========================= */
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.75rem;
  margin-bottom: 22px;
}

.section-kicker.center,
.section-title.center {
  text-align: center;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

/* =========================
   Buttons / Links
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 28px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-outline {
  border-color: rgba(184, 144, 79, 0.65);
  color: var(--text);
  background: rgba(255, 255, 255, 0.01);
}

.btn-outline:hover {
  background: rgba(184, 144, 79, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
}

.text-link span {
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* allow absolute centering of the main nav while keeping brand and CTA in flow */
.site-header .nav-wrap { position: relative; }

.brand,
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  order: 1;
}

.brand-image{
  display:block;
  height:55px;
  width:auto;
  max-width:360px;
  object-fit:contain;
}

.brand{
  flex-shrink:0;
}

.brand-text,
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-mark {
  color: var(--gold);
  font-size: var(--brand-mark-size);
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name,
.brand-sub {
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--gold);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  order: 2;
  margin-left: auto;
  margin-right: auto;
}

/* center the nav visually regardless of surrounding items */
.site-header .main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Reusable balanced two-column layout utility
   - left column grows, right column fixed width (uses --balanced-right-col)
   - center-aligned container for consistent page rhythm
*/
.balanced-two-col {
  display: grid;
  grid-template-columns: 1fr var(--balanced-right-col);
  gap: 48px;
  max-width: min(var(--container), 1180px);
  margin: 0 auto;
  padding: 0 12px;
}

@media (max-width:960px){
  .balanced-two-col { grid-template-columns: 1fr; gap: 28px; }
}

.main-nav a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: #ede8e1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta,
.consult-btn,
.request-btn {
  min-width: 190px;
  padding-inline: 24px;
  order: 3;
  margin-left: auto;
}

/* Responsive: stack and center for small screens */
@media (max-width: 860px) {
  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 10px 0;
  }

  .brand, .brand-logo { order: 1; justify-content: center; }
  .brand-image { margin: 0 auto; height: 58px; max-width: min(78vw, 320px); }
  .main-nav { order: 2; margin: 0; justify-content: center; flex-wrap: wrap; gap: 18px; position: static; transform: none; }
  .nav-cta, .consult-btn, .request-btn { order: 3; margin: 0 auto; }
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.74)),
    url("../images/home-bg.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72) 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 1px;
  text-align: center;
}

.hero .section-kicker {
  margin-bottom: 18px;
}

.hero-divider {
  display: block;
  width: 92px;
  height: 1px;
  margin: 0 auto 28px;
  background: var(--gold);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.6rem, 14vw, 10.5rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.1em;
  color: #f7f2eb;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
  margin-top: 26px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.78rem;
  color: #e6dfd5;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* =========================
   Stats
========================= */
.stats-section {
  background: #050505;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 42px 20px 38px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-icon {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.stat-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-card p {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--text-soft);
}

/* =========================
   Services
========================= */
.services-section {
  background:
    linear-gradient(to bottom, #070707, #050505);
}

.section-heading-wrap {
  max-width: 760px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 38px 34px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 144, 79, 0.55);
  box-shadow: var(--shadow);
}

.service-icon {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 26px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 28px;
  max-width: 32ch;
}

.service-card .text-link {
  margin-top: auto;
}

/* =========================
   FAQ
========================= */
.faq-section {
  background: #050505;
}

.faq-wrap {
  max-width: 980px;
}

.faq-wrap .section-title {
  margin-bottom: 42px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  display: block;
  background: rgba(12, 12, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(184, 144, 79, 0.35);
  background: rgba(16, 16, 17, 0.98);
}

.faq-item .faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
}

.faq-item .faq-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.faq-item .faq-head span {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.28s ease, color 0.28s ease;
  transform-origin: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 30px;
  transition: max-height 0.36s ease, opacity 0.28s ease, padding 0.28s ease;
  color: var(--text-soft);
}

.faq-answer p {
  margin: 0;
  padding: 18px 0 28px 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
  padding: 0 30px 18px 30px;
  /* allow JS to set appropriate max-height */
  max-height: 800px;
}

.faq-item.open .faq-head span {
  transform: rotate(45deg);
  color: rgba(184, 144, 79, 1);
}

/* =========================
   Home About
========================= */
.home-about-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(184, 144, 79, 0.1), transparent 36%),
    linear-gradient(180deg, #070707 0%, #0b0b0c 100%);
  overflow: hidden;
}

.home-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 92%);
  pointer-events: none;
}

.home-about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.home-about-intro {
  max-width: 680px;
}

.home-about-intro .section-title {
  margin-bottom: 28px;
  max-width: 12ch;
}

.home-about-lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(243, 238, 231, 0.92);
  margin-bottom: 20px;
  max-width: 62ch;
}

.home-about-copy {
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 60ch;
}

.home-about-panel {
  display: grid;
  gap: 22px;
}

.home-about-card,
.home-about-pillar {
  border: 1px solid rgba(184, 144, 79, 0.16);
  background: linear-gradient(180deg, rgba(16, 16, 17, 0.95), rgba(9, 9, 10, 0.98));
  box-shadow: var(--shadow);
}

.home-about-card {
  padding: 34px 32px;
  border-radius: 20px;
}

.home-about-label {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  margin-bottom: 18px;
}

.home-about-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  font-weight: 500;
  margin-bottom: 18px;
}

.home-about-card p {
  color: var(--text-soft);
  max-width: 34ch;
}

.home-about-pillars {
  display: grid;
  gap: 16px;
}

.home-about-pillar {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 24px 22px;
  border-radius: 16px;
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 144, 79, 0.25);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.home-about-pillar h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.home-about-pillar p {
  color: var(--text-soft);
  margin: 0;
}

/* =========================
   CTA
========================= */
.cta-section {
  padding: 0 0 110px;
  background: #050505;
}

.cta-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 62px 40px;
  border: 1px solid rgba(184, 144, 79, 0.16);
  background: linear-gradient(180deg, rgba(12, 12, 13, 0.95), rgba(9, 9, 10, 0.98));
  border-radius: 18px;
}

.cta-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 14px;
}

.cta-card p {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  margin-bottom: 26px;
}

.cta-link {
  justify-content: center;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: #0a0a0b;
  border-top: 1px solid var(--white-line);
  padding-top: 78px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-col h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-logo-image {
  display: block;
  width: min(100%, 220px);
  height: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand .brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.footer-copy,
.footer-col li,
.footer-col a {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.footer-copy {
  max-width: 30ch;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-accent {
  color: var(--gold) !important;
}

.contact-strong {
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #8c857c;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .main-nav {
    gap: 24px;
  }

  .nav-cta {
    min-width: 160px;
  }

  .services-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: auto;
    padding: 22px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 8px;
  }

  .nav-cta {
    order: 2;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 60px;
  }

  .stats-grid,
  .home-about-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .section-space {
    padding: 92px 0;
  }

  .cta-section {
    padding-bottom: 92px;
  }

  .home-about-intro .section-title,
  .home-about-lead,
  .home-about-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-tagline,
  .section-kicker,
  .btn,
  .main-nav a,
  .footer-bottom p,
  .footer-bottom a {
    letter-spacing: 0.18em;
  }

  .hero-actions {
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .service-card,
  .faq-item,
  .cta-card {
    padding-inline: 22px;
  }

  .faq-item {
    align-items: flex-start;
  }

  .home-about-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .home-about-pillar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .pillar-number {
    width: 42px;
    height: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  /* Services page styles (appended) */
  :root {
    --black: #0a0a0a;
    --charcoal: #111111;
    --gold: #b8904f;
    --gold-soft: #c6a468;
    --white: #f7f5f1;
    --off-white: #efede9;
    --text-dark: #171717;
    --text-soft: #777777;
    --border-soft: rgba(184, 144, 79, 0.18);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    --max-width: 1180px;
    --transition: all 0.35s ease;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--off-white);
    color: var(--text-dark);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .container {
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
  }

  /* HEADER */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(60, 58, 56, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .brand-icon {
    color: var(--gold);
    font-size: 1.55rem;
    line-height: 1;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .brand-title {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: #ffffff;
  }

  .brand-subtitle {
    margin-top: 4px;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    color: var(--gold-soft);
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
  }

  .main-nav a {
    position: relative;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #ffffff;
    transition: var(--transition);
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--gold-soft);
  }

  .main-nav a:hover::after,
  .main-nav a.active::after {
    width: 100%;
  }

  .nav-btn {
    border: 1px solid rgba(184, 144, 79, 0.75);
    color: var(--gold-soft);
    padding: 16px 30px;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    font-weight: 600;
    transition: var(--transition);
  }

  .nav-btn:hover {
    background: rgba(184, 144, 79, 0.1);
  }

  /* HERO */
  .services-hero {
    position: relative;
    min-height: 720px;
    padding-top: 82px;
    display: flex;
    align-items: center;
    background:
      linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.68)),
      url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.45)),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.52));
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .hero-kicker {
    color: var(--gold-soft);
    font-size: 0.84rem;
    letter-spacing: 0.65em;
    margin-bottom: 18px;
  }

  .hero-line {
    display: block;
    width: 82px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 26px;
  }

  .hero-inner h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4.6rem, 10vw, 8.7rem);
    line-height: 0.88;
    font-weight: 700;
    color: #ffffff;
  }

  .hero-inner h1 span {
    color: var(--gold);
    font-style: italic;
  }

  /* CATEGORY */
  .service-category {
    padding: 90px 0 20px;
    background: var(--off-white);
  }

  .last-category {
    padding-bottom: 90px;
  }

  .section-heading {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 48px;
  }

  .section-bar {
    width: 3px;
    min-width: 3px;
    height: 68px;
    background: var(--gold);
    margin-top: 8px;
  }

  .section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.9rem, 5vw, 4.7rem);
    line-height: 0.95;
    color: #171717;
    margin-bottom: 10px;
  }

  .section-heading p {
    font-size: 0.82rem;
    letter-spacing: 0.45em;
    color: var(--gold);
  }

  /* CARDS */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
  }

  .two-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

  .service-card {
    background: #f4f2ee;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
  }

  .card-image {
    height: 290px;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(100%);
  }

  .card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 45%, rgba(244, 242, 238, 0.98) 92%);
  }

  .card-content {
    position: relative;
    padding: 0 36px 34px;
    margin-top: -26px;
  }

  .card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #faf8f4;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    margin-bottom: 28px;
  }

  .card-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    color: #1b1b1b;
  }

  .card-content p {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 30px;
    min-height: 88px;
  }

  .card-link {
    display: inline-block;
    width: 100%;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    transition: var(--transition);
  }

  .card-link:hover {
    color: #8b682f;
  }

  /* CTA */
  .cta-section {
    background:
      linear-gradient(100deg, #f7f6f3 0%, #f7f6f3 72%, #f1efeb 72%, #f1efeb 100%);
    padding: 95px 0 110px;
    text-align: center;
  }

  .cta-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3efe9;
    border: 1px solid rgba(184, 144, 79, 0.22);
    color: var(--gold);
    font-size: 2rem;
  }

  .cta-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    font-style: italic;
    max-width: 760px;
    margin: 0 auto 28px;
  }

  .cta-section p {
    max-width: 760px;
    margin: 0 auto 46px;
    font-size: 1.05rem;
    color: #6e6e6e;
  }

  .cta-button {
    display: inline-block;
    min-width: 460px;
    background: #050505;
    color: var(--gold);
    padding: 24px 34px;
    letter-spacing: 0.42em;
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    background: #111111;
  }

  /* FOOTER */
  .site-footer {
    background: #090909;
    color: #ffffff;
    padding: 70px 0 60px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 42px;
  }

  .footer-logo {
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }

  .footer-brand p,
  .footer-col p,
  .footer-col a {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.9;
  }

  .footer-col h4 {
    color: var(--gold);
    font-size: 0.88rem;
    margin-bottom: 20px;
    letter-spacing: 0.22em;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-col a:hover {
    color: #ffffff;
  }

  .footer-strong {
    color: #ffffff !important;
    letter-spacing: 0.1em;
    font-weight: 700;
  }

  /* RESPONSIVE */
  @media (max-width: 1200px) {
    .main-nav {
      gap: 26px;
    }

    .cards-grid {
      gap: 28px;
    }
  }

  @media (max-width: 992px) {
    .site-header {
      position: relative;
    }

    .nav-wrap {
      flex-wrap: wrap;
      justify-content: center;
      padding: 18px 0;
    }

    .brand {
      width: 100%;
      justify-content: center;
    }

    .main-nav {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px 24px;
    }

    .services-hero {
      min-height: 620px;
      padding-top: 40px;
    }

    .cards-grid,
    .two-cards,
    .footer-grid {
      grid-template-columns: 1fr;
      max-width: 100%;
    }

    .cta-button {
      min-width: 0;
      width: 100%;
      max-width: 520px;
    }
  }

  @media (max-width: 768px) {
    .container {
      width: min(100% - 28px, var(--max-width));
    }

    .section-heading {
      flex-direction: column;
      gap: 18px;
    }

    .section-bar {
      width: 70px;
      height: 3px;
      margin-top: 0;
    }

    .card-content {
      padding: 0 24px 28px;
    }

    .card-content h3 {
      font-size: 1.65rem;
    }

    .hero-kicker,
    .section-heading p,
    .nav-btn,
    .main-nav a {
      letter-spacing: 0.22em;
    }
  }

  @media (max-width: 480px) {
    .services-hero {
      min-height: 520px;
    }

    .card-image {
      height: 230px;
    }

    .cta-section h2 {
      font-size: 2.6rem;
    }

    .cta-section p {
      font-size: 0.96rem;
    }
  }
}

/* Alternate services theme (appended) */
:root {
  --black: #070707;
  --charcoal: #5e5b58;
  --gold: #b68a45;
  --gold-soft: #c6a25c;
  --white: #ffffff;
  --off-white: #f3f1ed;
  --card: #f6f4f0;
  --text: #161616;
  --text-soft: #767676;
  --line: rgba(182, 138, 69, 0.18);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --max-width: 1160px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(65, 63, 61, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-soft);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.consult-btn {
  border: 1px solid rgba(182, 138, 69, 0.8);
  color: var(--gold-soft);
  padding: 15px 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  transition: var(--transition);
}

.consult-btn:hover {
  background: rgba(182, 138, 69, 0.08);
}

/* HERO */
.services-hero {
  position: relative;
  min-height: 760px;
  padding-top: 82px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.36)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-kicker {
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.62em;
  margin-bottom: 18px;
}

.hero-line {
  width: 70px;
  height: 1px;
  display: block;
  background: var(--gold);
  margin: 0 auto 26px;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.4rem, 10vw, 8.8rem);
  line-height: 0.88;
  font-weight: 700;
  color: var(--white);
}

.hero-content h1 span {
  color: var(--gold);
  font-style: italic;
}

/* PRACTICE SECTION */
.practice-section {
  padding: 90px 0 24px;
}

.last-section {
  padding-bottom: 100px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 50px;
}

.heading-bar {
  width: 3px;
  min-width: 3px;
  height: 68px;
  background: var(--gold);
  margin-top: 8px;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.45em;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.services-grid.two-column {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

/* CARD */
.service-card {
  background: var(--card);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-image {
  height: 295px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  position: relative;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 44%, rgba(246, 244, 240, 0.95) 92%);
}

.card-body {
  position: relative;
  padding: 0 36px 34px;
  margin-top: -28px;
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fbf9f5;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 28px;
}

.card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  line-height: 1.08;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  color: #181818;
}

.card-body p {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 28px;
  min-height: 88px;
}

.card-body a {
  display: block;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
}

.card-body a:hover {
  color: #8f672c;
}

/* CTA */
.cta-section {
  background:
    linear-gradient(100deg, #f8f7f4 0%, #f8f7f4 72%, #f2f0ec 72%, #f2f0ec 100%);
  padding: 96px 0 112px;
  text-align: center;
}

.cta-content {
  max-width: 860px;
}

.cta-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #f2eee8;
  border: 1px solid rgba(182, 138, 69, 0.22);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 30px;
}

.cta-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 28px;
}

.cta-content p {
  max-width: 720px;
  margin: 0 auto 44px;
  color: #6d6d6d;
  font-size: 1.05rem;
}

.cta-btn {
  display: inline-block;
  min-width: 460px;
  background: #050505;
  color: var(--gold);
  padding: 24px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #111111;
}

/* FOOTER */
.site-footer {
  background: #090909;
  color: var(--white);
  padding: 72px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer-logo {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: #b9b9b9;
  font-size: 1rem;
  line-height: 1.9;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-strong {
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .main-nav {
    gap: 24px;
  }

  .services-grid {
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .site-header {
    position: relative;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .services-hero {
    min-height: 620px;
    padding-top: 40px;
  }

  .services-grid,
  .services-grid.two-column,
  .footer-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cta-btn {
    min-width: 0;
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .section-heading {
    flex-direction: column;
    gap: 16px;
  }

  .heading-bar {
    width: 70px;
    height: 3px;
    margin-top: 0;
  }

  .card-body {
    padding: 0 24px 28px;
  }

  .card-body h3 {
    font-size: 1.65rem;
  }

  .hero-kicker,
  .section-heading p,
  .main-nav a,
  .consult-btn {
    letter-spacing: 0.22em;
  }
}

@media (max-width: 480px) {
  .services-hero {
    min-height: 520px;
  }

  .card-image {
    height: 230px;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}



/* =========================
   Admin Dashboard Sidebar
========================= */
.admin-body {
  margin: 0;
  background: #080808;
  color: #f3eee7;
  font-family: "Inter", sans-serif;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 280px;
  min-height: 100vh;
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  border-right: 1px solid rgba(184, 144, 79, 0.18);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
}

.admin-brand-wrap {
  margin-bottom: 34px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none; /* ensure logo link has no underline */
}

/* links in the admin sidebar should never be underlined */
.admin-nav-link,
.admin-brand {
  text-decoration: none !important;
}
.admin-nav-link:hover,
.admin-brand:hover {
  text-decoration: none;
}

.admin-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 144, 79, 0.12);
  border: 1px solid rgba(184, 144, 79, 0.3);
  color: #b8904f;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.admin-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.admin-brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.admin-brand-sub {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b8904f;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  color: #d9d0c4;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admin-nav-link:hover {
  color: #ffffff;
  background: rgba(184, 144, 79, 0.08);
  border-color: rgba(184, 144, 79, 0.16);
}

.admin-nav-link.active {
  color: #ffffff;
  background: rgba(184, 144, 79, 0.14);
  border-color: rgba(184, 144, 79, 0.28);
  box-shadow: inset 0 0 0 1px rgba(184, 144, 79, 0.08);
}

.admin-sidebar-bottom {
  margin-top: 30px;
}

.admin-user-box {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
}

.admin-user-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a8a29a;
  margin-bottom: 6px;
}

.admin-user-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.admin-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid rgba(184, 144, 79, 0.45);
  color: #f3eee7;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  transition: all 0.3s ease;
}

.admin-logout-btn:hover {
  background: rgba(184, 144, 79, 0.1);
  color: #ffffff;
}

.admin-main {
  flex: 1;
  min-width: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 144, 79, 0.05), transparent 30%),
    #0a0a0a;
}

.admin-content {
  padding: 34px;
}

.admin-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.admin-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0 0 8px;
  color: #ffffff;
}

.admin-page-subtitle {
  margin: 0;
  color: #a8a29a;
  font-size: 0.95rem;
}

.admin-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #b8904f;
  color: #080808;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  transition: all 0.3s ease;
}

.admin-action-btn:hover {
  background: #c79a4f;
  color: #050505;
  transform: translateY(-2px);
}

.admin-stat-card {
  height: 100%;
  background: rgba(14, 14, 15, 0.95);
  border: 1px solid rgba(184, 144, 79, 0.14);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.admin-stat-label {
  color: #a8a29a;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.admin-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
}

.admin-table-card {
  background: rgba(14, 14, 15, 0.96);
  border: 1px solid rgba(184, 144, 79, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.admin-table-head {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.admin-table {
  --bs-table-bg: transparent;
  --bs-table-color: #f3eee7;
  --bs-table-border-color: rgba(255, 255, 255, 0.06);
  margin-bottom: 0;
}

.admin-table thead th {
  color: #b8aea0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom-width: 1px;
  padding: 16px 18px;
  white-space: nowrap;
}

.admin-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
}

.admin-table tbody tr:hover {
  background: rgba(184, 144, 79, 0.04);
}

@media (max-width: 992px) {
  .admin-layout {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    min-height: auto;
    position: relative;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 144, 79, 0.18);
  }

  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .admin-nav-link {
    flex: 1 1 220px;
  }

  .admin-content {
    padding: 24px 18px;
  }
}

@media (max-width: 576px) {
  .admin-page-head {
    align-items: flex-start;
  }

  .admin-action-btn {
    width: 100%;
    min-width: 0;
  }

  .admin-table thead th,
  .admin-table tbody td {
    padding: 14px 12px;
  }
}
