/* ============================================================
   WILDWYND PUBLISHING — Global Stylesheet
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap");

:root {
  --ash-plum: #85465d;
  --carbon-black: #252627;
  --botanical-sage: #8bb18f;
  --soft-ivory: #f2efdf;
  --link-hover: #8bb18f;
  --link-visited: #c1abc6;

  --font-heading: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  background-image: url("assets/Home_BG.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* ============================================================
   NAVBAR
   Nav_backdrop.png 1081×192 — background
   Link_backdrop.png 51×51 — leaf BESIDE each label
   Logo on left side
   ============================================================ */
nav {
  position: relative;
  width: 100%;
  background-image: url("assets/Nav_backdrop.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 192px;
}

.nav-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}

/* Logo on left */
.nav-logo img {
  width: 120px;
  object-fit: contain;
}

/* Links group centred */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: end;
}

/* Each item: leaf + label side by side */
.nav-link-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}

.nav-link-wrap img.leaf-bg {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-link-wrap a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--soft-ivory);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

a:visited {
  color: inherit;
}

.nav-link-wrap a:visited {
  color: var(--soft-ivory);
}

/* hover */
.nav-link-wrap a:hover {
  color: var(--link-hover);
}

/* active page */
.nav-link-wrap a.active {
  color: var(--botanical-sage);
}
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 5rem 0 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 55% 45%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  align-items: start;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--carbon-black);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--carbon-black);
  margin-bottom: 1rem;
}

.hero-text ul {
  list-style: none;
}

.hero-text p,
.hero-text ul {
  max-width: 400px;
}

.hero-text ul li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--carbon-black);
  padding-left: 1.2em;
  position: relative;
}

.hero-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.hero-logo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-logo img {
  width: 340px;
}

/* ============================================================
   PURPLE MID SECTION
   content_backdrop.png — img tag sets natural height
   content overlaid absolutely on top
   ============================================================ */
.mid-section {
  position: relative;
  width: 100%;
}

.mid-section img.content-backdrop {
  width: 100%;
  display: block;
}

.mid-fungus {
  position: absolute;
  right: 0;
  top: 20%;
  width: 200px;
  pointer-events: none;
  z-index: 5;
}

.mid-fern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 5;
}

.mid-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}

.mid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  width: 100%;
  max-width: 900px;
  margin-top: 100px;
}

.mid-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mid-col a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mid-col a:hover {
  color: var(--link-hover);
}
/* .mid-col a:visited {
  color: var(--link-visited);
} */

.mid-col img.section-img {
  width: 100%;
  max-width: 240px;
}

.mid-col img.section-img.image2 {
  height: 325.84px;
}

.mid-col p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-ivory);
  text-align: left;
  line-height: 1.6;
  max-width: 200px;
}

/* ============================================================
   BOTTOM HERO SECTION
   No background — body BG shows through
   Content on right side
   ============================================================ */
.bottom-hero {
  position: relative;
  padding: 4rem 0 6rem;
}

.bottom-left-graphic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  pointer-events: none;
  z-index: 0;
}

.bottom-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: flex-end;
}

.bottom-hero-text {
  width: 35%;
  position: relative;
  z-index: 1;
}

.bottom-hero-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.bottom-hero-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--carbon-black);
  margin-bottom: 1rem;
}

.bottom-hero-text ul {
  list-style: none;
  margin-top: 1rem;
}

.bottom-hero-text ul li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--carbon-black);
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.3rem;
}

.bottom-hero-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* About */

.about-page {
  background-image: url("assets/About_BG.png");
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ============================================================
   ABOUT — TOP PURPLE SECTION
   Top_backdrop.png — img sets natural height
   ============================================================ */
.top-backdrop-section {
  position: relative;
  width: 100%;
}

.top-backdrop-section img.top-backdrop {
  width: 100%;
  display: block;
}

.top-backdrop-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 8rem 0;
}

.services-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1100px;
  width: 100%;
}

.service-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  flex: 1;
}

