/* =========================================================
   JLURA
   ========================================================= */

:root {
  --cream: #f0e8dc;
  --cream-soft: #f7f2ea;
  --paper: #fcfaf6;
  --white: #ffffff;

  --ink: #1b211d;
  --ink-soft: #414942;
  --muted: #687069;

  --green: #20372c;
  --green-mid: #2b4639;
  --green-light: #395649;

  --tan: #aa7048;
  --tan-dark: #8f5937;
  --tan-soft: #dfbfa5;

  --line: rgba(27, 33, 29, 0.1);

  --shadow-small:
    0 10px 30px rgba(27, 33, 29, 0.06);

  --shadow:
    0 22px 55px rgba(27, 33, 29, 0.1);

  --radius: 20px;
  --radius-large: 30px;

  --container: 1180px;

  --ease:
    cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;

  font-family:
    "DM Sans",
    sans-serif;

  color: var(--ink);

  background: var(--paper);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;

  overflow-x: hidden;
}

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

button {
  font: inherit;
}

p {
  margin-top: 0;
}

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

ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

::selection {
  background: var(--tan-soft);
  color: var(--ink);
}

.container {
  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background:
    rgba(252, 250, 246, 0.92);

  border-bottom:
    1px solid var(--line);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);
}

.nav-wrap {
  position: relative;

  min-height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;

  line-height: 1;
}

.brand-main {
  color: var(--green);

  font-size: 1.3rem;
  font-weight: 700;

  letter-spacing: 0.22em;
}

.brand-sub {
  margin-top: 8px;

  color: var(--tan);

  font-size: 0.46rem;
  font-weight: 700;

  letter-spacing: 0.18em;

  white-space: nowrap;
}


/* =========================================================
   NAV
   ========================================================= */

.main-nav {
  display: flex;
  align-items: center;

  gap: 31px;

  font-size: 0.84rem;
  font-weight: 600;
}

.main-nav a:not(.nav-cta) {
  position: relative;

  padding: 10px 0;

  color: var(--ink-soft);
}

.main-nav a:not(.nav-cta)::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 2px;

  width: 0;
  height: 2px;

  border-radius: 999px;

  background: var(--tan);

  transform: translateX(-50%);

  transition: width 250ms var(--ease);
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-cta {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 21px;

  border-radius: 999px;

  color: #fff;

  background: var(--green);

  box-shadow:
    0 10px 25px rgba(32, 55, 44, 0.18);

  transition:
    transform 250ms var(--ease),
    background 250ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);

  background: var(--green-mid);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
  display: none;

  width: 45px;
  height: 45px;

  padding: 10px;

  border: 1px solid var(--line);

  border-radius: 50%;

  background: #fff;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 21px;
  height: 2px;

  margin: 5px auto;

  border-radius: 999px;

  background: var(--green);

  transition:
    transform 250ms var(--ease),
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"]
span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.menu-toggle[aria-expanded="true"]
span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]
span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(170, 112, 72, 0.16),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      var(--cream) 0%,
      #f7f1e8 52%,
      var(--paper) 100%
    );

  border-bottom:
    1px solid var(--line);
}

.hero::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  top: -280px;
  left: -210px;

  border-radius: 50%;

  border:
    1px solid
    rgba(170, 112, 72, 0.13);
}

.hero-grid {
  position: relative;

  z-index: 2;

  min-height: 650px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(330px, 0.88fr);

  align-items: center;

  gap: 70px;

  padding-block: 88px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  display: inline-block;

  margin: 0 0 21px;

  color: var(--tan-dark);

  font-size: 0.66rem;
  font-weight: 700;

  letter-spacing: 0.19em;

  line-height: 1.6;
}

h1,
h2 {
  margin-top: 0;

  font-family:
    "Playfair Display",
    serif;

  letter-spacing: -0.045em;
}

h1 {
  max-width: 700px;

  margin-bottom: 0;

  color: var(--green);

  font-size:
    clamp(
      3.7rem,
      5.4vw,
      5.8rem
    );

  font-weight: 600;

  line-height: 0.98;
}

