:root {
  --cream-light: #fdf8f2;
  --cream: #f2e6d8;
  --accent: #c6945f;
  --accent-dark: #ac7b45;
  --text-dark: #1a140f;
  --text-muted: #574f47;
  --rich-black: #0c0b0a;
  --card-gradient-start: #cba068;
  --card-gradient-end: #93663a;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background-color: var(--rich-black);
  position: relative;
  z-index: 50;
  padding: 0.75rem 0 0.75rem;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  flex-wrap: nowrap;
}

.brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-37%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
  z-index: 10;
}

.brand-logo {
  height: 180px;
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.25));
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.75rem;
  color: #f8f4ee;
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.quote-btn {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--rich-black);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 0;
}

.quote-btn-mobile {
  display: none;
}

.quote-btn:hover,
.quote-btn:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.admin-menu-dropdown {
  position: relative;
}

.admin-name-link {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--rich-black);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-right: 2rem;
}

.admin-name-link::after {
  content: "▼";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.admin-menu-dropdown:hover .admin-name-link::after {
  transform: translateY(-50%) rotate(180deg);
}

.admin-name-link:hover,
.admin-name-link:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.admin-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: rgba(12, 11, 10, 0.98);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(248, 244, 238, 0.1);
  overflow: hidden;
}

.admin-menu-dropdown:hover .admin-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #f8f4ee;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.95rem;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  background: rgba(248, 244, 238, 0.1);
  color: var(--accent);
}

.dropdown-link.logout-link {
  border-top: 1px solid rgba(248, 244, 238, 0.1);
  margin-top: 0.25rem;
  padding-top: 0.75rem;
}

.admin-login-link {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--rich-black);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.admin-login-link:hover,
.admin-login-link:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(248, 244, 238, 0.35);
  border-radius: 10px;
  background: rgba(248, 244, 238, 0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(248, 244, 238, 0.12);
  border-color: rgba(248, 244, 238, 0.6);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #f8f4ee;
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -7px;
  left: 0;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 7px;
  left: 0;
}

.nav-toggle.is-active .nav-toggle-bar {
  background: transparent;
}

.nav-toggle.is-active .nav-toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 5rem 0 1.8rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
 
}

.hero-copy {
  max-width: 41rem;
}

.hero-copy .eyebrow {
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 0.75rem;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.hero-copy h1 .highlight {
  display: block;
  color: var(--accent);
}

.hero-text {
  max-width: 70ch;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 1.25rem;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  background: var(--accent);
  color: var(--rich-black);
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 18px 35px -18px rgba(198, 148, 95, 0.8);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover,
.primary-btn:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 45px -20px rgba(172, 123, 69, 0.75);
}

.hero-visual {
  justify-self: center;
  width: min(560px, 100%);
  max-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 60px -40px rgba(12, 11, 10, 0.45);
}

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

.cta-section {
  background: var(--rich-black);
  padding: 3rem 0;
  color: #f5f1ed;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 2.5rem;
}

.cta-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.cta-copy h2 span {
  color: var(--accent);
}

.cta-copy p {
  color: #d9d5cf;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.secondary-btn {
  display: inline-flex;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--rich-black);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.cta-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 35px 60px -40px rgba(12, 11, 10, 0.45);
}

.cta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 360px;
}
.projects-section {
  padding: 5rem 0 5.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(253, 248, 242, 0.92) 60%,
    #ffffff 100%
  );
}

.projects-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.projects-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw, 3rem);
  margin: 0 0 1rem;
  color: var(--text-dark);
}

.projects-header p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 24px 45px -26px rgba(12, 11, 10, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.project-thumb {
  justify-self: center;
  width: min(560px, 100%);
  max-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 35px 60px -40px rgba(12, 11, 10, 0.45);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-dark);
}

.project-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.materials-section {
  padding: 0 0 4.5rem;
}

.materials-banner {
  background: linear-gradient(180deg, #f3e8d9 0%, #daba93 100%);
  padding: 2.9rem 0 2.7rem;
  text-align: center;
  color: var(--text-dark);
}

.materials-banner .container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.materials-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  white-space: normal;
  gap: clamp(1.8rem, 3.2vw, 1.8rem);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 600;
}

.materials-list span {
  display: inline-flex;
  align-items: center;
  color: #1f1812;
}

.materials-list .materials-accent {
  color: #b7864f;
  font-weight: 700;
}

.materials-dot {
  font-size: 0.9em;
  color: #1f1812;
  transform: translateY(-0.08em);
}

.materials-banner p {
  margin: 2.1rem auto 0;
  max-width: 80ch;
  color: rgba(34, 27, 22, 0.72);
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.contact-invite {
  text-align: center;
  padding: 4.25rem 0 2.5rem;
}

.contact-invite h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
  color: var(--text-dark);
}

.contact-invite p {
  margin: 0 auto 3.4rem;
  max-width: 50ch;
  color: rgba(26, 20, 15, 0.66);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.contact-card {
  background: var(--rich-black);
  color: #f8f4ed;
  border-radius: 18px;
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  box-shadow: 0 30px 45px -32px rgba(0, 0, 0, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 36px 52px -30px rgba(0, 0, 0, 0.92);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(198, 148, 95, 0.3) 0%,
    rgba(198, 148, 95, 0.05) 100%
  );
}

.contact-card .icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent);
}