.services-grid > img {
  width: 130px;
  flex-shrink: 0;
}

.services-divider {
  width: 6rem;
  flex-shrink: 0;
}

.service-col a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.service-col a:hover {
  color: var(--link-hover);
}
/* .service-col a:visited {
  color: var(--link-visited);
} */

.service-col p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-ivory);
  line-height: 1.6;
  max-width: 220px;
}

.top-fungus {
  position: absolute;
  right: 2%;
  top: 20%;
  width: 150px;
  pointer-events: none;
  z-index: 5;
}
.service-head h3 a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-head h3 a:hover {
  color: var(--link-hover);
}

/* ============================================================
   ABOUT — TEAM SECTIONS
   ============================================================ */
.team-section {
  padding: 4rem 0;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10rem 4rem;
  gap: 30rem;
  align-items: start;
}

.team-photo img {
  width: 100%;
  max-width: 400px;
}

.team-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 1rem;
  margin-left: auto;
  max-width: 350px;
}

.team-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--carbon-black);
  margin-bottom: 1rem;
  max-width: 350px;
  margin-left: auto;
}

/* ============================================================
   ABOUT — MIDDLE PURPLE BANDS
   Middle_backdrops.png — img sets height, jagged both edges
   ============================================================ */
.middle-backdrop-section {
  position: relative;
  width: 100%;
}

.middle-backdrop-section img.middle-backdrop {
  width: 100%;
  display: block;
}

.middle-left-plant {
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 400px;
  pointer-events: none;
  z-index: 5;
}

.middle-right-plant {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 400px;
  pointer-events: none;
  z-index: 5;
}

.middle-backdrop-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 8rem;
}

.middle-backdrop-center {
  justify-content: center;
}

.middle-backdrop-left {
  justify-content: flex-start;
}

.middle-service {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.middle-service img {
  width: 120px;
  flex-shrink: 0;
}

.middle-service-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.middle-service-text a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.middle-service-text a:hover {
  color: var(--link-hover);
}

/* .middle-service-text a:visited {
  color: var(--link-visited);
} */

.middle-service-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-ivory);
  line-height: 1.6;
  max-width: 220px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-page {
  background-image: url("assets/SERVICES/Services_Page_BG.png");
  background-size: 100% auto;
  background-position: center -150px;
  background-repeat: no-repeat;
}

.services-section {
  position: relative;
  width: 100%;
}

.services-bg {
  width: 100%;
  display: block;
}

.services-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-blocks-grid {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 150px;
  row-gap: 200px;
}

.service-block {
  color: var(--soft-ivory);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
}

.service-head img {
  width: 140px;
}

.service-head h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-ivory);
}

.service-block ul {
  list-style: none;
  padding: 0;
}

.service-block ul li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--soft-ivory);
}

.service-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.services-plant-right {
  position: absolute;
  right: -14px;
  top: 3%;
  width: 220px;
}

.services-plant-left {
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 200px;
}

.bottom-service {
  position: relative;
  padding: 4rem 0 6rem;
}

.bottom-service-graphic {
  position: absolute;
  left: 0;
  bottom: -145px;
  width: 400px;
  pointer-events: none;
}

.bottom-service-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: flex-end;
  padding-left: 4rem;
  margin-right: 4rem;
}

.bottom-service-text {
  width: 45%;
}

.bottom-service-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.bottom-service-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--carbon-black);
  margin-bottom: 1rem;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-page {
  background-image: url("assets/PORTFOLIO/Portfolio_BG.png");
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
}

/* PORTFOLIO — HERO */
.portfolio-page .hero-text h2 {
  font-size: 1.8rem;
  color: var(--carbon-black);
  margin-bottom: 2rem;
}
.portfolio-page .hero-text h1 {
  margin-bottom: 2rem;
}

.portfolio-page .hero-text h2 {
  margin-bottom: 2rem;
}

.portfolio-page .hero-text p {
  margin-top: 1.5rem;
}