h1 em {
  display: block;

  margin-top: 8px;

  color: var(--tan);

  font-weight: 600;
}

.hero-text {
  max-width: 580px;

  margin: 30px 0 0;

  color: var(--ink-soft);

  font-size: 1.04rem;

  line-height: 1.78;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 36px;
}

.btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 25px;

  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 700;

  transition:
    transform 250ms var(--ease),
    box-shadow 250ms var(--ease),
    background 250ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;

  background: var(--green);

  box-shadow:
    0 14px 30px rgba(32, 55, 44, 0.2);
}

.btn-primary:hover {
  background: var(--green-mid);
}

.btn-secondary {
  color: var(--green);

  border:
    1px solid rgba(32, 55, 44, 0.2);

  background:
    rgba(255, 255, 255, 0.48);
}

.btn-secondary:hover {
  background: #fff;
}


/* =========================================================
   HERO ART
   ========================================================= */

.hero-art {
  position: relative;

  min-height: 450px;

  display: grid;
  place-items: center;

  isolation: isolate;
}

.hero-art::before {
  content: "";

  position: absolute;

  width: 355px;
  height: 355px;

  border-radius:
    46% 54% 55% 45% /
    45% 40% 60% 55%;

  border:
    1px solid
    rgba(170, 112, 72, 0.18);

  transform: rotate(-8deg);

  animation:
    artOrbit
    14s ease-in-out
    infinite;
}

.hero-art::after {
  content: "";

  position: absolute;

  width: 250px;
  height: 60px;

  bottom: 52px;

  border-radius: 50%;

  background:
    rgba(27, 33, 29, 0.07);

  filter: blur(16px);

  z-index: -1;
}

.sun-shape {
  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(170, 112, 72, 0.18),
      rgba(170, 112, 72, 0.04)
    );

  animation:
    sunFloat
    8s ease-in-out
    infinite;
}


/* =========================================================
   VASE
   ========================================================= */

.vase {
  position: relative;

  width: 112px;
  height: 176px;

  margin-top: 135px;

  border-radius:
    52% 52% 42% 42% /
    35% 35% 65% 65%;

  background:
    linear-gradient(
      135deg,
      #dfcdb9,
      #c5ad91
    );

  box-shadow:
    0 30px 60px
    rgba(27, 33, 29, 0.16);

  animation:
    vaseFloat
    6s ease-in-out
    infinite;
}

.vase::before {
  content: "";

  position: absolute;

  width: 42px;
  height: 39px;

  left: 35px;
  top: -22px;

  border-radius:
    12px 12px 2px 2px;

  background:
    linear-gradient(
      90deg,
      #d5c2ab,
      #bea588
    );
}

.vase::after {
  content: "";

  position: absolute;

  width: 34px;
  height: 110px;

  top: 28px;
  left: 17px;

  border-radius: 50%;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.28),
      transparent
    );

  transform: rotate(6deg);
}

.stem {
  position: absolute;

  bottom: 160px;

  width: 3px;

  border-radius: 999px;

  background: var(--green-light);

  transform-origin: bottom;
}

.stem-1 {
  height: 178px;

  left: 55px;

  transform: rotate(-6deg);
}

.stem-2 {
  height: 144px;

  left: 56px;

  transform: rotate(14deg);
}

.leaf {
  position: absolute;

  bottom: 250px;

  width: 66px;
  height: 30px;

  border-radius:
    100% 0 100% 0;

  background:
    linear-gradient(
      135deg,
      #446052,
      #294237
    );

  transform-origin: 20% 70%;

  animation:
    leafSway
    6s ease-in-out
    infinite;
}

.leaf-1 {
  left: 16px;

  transform: rotate(28deg);
}

.leaf-2 {
  left: 54px;
  bottom: 293px;

  transform: rotate(-18deg);
}

.leaf-3 {
  left: 11px;
  bottom: 320px;

  transform:
    rotate(12deg)
    scale(0.85);
}

.leaf-4 {
  left: 60px;
  bottom: 229px;

  transform:
    rotate(-32deg)
    scale(0.8);
}


