:root {
  --leaf: #4f9f2d;
  --leaf-dark: #46643c;
  --forest: #365633;
  --moss: #6a8c63;
  --ink: #273326;
  --muted: #6c7568;
  --paper: #fbfbf7;
  --cream: #f1f0e8;
  --line: #dfe5d7;
  --shadow: 0 24px 70px rgba(50, 74, 42, 0.14);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 92%, rgba(79, 159, 45, 0.18), transparent 16rem),
    radial-gradient(circle at 91% 35%, rgba(79, 159, 45, 0.13), transparent 18rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
}

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

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

.page-shell {
  width: 100%;
  margin: 0 auto;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 30px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 156px;
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  color: var(--leaf-dark);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 400;
}

nav a,
.shop-button {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

nav a:hover {
  color: var(--leaf);
  transform: translateY(-1px);
}

.shop-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 150px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 400;
  box-shadow: 0 12px 28px rgba(79, 159, 45, 0.2);
}

.shop-button:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.top-banner {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: clamp(210px, 28vw, 360px);
  margin: 8px calc(50% - 50vw) 72px;
  border-radius: 0;
  background: linear-gradient(90deg, #f7ead8 0%, #eff5ea 46%, #dfeede 100%);
  box-shadow: 0 18px 54px rgba(50, 74, 42, 0.1);
}

.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  mix-blend-mode: multiply;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(210px, 0.78fr) minmax(320px, 1.45fr);
  gap: clamp(24px, 4vw, 54px);
  min-height: 600px;
  padding: 42px 0 58px;
}

.hero h1,
.hero h2,
.services-section h2 {
  margin: 0;
  color: var(--leaf-dark);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 410px;
  font-size: 3.75rem;
}

.hero h2 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  font-size: 5.05rem;
}

.hero-left,
.hero-center,
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-left {
  display: grid;
  align-content: start;
  gap: 34px;
}

.benefits {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #566055;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.benefits li {
  position: relative;
  min-height: 26px;
  padding-left: 40px;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 25px;
  height: 25px;
  border: 3px solid var(--moss);
  border-radius: 50%;
}

.benefits li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 9px;
  height: 16px;
  border: solid var(--forest);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.contact-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  width: min(100%, 330px);
  margin-top: 8px;
}

.contact-card p {
  display: grid;
  place-items: center;
  height: 160px;
  margin: 0;
  border-radius: 999px;
  background: var(--leaf-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.contact-card div {
  display: grid;
  gap: 15px;
  padding-left: 22px;
  color: #5b6659;
  font-size: 0.86rem;
  font-weight: 400;
}

.contact-card span {
  position: relative;
  padding-left: 30px;
}

.contact-card span::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid var(--moss);
  border-radius: 50%;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 400;
}

.contact-card span:nth-child(1)::before {
  content: "•";
}

.contact-card span:nth-child(2)::before {
  content: "◎";
}

.contact-card span:nth-child(3)::before {
  content: "☎";
}

.hero-center {
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: 6px;
}

.routine-card {
  width: min(100%, 340px);
  margin-inline: auto;
  padding: 28px 32px;
  border-radius: 36px;
  background: var(--leaf);
  color: #fff;
  box-shadow: var(--shadow);
}

.routine-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.6;
}

.quote-mark {
  height: 92px;
  margin-top: 12px;
  color: rgba(70, 100, 60, 0.78);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 11rem;
  line-height: 0.8;
}

.hero-copy {
  width: min(100%, 270px);
  margin: -6px 0 0;
  color: #596257;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.62;
}

.hero-right {
  display: grid;
  align-content: start;
  gap: 22px;
}

.product-stage {
  position: relative;
  min-height: 350px;
  isolation: isolate;
}

.product-stage img {
  width: min(620px, 100%);
  height: 390px;
  border-radius: 0 0 42px 42px;
  object-fit: cover;
  object-position: 48% 44%;
  filter: none;
  clip-path: inset(0 0 0 0 round 0 0 38px 38px);
}