/* PORTFOLIO — CAROUSEL SECTION */
.portfolio-carousels {
  position: relative;
  width: 100%;
  background-image: url("assets/PORTFOLIO/content_backdrop.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 6rem 4rem 8rem;
  min-height: 1400px;
}

.portfolio-backdrop {
  display: none;
}

.portfolio-plant-left {
  position: absolute;
  left: 0;
  bottom: 1%;
  width: 300px;
  pointer-events: none;
  z-index: 5;
}

.portfolio-plant-right {
  position: absolute;
  right: 0;
  top: 5%;
  width: 300px;
  pointer-events: none;
  z-index: 5;
}

.portfolio-carousel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-carousel-inner + .portfolio-carousel-inner {
  margin-top: 3rem;
}

.carousel-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--soft-ivory);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 160px;
  flex-shrink: 0;
}

.carousel-item a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.carousel-item a:hover {
  color: var(--link-hover);
}

/* .carousel-item a:visited {
  color: var(--link-visited);
} */

.carousel-item img {
  width: 160px;
  height: 220px;
  object-fit: cover;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-btn {
  background: none;
  border: none;
  color: var(--soft-ivory);
  font-size: 4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.5rem;
  flex-shrink: 0;
  transition: color 0.2s;
}

.carousel-btn:hover {
  color: var(--link-hover);
}

/* PORTFOLIO — BOTTOM SECTION */
.bottom-portfolio {
  position: relative;
  padding: 4rem 0 6rem;
}

.bottom-portfolio-graphic {
  position: absolute;
  left: 0;
  bottom: -30%;
  width: 300px;
  pointer-events: none;
  z-index: 0;
}

.bottom-portfolio-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: flex-end;
  margin-right: 60px;
}

.bottom-portfolio-text {
  width: 40%;
  position: relative;
  z-index: 1;
}

.bottom-portfolio-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.bottom-portfolio-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--carbon-black);
  margin-bottom: 1rem;
}

.portfolio-carousel-inner:first-of-type {
  margin-top: 10rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background-image: url("assets/Contact_Page_Bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 1400px;
}

/* CONTACT — PURPLE SECTION */
.contact-section {
  position: relative;
  width: 100%;
  background-image: url("assets/content_backdrop.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 500px;
  padding: 5rem 8rem 6rem;
  position: relative;
  width: 100%;
  min-height: 600px;
}

.contact-backdrop {
  display: none;
  width: 100%;
}

.contact-section-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 5rem 8rem;
  max-width: 600px;
  margin-top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-fungus {
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  pointer-events: none;
  z-index: 5;
}

.contact-plant-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  pointer-events: none;
  z-index: 5;
}

.contact-inquiry {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-inquiry img {
  width: 80px;
  flex-shrink: 0;
}

.contact-inquiry-text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-inquiry-text a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-inquiry-text a:hover {
  color: var(--link-hover);
}

/* .contact-inquiry-text a:visited {
  color: var(--link-visited);
} */

.contact-inquiry-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-ivory);
  line-height: 1.6;
  max-width: 260px;
}

.bottom-contact {
  position: relative;
  padding: 4rem 0 6rem;
}

.bottom-contact-graphic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 280px;
  pointer-events: none;
  z-index: 0;
}
.bottom-contact-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6rem 0 4rem;
  display: flex;
  justify-content: flex-end;
  margin-left: 6rem;
}

.bottom-contact-text {
  width: 30%;
  position: relative;
  z-index: 1;
}

.bottom-contact-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.bottom-contact-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--carbon-black);
  margin-bottom: 1rem;
}