/* =========================================================
   HERO ANIMATION
   ========================================================= */

@keyframes vaseFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes sunFloat {

  0%,
  100% {
    transform:
      translateY(0)
      scale(1);
  }

  50% {
    transform:
      translateY(-10px)
      scale(1.025);
  }
}

@keyframes artOrbit {

  0%,
  100% {
    transform:
      rotate(-8deg)
      scale(1);
  }

  50% {
    transform:
      rotate(5deg)
      scale(1.035);
  }
}

@keyframes leafSway {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 2px -3px;
  }
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  position: relative;

  padding-block: 108px;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin-inline: auto;

  text-align: center;
}

.section-heading h2,
.marketing-intro h2,
.web-intro h2,
.approach-copy h2,
.about h2 {
  margin-bottom: 20px;

  color: var(--green);

  font-size:
    clamp(
      2.5rem,
      4vw,
      3.85rem
    );

  line-height: 1.04;
}

.section-heading > p:last-child,
.approach-copy > p:last-child,
.about-copy p {
  color: var(--muted);

  font-size: 1rem;

  line-height: 1.8;
}


/* =========================================================
   SERVICES OVERVIEW
   ========================================================= */

.services {
  background: var(--paper);
}

.service-grid {
  margin-top: 56px;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 15px;
}

.service-card {
  position: relative;

  min-height: 310px;

  display: flex;
  flex-direction: column;

  padding: 29px 26px;

  overflow: hidden;

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  background: var(--cream-soft);

  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease);
}

.service-card:nth-child(even) {
  background: #eee4d7;
}

.service-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow);
}

.service-number {
  margin-bottom: 44px;

  color: var(--tan-dark);

  font-size: 0.66rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 12px;

  color: var(--green);

  font-size: 1.15rem;

  line-height: 1.35;
}

.service-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.7;
}

.service-link {
  margin-top: auto;

  padding-top: 23px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--green);

  font-size: 0.79rem;
  font-weight: 700;
}

.service-link span {
  transition:
    transform 250ms var(--ease);
}

.service-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   MARKETING
   ========================================================= */

.marketing-services {
  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #1d3128,
      #284236
    );
}

.marketing-services::before {
  content: "";

  position: absolute;

  width: 550px;
  height: 550px;

  top: -360px;
  right: -220px;

  border-radius: 50%;

  border:
    1px solid
    rgba(255,255,255,0.07);
}

.marketing-services .container {
  position: relative;

  z-index: 2;
}

.marketing-services .eyebrow {
  color: var(--tan-soft);
}

.marketing-intro {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.65fr);

  gap: 80px;

  align-items: end;

  margin-bottom: 52px;
}

.marketing-intro h2 {
  max-width: 650px;

  margin-bottom: 0;

  color: #fff;
}

.marketing-intro > p {
  max-width: 450px;

  margin: 0;

  color:
    rgba(255,255,255,0.7);

  font-size: 0.95rem;

  line-height: 1.75;
}


/* =========================================================
   COMPACT MARKETING CARDS
   ========================================================= */

.marketing-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.marketing-card {
  min-width: 0;

  border:
    1px solid
    rgba(255,255,255,0.11);

  border-radius: 20px;

  background:
    rgba(255,255,255,0.06);

  overflow: hidden;

  transition:
    transform 300ms var(--ease),
    background 300ms ease,
    border-color 300ms ease;
}

.marketing-card:hover {
  transform: translateY(-4px);

  background:
    rgba(255,255,255,0.085);

  border-color:
    rgba(255,255,255,0.17);
}

.marketing-card[open] {
  background:
    rgba(255,255,255,0.1);

  border-color:
    rgba(223,191,165,0.28);
}

.marketing-card summary {
  position: relative;

  min-height: 230px;

  display: flex;
  flex-direction: column;

  padding: 25px;

  cursor: pointer;
}

.marketing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 35px;
}

.marketing-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border:
    1px solid
    rgba(223,191,165,0.25);

  border-radius: 50%;

  color: var(--tan-soft);

  background:
    rgba(223,191,165,0.06);

  font-size: 0.62rem;
  font-weight: 700;
}