.products-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.slider-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.slider-topline h2,
.services-section h2 {
  margin: 0;
  color: var(--leaf-dark);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.slider-topline h2 {
  font-size: 2.7rem;
}

.services-section p {
  margin: 0;
  color: var(--leaf);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-section h2 {
  max-width: 780px;
  font-size: 2.7rem;
  line-height: 1.08;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  cursor: pointer;
  font: 400 1.7rem/1 var(--font-sans);
  box-shadow: 0 10px 28px rgba(50, 74, 42, 0.08);
}

.slider-button:hover {
  background: var(--leaf);
  color: #fff;
}

.product-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 2px 2px 18px;
  scrollbar-width: thin;
}

.product-card {
  flex: 0 0 min(292px, 82vw);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(50, 74, 42, 0.1);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.product-card:nth-child(1) img {
  object-position: 50% 52%;
}

.product-card:nth-child(2) img {
  object-position: 48% 45%;
}

.product-card:nth-child(3) img {
  object-position: 50% 54%;
}

.product-card:nth-child(4) img {
  object-position: 50% 48%;
}

.product-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.product-card span {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.55;
}

.services-section {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 42px;
  padding: 34px;
  border-radius: 8px;
  background: var(--cream);
}

.contact-page {
  background: var(--paper);
}

.contact-lookbook {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 72px minmax(220px, 25vw) minmax(300px, 34vw) minmax(260px, 1fr);
  overflow-x: hidden;
  background: #fff;
}

.contact-rail {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  background: #dfeede;
}

.contact-rail span {
  position: absolute;
  rotate: -90deg;
  color: var(--forest);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0;
}

.contact-image-panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #f6f1e9;
}

.contact-image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact-image-panel.right {
  background: #ecf3e8;
}

.contact-copy-panel {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: clamp(26px, 5vh, 48px);
  padding: clamp(28px, 5vw, 64px);
  background: #fff;
}

.contact-logo {
  justify-self: center;
  display: block;
  width: clamp(150px, 15vw, 210px);
}

.contact-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-copy-stack {
  display: grid;
  gap: clamp(28px, 4vh, 44px);
}

.contact-copy-block {
  max-width: 340px;
}

.contact-copy-block h1,
.stylesta-contact h2 {
  margin: 0 0 14px;
  color: var(--leaf-dark);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: min(100%, 360px);
}

.contact-form h2 {
  margin: 0 0 2px;
  color: var(--leaf-dark);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--forest);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  cursor: pointer;
  font: inherit;
  padding: 12px 22px;
  text-transform: lowercase;
}

.contact-form button:hover {
  background: var(--forest);
}

.stylesta-contact {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.stylesta-contact h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.contact-rule {
  width: min(210px, 75%);
  border-top: 2px solid var(--leaf-dark);
}

.contact-grid {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.35;
}

.contact-grid b {
  display: block;
  margin-bottom: 3px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 400;
  text-transform: uppercase;
}

.copyright {
  margin: 4px 0 0;
  color: rgba(39, 51, 38, 0.65);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-nav {
  position: absolute;
  top: 26px;
  right: 32px;
  z-index: 2;
  display: flex;
  gap: 24px;
  color: #fff;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    order: 3;
  }

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

  .hero-right {
    grid-column: 1 / -1;
  }

  .hero h2 {
    max-width: none;
    font-size: 4.2rem;
  }

  .slider-topline h2,
  .services-section h2 {
    font-size: 2.45rem;
  }

  .product-stage img {
    width: 100%;
    height: 430px;
  }

}

@media (max-width: 900px) {
  .contact-lookbook {
    grid-template-columns: 1fr;
  }

  .contact-rail {
    min-height: 82px;
  }

  .contact-rail span {
    position: static;
    rotate: 0deg;
    font-size: 2rem;
  }

  .contact-image-panel,
  .contact-copy-panel {
    min-height: auto;
  }

  .contact-image-panel {
    height: 320px;
  }

  .contact-copy-panel {
    padding: 34px 24px 46px;
  }

  .contact-nav {
    top: 18px;
    right: 20px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: 100%;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 20px;
  }

  .brand img {
    width: 138px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.96rem;
  }

  .shop-button {
    min-width: 132px;
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .top-banner {
    height: 190px;
    margin: 4px calc(50% - 50vw) 46px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 26px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero h2 {
    font-size: 2.85rem;
  }

  .routine-card {
    width: 100%;
    margin: 0;
    border-radius: 26px;
  }

  .quote-mark {
    height: 62px;
    font-size: 8rem;
  }

  .hero-copy {
    width: 100%;
  }

  .product-stage {
    min-height: 280px;
  }

  .product-stage img {
    height: 320px;
  }

  .slider-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .slider-topline h2,
  .services-section h2 {
    font-size: 2rem;
  }

  .services-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }
}