/* ============================================================
   PORTFOLIO — BOOK MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 2rem 0;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  position: relative;
  width: 560px;
  flex-shrink: 0;
  background-image: url("assets/Portfolio_cards/Card_Form backdrop.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 3rem 4rem;
}

.modal-backdrop {
  display: block;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--soft-ivory);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--carbon-black);
  font-weight: 700;
}

.modal-close:hover {
  background: var(--botanical-sage);
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.modal-cover {
  width: 300px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 0.8rem;
}

.modal-author {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-align: center;
  margin-bottom: 0.4rem;
}

.modal-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-ivory);
  text-align: center;
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.modal-body p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--soft-ivory);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  text-align: left;
}

.modal-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.5rem;
  flex-shrink: 0;
}

.modal-back,
.modal-buy {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modal-back:hover,
.modal-buy:hover {
  color: var(--link-hover);
}

.modal-buy {
  border: 1px solid var(--soft-ivory);
  border-radius: 4px;
  padding: 0.4rem 1rem;

  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--soft-ivory);

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-buy:hover {
  background: var(--soft-ivory);
  color: var(--carbon-black);
}
/* ===== FORCE BUTTON CONSISTENCY (FINAL FIX) ===== */

a.modal-buy,
button.modal-buy {
  display: inline-block !important;

  background: transparent !important;
  border: 1px solid var(--soft-ivory) !important;
  border-radius: 4px !important;
  padding: 0.4rem 1rem !important;

  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--soft-ivory) !important;

  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;

  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

a.modal-buy:hover,
button.modal-buy:hover {
  background: var(--soft-ivory) !important;
  color: var(--carbon-black) !important;
}

/* ============================================================
   SERVICE MODALS
   ============================================================ */
#service-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 2rem 0;
}

#service-modal-overlay.active {
  display: flex;
}

.service-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.service-modal-icon {
  width: 250px;
  flex-shrink: 0;
}

.service-modal-header .modal-title {
  text-align: left;
  font-size: 2rem;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.modal-body ul li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--soft-ivory);
  line-height: 1.7;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.3rem;
}

.modal-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.wildwynd-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wildwynd-form label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
}

.wildwynd-form input[type="text"],
.wildwynd-form input[type="email"],
.wildwynd-form input[type="file"],
.wildwynd-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--soft-ivory);
  border-radius: 4px;
  padding: 0.5rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-ivory);
  outline: none;
}

.wildwynd-form input[type="text"]:focus,
.wildwynd-form input[type="email"]:focus,
.wildwynd-form textarea:focus {
  border-color: var(--botanical-sage);
}

.wildwynd-form textarea {
  resize: vertical;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.form-checkboxes label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-ivory);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-checkboxes input[type="radio"],
.form-checkboxes input[type="checkbox"] {
  accent-color: var(--botanical-sage);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

/* prevent visited color change */
.modal-back:visited {
  color: var(--soft-ivory);
}

/* hover */
.modal-back:hover {
  color: var(--link-hover);
}

.modal-buy:hover {
  background: var(--soft-ivory);
  color: var(--carbon-black);
}

.modal-buy {
  background: transparent;
  border: 1px solid var(--soft-ivory);
  border-radius: 4px;
  padding: 0.4rem 1rem;

  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--soft-ivory);

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  cursor: pointer;
  transition: all 0.2s ease;
}

/* ============================================================
   FOOTER
   Footer_backdrop.png — CSS background
   ============================================================ */
footer {
  position: relative;
  width: 100%;
  background-image: url("assets/Footer_backdrop.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 400px;
}

.footer-plant {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  pointer-events: none;
  z-index: 3;
}

.footer-plant-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  pointer-events: none;
  z-index: 3;
}

.footer-fungus {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 280px;
  width: 200px;
  pointer-events: none;
  z-index: 3;
}

.footer-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7rem;
  padding: 0 12rem 3rem;
}

.footer-socials img {
  width: 140px;
}

.footer-address {
  text-align: center;
}

.footer-address h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--soft-ivory);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-address p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--soft-ivory);
  line-height: 1.6;
}

.footer-questions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
  text-align: left;
}

.footer-questions-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-questions img.q-mark {
  width: 70px;
}

.footer-questions a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--soft-ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-questions p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--soft-ivory);
  line-height: 1.5;
  max-width: 200px;
}
.footer-questions a:hover {
  color: var(--link-hover);
}