.expand-icon {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color:
    rgba(255,255,255,0.75);

  background:
    rgba(255,255,255,0.07);

  font-size: 1.15rem;
  font-weight: 400;

  transition:
    transform 300ms var(--ease),
    background 300ms ease;
}

.marketing-card[open]
.expand-icon {
  transform: rotate(45deg);

  background:
    rgba(223,191,165,0.14);
}

.marketing-card h3 {
  margin: 0 0 9px;

  color: #fff;

  font-size: 1.1rem;

  line-height: 1.35;
}

.marketing-card summary > p {
  max-width: 260px;

  margin: 0;

  color:
    rgba(255,255,255,0.6);

  font-size: 0.83rem;

  line-height: 1.6;
}

.view-services {
  margin-top: auto;

  padding-top: 23px;

  color: var(--tan-soft);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.03em;
}


/* =========================================================
   EXPANDED MARKETING DETAILS
   ========================================================= */

.marketing-details {
  padding:
    0 25px 27px;

  animation:
    detailsOpen
    300ms var(--ease);
}

.marketing-details::before {
  content: "";

  display: block;

  height: 1px;

  margin-bottom: 22px;

  background:
    rgba(255,255,255,0.1);
}

.marketing-details ul {
  display: grid;

  gap: 10px;
}

.marketing-details li {
  position: relative;

  padding-left: 18px;

  color:
    rgba(255,255,255,0.78);

  font-size: 0.8rem;

  line-height: 1.5;
}

.marketing-details li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0.57em;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--tan-soft);
}

@keyframes detailsOpen {

  from {
    opacity: 0;

    transform: translateY(-5px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}


/* =========================================================
   CUSTOM MARKETING
   ========================================================= */

.custom-marketing {
  margin-top: 18px;

  display: grid;

  grid-template-columns:
    minmax(190px, 0.4fr)
    minmax(0, 1fr);

  gap: 60px;

  padding: 42px 45px;

  border-radius: 24px;

  color: var(--ink);

  background:
    linear-gradient(
      135deg,
      #e5cdb9,
      #f1e2d4
    );
}

.custom-marketing .eyebrow {
  color: var(--tan-dark);
}

.custom-marketing-copy {
  max-width: 680px;
}

.custom-marketing-copy h3 {
  margin: 0 0 13px;

  color: var(--green);

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      1.9rem,
      3vw,
      2.6rem
    );

  letter-spacing: -0.035em;

  line-height: 1.05;
}

.custom-marketing-copy p {
  margin: 0;

  color: var(--ink-soft);

  font-size: 0.92rem;

  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-top: 18px;

  color: var(--green);

  font-size: 0.8rem;
  font-weight: 700;
}

.text-link span {
  transition:
    transform 250ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   WEB
   ========================================================= */

.web-services {
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #e9ded0,
      #f4eee6
    );
}

.web-services-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);

  gap: 80px;

  align-items: start;
}

.web-intro {
  max-width: 510px;
}

.web-intro > p:last-child {
  color: var(--muted);

  font-size: 0.95rem;

  line-height: 1.8;
}

.web-options {
  display: grid;

  gap: 14px;
}

.web-option {
  padding: 33px 34px;

  border:
    1px solid
    rgba(32,55,44,0.1);

  border-radius: 20px;

  background:
    rgba(255,255,255,0.7);

  box-shadow: var(--shadow-small);

  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease);
}

.web-option:nth-child(2) {
  color: #fff;

  background: var(--green);
}

.web-option:hover {
  transform: translateX(6px);

  box-shadow: var(--shadow);
}

.web-option > span {
  display: block;

  margin-bottom: 28px;

  color: var(--tan-dark);

  font-size: 0.64rem;
  font-weight: 700;
}

.web-option:nth-child(2) > span {
  color: var(--tan-soft);
}

.web-option h3 {
  margin: 0 0 10px;

  color: var(--green);

  font-size: 1.17rem;
}