.contact-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.contact-card .card-content h3 {
  margin: 0 0 0.4rem;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.contact-card .card-content span {
  color: #dcd2c3;
  letter-spacing: 0.05em;
}

.site-footer {
  background: var(--rich-black);
  color: #f6f1eb;
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  
  align-items: start;
}

.footer-brand .brand {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: auto;
  width: auto;
  max-width: 200px;
  max-height: 120px;
  display: block;
  filter: none;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  color: #d7cfba;
  letter-spacing: 0.03em;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-links a,
.footer-contact a {
  display: block;
  color: #f6f1eb;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.footer-address {
  display: block;
  margin-top: 0.5rem;
  color: #d7cfba;
  letter-spacing: 0.03em;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--accent);
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 150px;
  }

  .hero-copy {
    max-width: 100%;
    width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-visual {
    justify-self: center;
    width: 100%;
    max-width: 100%;
  }

  .cta-grid,
  .projects-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .primary-btn {
    margin-bottom: 2rem;
  }

  .brand {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-37%);
    z-index: 10;
  }


  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .nav-container {
    align-items: center;
    justify-content: space-between;
    padding-left: 120px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(12, 11, 10, 0.96);
    padding: 1.5rem;
    gap: 1.25rem;
    border-radius: 18px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 28px 40px -30px rgba(0, 0, 0, 0.6);
    margin: 0;
    z-index: 100;
  }

  .site-nav a {
    display: block;
    width: 100%;
  }

  .site-nav.nav-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .admin-menu-dropdown {
    width: 100%;
  }

  .admin-name-link {
    width: 100%;
    text-align: left;
  }

  .admin-name-link::after {
    right: 1rem;
  }

  .admin-menu-dropdown.mobile-open .admin-name-link::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .admin-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    min-width: auto;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  }

  .admin-menu-dropdown.mobile-open .admin-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin-top: 0.5rem;
    padding: 0;
  }

  .dropdown-link {
    padding: 0.75rem 0;
    color: #f8f4ee;
  }

  .dropdown-link.logout-link {
    border-top: 1px solid rgba(248, 244, 238, 0.1);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
  }

  .quote-btn {
    display: none;
  }

  .quote-btn-mobile {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--rich-black);
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .quote-btn-mobile:hover,
  .quote-btn-mobile:focus-visible {
    background: var(--accent-dark);
    transform: translateY(-1px);
  }
}

@media (max-width: 720px) {
  .brand {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-37%);
    z-index: 10;
  }

  .brand-logo {
    height: 150px;
  }

  .nav-container {
    flex-wrap: nowrap;
    padding-left: 100px;
  }

  .quote-btn {
    display: none;
  }

  .quote-btn-mobile {
    display: block;
    width: 100%;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--rich-black);
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .admin-menu-dropdown {
    width: 100%;
  }

  .admin-name-link {
    width: 100%;
    text-align: left;
  }

  .admin-name-link::after {
    right: 1rem;
  }

  .admin-menu-dropdown.mobile-open .admin-name-link::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .admin-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    min-width: auto;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  }

  .admin-menu-dropdown.mobile-open .admin-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin-top: 0.5rem;
    padding: 0;
  }

  .dropdown-link {
    padding: 0.75rem 0;
    color: #f8f4ee;
  }

  .dropdown-link.logout-link {
    border-top: 1px solid rgba(248, 244, 238, 0.1);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
  }

  .quote-btn-mobile:hover,
  .quote-btn-mobile:focus-visible {
    background: var(--accent-dark);
    transform: translateY(-1px);
  }

  .hero {
    padding: 3.75rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a,
  .footer-contact a {
    display: inline-block;
    margin: 0.4rem 0.6rem;
  }

  .site-nav {
    right: 1rem;
    left: 1rem;
  }

  .materials-list {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    gap: 1.05rem;
    font-size: 1.65rem;
    letter-spacing: 0.1em;
  }

  .page-image-grid {
    grid-template-columns: 1fr !important;
  }

  .page-image-preview {
    order: 1;
  }

  .page-image-preview img,
  .page-image-preview > div {
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-image-upload {
    order: 2;
  }

  .upload-progress-bar {
    height: 20px;
  }

  .upload-progress-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 540px) {
  .brand {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-37%);
    z-index: 10;
  }

  .brand-logo {
    height: 150px;
  }

  .nav-container {
    padding-left: 80px;
  }

  .materials-list {
    font-size: 1.4rem;
    gap: 0.8rem;
  }

  .contact-card {
    padding: 2.2rem 2.35rem;
  }
}

/* Upload Progress Bar Styles */
.upload-progress-container {
  margin-bottom: 1rem;
}

.upload-progress-bar {
  width: 100%;
  height: 24px;
  background-color: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upload-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2c5530 0%, #4a7c59 50%, #2c5530 100%);
  background-size: 200% 100%;
  animation: progress-shimmer 2s infinite;
  transition: width 0.3s ease;
  border-radius: 12px;
}

@keyframes progress-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.upload-progress-text {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.upload-message-container {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.upload-message-container.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.upload-message-container.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.upload-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-section-tabs {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
}

.tabs-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 1rem;
}

.tab-button {
  border: 1px solid #d4d4d4;
  background: #f8f8f8;
  color: #2c5530;
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.tab-button:hover,
.tab-button.active {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 14px rgba(44, 85, 48, 0.25);
}

@media (max-width: 720px) {
  .tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
  }

  .tab-button {
    flex-shrink: 0;
  }
}

.tab-section {
  display: none;
}

.tab-section.active {
  display: block;
}