.web-option:nth-child(2) h3 {
  color: #fff;
}

.web-option p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.72;
}

.web-option:nth-child(2) p {
  color:
    rgba(255,255,255,0.72);
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach {
  background: var(--paper);
}

.approach-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 90px;

  align-items: start;
}

.approach-copy {
  max-width: 520px;

  position: sticky;

  top: 125px;
}

.values-grid {
  display: grid;
}

.value {
  position: relative;

  padding:
    30px 0 30px 58px;

  border-top:
    1px solid var(--line);
}

.value:last-child {
  border-bottom:
    1px solid var(--line);
}

.value span {
  position: absolute;

  left: 0;
  top: 33px;

  color: var(--tan-dark);

  font-size: 0.64rem;
  font-weight: 700;
}

.value h3 {
  margin: 0 0 8px;

  color: var(--green);

  font-size: 1.12rem;
}

.value p {
  max-width: 510px;

  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.7;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
  background:
    linear-gradient(
      135deg,
      var(--cream),
      #eae0d3
    );
}

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 90px;

  align-items: center;
}

.about-grid > div:first-child::after {
  content: "";

  display: block;

  width: 58px;
  height: 3px;

  margin-top: 29px;

  border-radius: 999px;

  background: var(--tan);
}

.about-copy {
  padding-left: 35px;

  border-left:
    1px solid
    rgba(32,55,44,0.15);
}

.about-copy p {
  margin: 0;

  color: var(--ink-soft);

  font-size: 1.04rem;

  line-height: 1.88;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  position: relative;

  overflow: hidden;

  padding-block: 92px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #192c23,
      #294337
    );
}

.contact-section::before {
  content: "";

  position: absolute;

  width: 390px;
  height: 390px;

  right: -140px;
  top: -200px;

  border-radius: 50%;

  border:
    1px solid
    rgba(255,255,255,0.07);
}

.contact-inner {
  position: relative;

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 70px;
}

.contact-inner > div {
  max-width: 680px;
}

.contact-inner h2 {
  margin: 0 0 16px;

  color: #fff;

  font-size:
    clamp(
      2.7rem,
      4.3vw,
      4.1rem
    );

  line-height: 1.02;
}

.contact-inner p {
  margin: 0;

  color:
    rgba(255,255,255,0.72);

  font-size: 0.98rem;
}

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

.btn-light {
  flex: 0 0 auto;

  min-width: 172px;

  color: var(--green);

  background: var(--cream);
}

.btn-light:hover {
  background: #fff;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding:
    62px 0 26px;

  background: var(--cream-soft);

  border-top:
    1px solid var(--line);
}

.footer-simple {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(0, 0.6fr);

  gap: 60px;
}

.footer-main {
  max-width: 440px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-description {
  max-width: 350px;

  margin: 0;

  color: var(--muted);

  font-size: 0.84rem;

  line-height: 1.7;
}

.footer-nav {
  display: flex;

  justify-content: flex-end;

  gap: 28px;
}

.footer-nav a {
  color: var(--muted);

  font-size: 0.8rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--green);
}

.footer-bottom {
  grid-column: 1 / -1;

  margin-top: 27px;

  padding-top: 22px;

  border-top:
    1px solid var(--line);

  color: #858983;

  font-size: 0.7rem;
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline:
    2px solid var(--tan);

  outline-offset: 5px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .container {
    width:
      min(
        calc(100% - 40px),
        var(--container)
      );
  }


  /* NAV */

  .main-nav {
    display: none;

    position: absolute;

    top: 72px;
    left: 20px;
    right: 20px;

    padding: 14px;

    flex-direction: column;
    align-items: stretch;

    gap: 3px;

    border:
      1px solid var(--line);

    border-radius: 18px;

    background:
      rgba(252,250,246,0.98);

    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    min-height: 46px;

    display: flex;
    align-items: center;

    padding: 0 12px;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;

    border-radius: 12px;
  }

  .menu-toggle {
    display: block;
  }


  /* HERO */

  .hero-grid {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 28px;

    padding-block:
      72px 50px;
  }

  .hero-art {
    min-height: 310px;
  }


  /* SERVICES */

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


  /* MARKETING */

  .marketing-intro {
    grid-template-columns: 1fr;

    gap: 20px;
  }

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

  .custom-marketing {
    grid-template-columns:
      0.4fr 1fr;
  }


  /* WEB */

  .web-services-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }


  /* APPROACH */

  .approach-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .approach-copy {
    position: static;
  }


  /* ABOUT */

  .about-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .container {
    width:
      min(
        calc(100% - 30px),
        var(--container)
      );
  }


  /* HEADER */

  .nav-wrap {
    min-height: 69px;
  }

  .brand-main {
    font-size: 1rem;
  }

  .brand-sub {
    margin-top: 6px;

    font-size: 0.37rem;

    letter-spacing: 0.14em;
  }

  .menu-toggle {
    display: block;

    width: 43px;
    height: 43px;
  }

  .main-nav {
    top: 61px;

    left: 0;
    right: 0;

    border-radius:
      0 0 18px 18px;

    border-left: 0;
    border-right: 0;
  }


  /* HERO */

  .hero-grid {
    padding-block:
      52px 28px;

    gap: 0;
  }

  .eyebrow {
    margin-bottom: 16px;

    font-size: 0.57rem;

    letter-spacing: 0.14em;
  }

  h1 {
    font-size:
      clamp(
        2.75rem,
        13vw,
        3.75rem
      );
  }

  .hero-text {
    margin-top: 22px;

    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 27px;

    flex-direction: column;

    gap: 9px;
  }

  .btn {
    width: 100%;

    border-radius: 12px;
  }


  /* HERO ART */

  .hero-art {
    min-height: 250px;

    margin-top: 20px;
  }

  .hero-art::before {
    width: 210px;
    height: 210px;
  }

  .hero-art::after {
    width: 170px;
    height: 42px;

    bottom: 30px;
  }

  .sun-shape {
    width: 186px;
    height: 186px;
  }

  .vase {
    width: 96px;
    height: 150px;

    margin-top: 104px;
  }

  .vase::before {
    width: 36px;
    height: 34px;

    left: 30px;
    top: -19px;
  }

  .vase::after {
    width: 28px;
    height: 90px;

    top: 28px;
    left: 15px;
  }

  .stem {
    bottom: 137px;
  }

  .stem-1 {
    height: 150px;
    left: 47px;
  }

  .stem-2 {
    height: 122px;
    left: 49px;
  }

  .leaf {
    width: 56px;
    height: 25px;

    bottom: 218px;
  }

  .leaf-1 {
    left: 13px;
  }

  .leaf-2 {
    left: 45px;
    bottom: 252px;
  }

  .leaf-3 {
    left: 10px;
    bottom: 274px;
  }

  .leaf-4 {
    left: 50px;
    bottom: 198px;
  }


  /* GENERAL */

  .section {
    padding-block: 74px;
  }

  .section-heading,
  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2,
  .marketing-intro h2,
  .web-intro h2,
  .approach-copy h2,
  .about h2 {
    font-size:
      clamp(
        2.05rem,
        9.8vw,
        2.85rem
      );

    line-height: 1.04;
  }


  /* SERVICES */

  .service-grid {
    margin-top: 38px;

    grid-template-columns: 1fr;

    gap: 11px;
  }

  .service-card {
    min-height: auto;

    padding: 24px 22px;
  }

  .service-number {
    margin-bottom: 27px;
  }

  .service-card:hover {
    transform: none;
  }


  /* MARKETING */

  .marketing-intro {
    margin-bottom: 35px;
  }

  .marketing-grid {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .marketing-card:hover {
    transform: none;
  }

  .marketing-card summary {
    min-height: 205px;

    padding: 22px;
  }

  .marketing-card-top {
    margin-bottom: 28px;
  }

  .marketing-details {
    padding:
      0 22px 24px;
  }


  /* CUSTOM MARKETING */

  .custom-marketing {
    margin-top: 12px;

    grid-template-columns: 1fr;

    gap: 6px;

    padding: 29px 22px;

    border-radius: 19px;
  }

  .custom-marketing-copy h3 {
    font-size: 1.9rem;
  }


  /* WEB */

  .web-services-grid {
    gap: 32px;
  }

  .web-options {
    gap: 10px;
  }

  .web-option {
    padding: 26px 22px;

    border-radius: 18px;
  }

  .web-option:hover {
    transform: none;
  }


  /* APPROACH */

  .approach-grid {
    gap: 32px;
  }

  .value {
    padding:
      23px 0 23px 46px;
  }

  .value span {
    top: 25px;
  }


  /* ABOUT */

  .about-grid {
    gap: 24px;
  }

  .about-copy {
    padding-left: 19px;

    border-left:
      2px solid
      rgba(170,112,72,0.4);
  }

  .about-copy p {
    font-size: 0.95rem;
  }


  /* CONTACT */

  .contact-section {
    padding-block: 66px;
  }

  .contact-inner {
    flex-direction: column;

    align-items: stretch;

    gap: 29px;
  }

  .contact-inner h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3rem
      );
  }


  /* FOOTER */

  .site-footer {
    padding:
      46px 0 23px;
  }

  .footer-simple {
    grid-template-columns: 1fr;

    gap: 26px;
  }

  .footer-nav {
    justify-content: flex-start;

    flex-wrap: wrap;

    gap:
      12px 23px;
  }

  .footer-bottom {
    grid-column: auto;

    margin-top: 4px;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

  .container {
    width:
      calc(100% - 26px);
  }

  .brand-main {
    font-size: 0.93rem;
  }

  .brand-sub {
    font-size: 0.33rem;
  }

  h1 {
    font-size:
      clamp(
        2.5rem,
        12.5vw,
        3.1rem
      );
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .vase,
  .sun-shape,
  .leaf,
  .hero-art::before {
    animation: none;
  }

  .marketing-details {
    animation: none;
  }
}
/* =========================================================
   PROJECT INQUIRY
   ========================================================= */

.project-section {
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #eee4d7 0%,
      #f7f2ea 55%,
      #f1e8dd 100%
    );
}

.project-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 90px;

  align-items: start;
}


/* =========================================================
   PROJECT INTRO
   ========================================================= */

.project-intro {
  max-width: 490px;

  position: sticky;

  top: 130px;
}

.project-intro h2 {
  margin:
    0 0 22px;

  color: var(--green);

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      2.6rem,
      4vw,
      4rem
    );

  font-weight: 600;

  letter-spacing: -0.045em;

  line-height: 1.03;
}

.project-intro > p {
  max-width: 440px;

  margin: 0;

  color: var(--muted);

  font-size: 0.98rem;

  line-height: 1.8;
}


/* SMALL NOTE */

.project-note {
  margin-top: 42px;

  padding-top: 25px;

  display: flex;

  gap: 15px;

  border-top:
    1px solid
    rgba(32, 55, 44, 0.13);
}

.project-note > span {
  flex: 0 0 auto;

  width: 8px;
  height: 8px;

  margin-top: 8px;

  border-radius: 50%;

  background: var(--tan);
}

.project-note p {
  max-width: 370px;

  margin: 0;

  color: var(--ink-soft);

  font-size: 0.84rem;

  line-height: 1.7;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.project-form-wrap {
  padding:
    42px;

  border:
    1px solid
    rgba(32, 55, 44, 0.09);

  border-radius: 26px;

  background:
    rgba(255, 255, 255, 0.78);

  box-shadow:
    0 24px 65px
    rgba(32, 55, 44, 0.09);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);
}

.project-form {
  display: grid;

  gap: 23px;
}


/* =========================================================
   FORM ROWS
   ========================================================= */

.form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 15px;
}

.form-group {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 9px;
}


/* =========================================================
   LABELS
   ========================================================= */

.form-group label {
  color: var(--green);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.015em;
}

.form-group label span {
  margin-left: 2px;

  color: var(--tan);
}


/* =========================================================
   INPUTS
   ========================================================= */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border:
    1px solid
    rgba(32, 55, 44, 0.14);

  border-radius: 12px;

  outline: none;

  color: var(--ink);

  background:
    rgba(252, 250, 246, 0.85);

  font-family:
    "DM Sans",
    sans-serif;

  font-size: 0.9rem;

  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.form-group input,
.form-group select {
  height: 52px;

  padding:
    0 15px;
}

.form-group textarea {
  min-height: 145px;

  padding:
    15px;

  line-height: 1.65;

  resize: vertical;
}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
  color:
    rgba(65, 73, 66, 0.52);
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:
    rgba(170, 112, 72, 0.7);

  background: #fff;

  box-shadow:
    0 0 0 4px
    rgba(170, 112, 72, 0.09);
}


/* =========================================================
   SELECT
   ========================================================= */

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "⌄";

  position: absolute;

  right: 16px;
  top: 50%;

  color: var(--tan-dark);

  font-size: 1rem;

  pointer-events: none;

  transform:
    translateY(-58%);
}

.form-group select {
  appearance: none;

  -webkit-appearance: none;

  padding-right: 44px;

  cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.form-submit {
  width: 100%;

  min-height: 56px;

  margin-top: 5px;

  padding:
    0 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  border: 0;

  border-radius: 12px;

  color: #fff;

  background: var(--green);

  box-shadow:
    0 14px 30px
    rgba(32, 55, 44, 0.18);

  font-size: 0.84rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 250ms var(--ease),
    background 250ms ease,
    box-shadow 250ms ease;
}

.form-submit:hover {
  transform:
    translateY(-2px);

  background: var(--green-mid);

  box-shadow:
    0 19px 38px
    rgba(32, 55, 44, 0.24);
}

.form-submit-arrow {
  font-size: 1rem;

  transition:
    transform 250ms var(--ease);
}

.form-submit:hover
.form-submit-arrow {
  transform:
    translateX(4px);
}


/* =========================================================
   PROJECT FORM TABLET
   ========================================================= */

@media (max-width: 980px) {

  .project-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .project-intro {
    position: static;

    max-width: 650px;
  }

  .project-intro > p {
    max-width: 570px;
  }

  .project-note {
    max-width: 500px;
  }

}


/* =========================================================
   PROJECT FORM MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .project-grid {
    gap: 32px;
  }

  .project-intro h2 {
    font-size:
      clamp(
        2.2rem,
        10vw,
        3rem
      );
  }

  .project-note {
    margin-top: 30px;

    padding-top: 20px;
  }

  .project-form-wrap {
    padding:
      25px 20px;

    border-radius: 19px;
  }

  .project-form {
    gap: 19px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 19px;
  }

  .form-group input,
  .form-group select {
    height: 52px;

    font-size: 16px;
  }

  .form-group textarea {
    font-size: 16px;
  }

  .form-submit {
    min-height: 54px;
  }

}
/* =========================================================
   PROJECT FORM SCROLL POSITION
   ========================================================= */

#project-form-section {
  scroll-margin-top: 110px;
}
/* =========================================================
   PROJECT FORM MESSAGES
   ========================================================= */

.form-message {
  padding: 18px 20px;

  display: flex;
  flex-direction: column;

  gap: 4px;

  border-radius: 12px;

  font-size: 0.84rem;

  line-height: 1.6;
}

.form-message strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.form-message span {
  opacity: 0.82;
}


/* SUCCESS */

.form-success {
  color: var(--green);

  border:
    1px solid rgba(32, 55, 44, 0.14);

  background:
    rgba(32, 55, 44, 0.07);
}


/* ERROR */

.form-error {
  color: #713b32;

  border:
    1px solid rgba(113, 59, 50, 0.16);

  background:
    rgba(113, 59, 50, 0.07);
}


/* DISABLED SUBMIT BUTTON */

.form-submit:disabled {
  opacity: 0.72;

  cursor: not-allowed;

  transform: none;

  box-shadow:
    0 10px 22px
    rgba(32, 55, 44, 0.12);
}
