

/* =========================================================
   ROOT / VARIABLES
========================================================= */

:root {
  --ink: #141414;
  --green: #8b7355;
  --sage: #a1887f;
  --cream: #faf9f8;
  --paper: #ffffff;
  --clay: #b38b6d;
  --line: #e6e0d8;

  /* Premium additions */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);

  --serif: "Bodoni Moda", "Playfair Display", serif;
  --sans: "Outfit", "Inter", sans-serif;
  --mono: "Outfit", "Inter", monospace;
}


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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}


/* =========================================================
   GRAIN EFFECT
========================================================= */

.grain {
  position: fixed;
  z-index: 30;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
  position: fixed;
  z-index: 100;
  inset: 0;

  background: var(--green);
  color: #f7f0e6;

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

  gap: 18px;

  animation: preload 1.2s ease 1.8s forwards;
}

.prelogo {
  font-size: 42px;
  letter-spacing: 5px;

  display: flex;
  gap: 14px;
  align-items: center;
}

.logo-mark {
  font-family: var(--serif);

  border: 1px solid #c6b499;
  border-radius: 50%;

  width: 35px;
  height: 35px;

  font-size: 24px;

  display: grid;
  place-items: center;
}

.preloader p {
  font: 10px var(--mono);
  letter-spacing: 2px;
}

.load-line {
  width: 110px;
  height: 1px;

  background: #ffffff40;

  position: relative;
  overflow: hidden;
}

.load-line::after {
  content: "";

  position: absolute;
  inset: 0;

  background: #fff;

  transform: translateX(-100%);

  animation: load 1.3s ease forwards;
}


/* =========================================================
   PRELOADER ANIMATIONS
========================================================= */

@keyframes load {
  to {
    transform: translateX(0);
  }
}

@keyframes preload {
  to {
    transform: translateY(-100%);
    visibility: hidden;
  }
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement {
  height: 33px;

  background: #202d1d;
  color: #e9e0d3;

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

  gap: 16px;

  font: 10px var(--mono);
  letter-spacing: 1px;
}

.announcement a {
  color: #e9e0d3;
  margin-left: 14px;
}

.announcement-dot {
  color: #d88655;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  height: 87px;
  padding: 0 5.3vw;

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

  position: absolute;
  top: 33px;

  width: 100%;
  z-index: 10;
}


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

.brand,
.footer-brand {
  font-weight: 800;
  letter-spacing: 2px;

  color: var(--ink);
  text-decoration: none;

  display: flex;
  align-items: center;

  gap: 9px;

  font-size: 21px;
}

.brand small {
  display: block;

  text-transform: uppercase;

  font: 7px var(--mono);
  letter-spacing: 2px;

  margin-top: -1px;
}

.brand-symbol {
  width: 31px;
  height: 31px;

  border: 1.5px solid var(--ink);
  border-radius: 50%;

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

  gap: 3px;
}

.brand-symbol i {
  width: 2px;
  height: 14px;

  background: var(--ink);

  display: block;

  transform: skew(-22deg);
}


/* =========================================================
   NAVIGATION
========================================================= */

nav {
  display: flex;
  gap: 28px;
  margin-left: 70px;
}

nav a {
  color: var(--ink);

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  position: relative;
}

nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--ink);

  transition: 0.3s;
}

nav a:hover::after,
nav .active::after {
  width: 100%;
}


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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.icon-btn {
  border: 0;
  background: none;

  font-size: 23px;
  color: var(--ink);

  cursor: pointer;
}

.dark-pill,
.copper-pill,
.light-pill,
.outline-pill {
  border-radius: 50px;

  text-decoration: none;

  padding: 14px 20px;

  display: inline-flex;
  gap: 19px;
  align-items: center;

  font-size: 11px;
  font-weight: 800;

  transition: 0.35s;
}

.dark-pill {
  background: var(--ink);
  color: #fff;

  margin-left: 9px;
}

.dark-pill span {
  font-size: 16px;
}

.dark-pill:hover,
.copper-pill:hover {
  transform: translateY(-4px);

  box-shadow: 0 12px 20px #1d271c3b;
}

.menu {
  display: none;
}


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

.hero {
  min-height: 740px;

  background: var(--cream);

  padding: 130px 8vw 70px;

  display: grid;
  grid-template-columns: 43% 57%;

  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding: 33px 0 0 1.5vw;

  position: relative;
  z-index: 2;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
  font: 10px var(--mono);
  letter-spacing: 1.8px;

  margin: 0 0 18px;

  color: #566052;
}

.eyebrow span {
  display: inline-block;

  background: var(--clay);

  height: 7px;
  width: 7px;

  border-radius: 50%;

  margin-right: 9px;
}


/* =========================================================
   HEADINGS
========================================================= */

.hero h1,
.intro h2,
.section-head h2,
.statement h2,
.product-side h2,
.cta h2,
footer h2 {
  font: 500 clamp(46px, 5.1vw, 81px) / 0.98 var(--serif);

  letter-spacing: -3px;

  margin: 0;
}

.hero h1 em,
h2 em {
  color: var(--clay);
  font-weight: 500;
}


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

.hero-text {
  font-size: 13px;
  line-height: 1.9;

  max-width: 355px;

  color: #5a6256;

  margin: 26px 0;
}


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

.hero-buttons {
  display: flex;
  align-items: center;

  gap: 25px;
}

.copper-pill {
  background: var(--clay);
  color: #fff;
}

.copper-pill b,
.light-pill b {
  font-size: 17px;
}

.play-btn {
  border: 0;
  background: transparent;

  color: var(--ink);

  font: 600 11px var(--sans);

  display: flex;
  align-items: center;

  gap: 9px;

  cursor: pointer;
}

.play-btn span {
  width: 32px;
  height: 32px;

  border: 1px solid #9d998d;
  border-radius: 50%;

  display: grid;
  place-items: center;

  font-size: 9px;
}


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

.hero-bottom {
  display: flex;
  align-items: center;

  gap: 11px;

  font-size: 10px;
  color: #596052;
  line-height: 1.45;

  margin-top: 75px;
}

.mini-faces {
  display: flex;
  align-items: center;
}

.mini-faces img {
  width: 27px;
  height: 27px;

  object-fit: cover;

  border: 2px solid var(--cream);
  border-radius: 50%;

  margin-right: -7px;
}

.mini-faces b {
  width: 29px;
  height: 29px;

  border-radius: 50%;

  background: var(--ink);
  color: white;

  border: 2px solid var(--cream);

  display: grid;
  place-items: center;

  font: 8px var(--mono);

  margin-left: -1px;
}


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

.hero-visual {
  position: relative;
  min-height: 535px;
}

.hero-arch {
  position: absolute;

  width: 79%;
  height: 94%;

  bottom: 0;
  right: 2%;

  background: #d5c9b9;

  border-radius: 240px 240px 0 0;
}

.hero-main {
  position: absolute;

  width: 75%;
  height: 85%;

  object-fit: cover;

  right: 10%;
  bottom: 0;

  border-radius: 180px 180px 0 0;

  filter: saturate(0.8);
}


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

.orbit {
  border: 1px solid #a97856;

  position: absolute;

  border-radius: 50%;

  z-index: 1;
}

.orbit-one {
  width: 280px;
  height: 120px;

  right: 3%;
  top: 11%;

  transform: rotate(-30deg);
}

.orbit-two {
  width: 390px;
  height: 180px;

  right: 9%;
  top: 4%;

  transform: rotate(37deg);

  border-color: #a3aa91;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.floating-card {
  position: absolute;
  z-index: 3;

  bottom: 28px;
  left: 0;

  width: 176px;

  padding: 18px;

  background: #fcf9f3;

  box-shadow: 0 13px 30px #35281b22;
}

.floating-card span,
.product-meta span {
  font: 9px var(--mono);
  color: #8b887d;
}

.floating-card b {
  font: 500 20px / 1.1 var(--serif);

  display: block;

  margin: 9px 0 13px;
}

.floating-card a {
  font-size: 10px;

  color: var(--ink);

  font-weight: bold;
}

.floating-card i {
  font-style: normal;
  margin-left: 36px;
}


/* =========================================================
   ROUND STAMP
========================================================= */

.round-stamp {
  position: absolute;

  right: 4%;
  bottom: 20px;

  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: var(--clay);
  color: #fff;

  display: grid;
  place-content: center;

  text-align: center;

  font: 7px / 1.5 var(--mono);

  letter-spacing: 1px;

  transform: rotate(13deg);

  z-index: 3;
}

.round-stamp strong {
  font-size: 20px;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
  position: absolute;

  right: -3%;
  top: 48%;

  font: 9px var(--mono);

  letter-spacing: 1px;

  transform: rotate(90deg);
}

.scroll-indicator span {
  display: inline-block;

  width: 30px;

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

  vertical-align: middle;

  margin-right: 7px;
}



/* =========================================================
   MARQUEE
========================================================= */

.marquee {
  overflow: hidden;

  background: var(--clay);
  color: #f9f3eb;

  white-space: nowrap;

  padding: 14px 0;
}

.marquee div {
  font: 500 25px var(--serif);

  letter-spacing: 1px;

  display: inline-block;

  animation: marquee 25s linear infinite;
}

.marquee i {
  font-style: italic;
}

.marquee span {
  font-family: var(--sans);
  font-size: 17px;

  margin: 0 20px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================================================
   SECTION PADDING
========================================================= */

.section-pad {
  padding: 115px 8vw;
}


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

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

.intro-grid {
  display: grid;

  grid-template-columns: 57% 43%;

  align-items: end;
}

.intro h2,
.section-head h2 {
  font-size: 54px;
}

.intro-right {
  max-width: 370px;
}

.intro-right p,
.statement-copy > p:not(.eyebrow),
.product-side > p:not(.eyebrow),
.cta-content > p:not(.eyebrow) {
  font-size: 13px;

  line-height: 1.9;

  color: #5e655b;

  margin: 0 0 22px;
}


/* =========================================================
   TEXT LINK
========================================================= */

.text-link {
  font-size: 11px;

  font-weight: 800;

  color: var(--ink);

  text-decoration: none;

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

  padding-bottom: 6px;
}

.text-link b {
  font-size: 17px;
  margin-left: 18px;
}


/* =========================================================
   VALUES
========================================================= */

.values {
  margin-top: 65px;

  display: grid;

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

  gap: 18px;
}

.value-card {
  border-radius: 3px;

  padding: 22px 25px;

  height: 235px;

  position: relative;

  overflow: hidden;
}

.value-card > span {
  font: 10px var(--mono);
}

.value-icon {
  font: 40px var(--serif);

  position: absolute;

  right: 25px;
  top: 20px;
}

.value-card h3 {
  font: 500 26px / 1.05 var(--serif);

  margin: 52px 0 10px;
}

.value-card p {
  font-size: 10px;

  max-width: 180px;

  line-height: 1.5;
}

.v1 {
  background: #d9dfd0;
}

.v2 {
  background: #e5d8c8;
}

.v3 {
  background: #dfbdab;
}


/* =========================================================
   COLLECTIONS
========================================================= */

.collections {
  background: #e9e3d9;
}

.section-head {
  display: flex;

  align-items: end;
  justify-content: space-between;

  margin-bottom: 42px;
}

.outline-pill {
  border: 1px solid #aaa99e;

  color: var(--ink);

  padding: 12px 17px;
}

.outline-pill:hover {
  background: var(--ink);
  color: white;
}


/* =========================================================
   COLLECTION GRID
========================================================= */

.collection-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 16px;
}

.collection-grid a {
  height: 425px;

  position: relative;

  overflow: hidden;

  color: #fff;

  text-decoration: none;
}

.collection-grid img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;

  filter: brightness(0.8);
}

.card-lift:hover img {
  transform: scale(1.07);
}

.collection-grid a::after {
  content: "";

  position: absolute;

  inset: 40% 0 0;

  background: linear-gradient(
    transparent,
    #192118bd
  );
}

.collection-grid div {
  position: absolute;

  z-index: 1;

  bottom: 28px;
  left: 26px;
}

.collection-grid p,
.journal-grid p {
  font: 9px var(--mono);

  letter-spacing: 1px;

  margin: 0 0 8px;
}

.collection-grid h3 {
  font: 500 28px / 1.05 var(--serif);

  margin: 0 0 18px;
}

.collection-feature span {
  font-size: 10px;
  font-weight: 800;
}

.collection-feature span b {
  margin-left: 18px;
}

.collection-tile h3 {
  font-size: 24px;
}

.circle-arrow {
  width: 34px;
  height: 34px;

  background: #f9f3eb;
  color: var(--ink);

  border-radius: 50%;

  display: grid;
  place-items: center;

  margin-top: 20px;
}


/* =========================================================
   STATEMENT
========================================================= */

.statement {
  display: grid;

  grid-template-columns: 55% 45%;

  min-height: 690px;
}

.statement-image {
  position: relative;

  overflow: hidden;
}

.statement-image img {
  height: 100%;
  width: 100%;

  object-fit: cover;
}

.img-caption {
  position: absolute;

  bottom: 20px;
  left: 25px;

  color: white;

  font: 9px var(--mono);

  letter-spacing: 1px;
}

.statement-copy {
  background: var(--green);

  color: #f6f0e7;

  padding: 105px 8vw 70px;

  position: relative;

  overflow: hidden;
}

.statement-copy .eyebrow {
  color: #d5d7cd;
}

.statement-copy h2 {
  font-size: 51px;

  letter-spacing: -2.5px;
}

.statement-copy h2 em {
  color: #d8a07c;
}

.statement-copy > p:not(.eyebrow) {
  color: #d4d6ce;

  max-width: 330px;

  margin-top: 28px;
}




/* =========================================================
   PRODUCT SHOWCASE
========================================================= */

.product-showcase {
  background: #f4efe6;

  display: grid;

  grid-template-columns: 25% 55% 20%;

  align-items: center;

  padding-top: 105px;
  padding-bottom: 105px;
}

.product-side h2 {
  font-size: 61px;
}

.product-side > p {
  max-width: 230px;

  margin-top: 20px !important;
}


/* =========================================================
   PRODUCT SWATCHES
========================================================= */

.swatches {
  display: flex;

  gap: 8px;

  margin: 25px 0;
}

.swatches i {
  width: 17px;
  height: 17px;

  border-radius: 50%;

  background: #738266;
}

.swatches i:nth-child(2) {
  background: #d3b798;
}

.swatches i:nth-child(3) {
  background: #302d2a;
}

.swatches i:nth-child(4) {
  background: #b8af9f;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
  height: 460px;

  position: relative;
}

.product-image::before {
  content: "";

  position: absolute;

  inset: 4% 6%;

  border-radius: 50% 50% 3px 3px;

  background: #d8cfbf;
}

.product-image img {
  position: absolute;

  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: cover;

  mix-blend-mode: multiply;
}


/* =========================================================
   HOTSPOTS
========================================================= */

.hotspot {
  position: absolute;

  z-index: 2;
}

.hotspot span {
  display: grid;

  place-items: center;

  background: #faf8f0;

  color: var(--ink);

  width: 31px;
  height: 31px;

  border-radius: 50%;

  font-size: 19px;

  box-shadow: 0 4px 15px #0002;
}

.hotspot small {
  display: none;

  background: #fff;

  padding: 8px;

  position: absolute;

  left: 36px;
  top: -2px;

  width: 100px;

  font-size: 9px;
}

.hotspot:hover small {
  display: block;
}

.hot1 {
  left: 55%;
  top: 29%;
}

.hot2 {
  left: 38%;
  bottom: 23%;
}


/* =========================================================
   PRODUCT META
========================================================= */

.product-meta {
  padding-left: 24px;

  align-self: center;

  padding-bottom: 0;

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

  min-height: 210px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-meta b,
.product-meta em {
  display: block;

  margin-top: 8px;
}

.product-meta b {
  font: 500 24px var(--serif);
}

.product-meta em {
  font: 11px var(--mono);

  font-style: normal;
}

.slider-next {
  border: 1px solid #9da093;

  width: 47px;
  height: 47px;

  background: transparent;

  border-radius: 50%;

  font-size: 20px;

  margin-top: 24px;

  transition: 0.3s;

  cursor: pointer;
}

.slider-next:hover {
  background: var(--ink);
  color: #fff;
}


/* =========================================================
   JOURNAL
========================================================= */

.journal {
  background: #ebe4da;
}

.journal-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 17px;
}

.journal-grid article {
  background: #f8f5ef;

  position: relative;

  overflow: hidden;
}


/* =========================================================
   JOURNAL BIG
========================================================= */

.journal-big {
  height: 445px;
}

.journal-big img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.7s;
}

.journal-big div {
  position: absolute;

  bottom: 0;

  width: 100%;

  padding: 23px 26px;

  background: linear-gradient(
    transparent,
    #162016d9
  );

  color: #fff;
}

.journal-big h3 {
  font: 500 29px / 1.1 var(--serif);

  max-width: 390px;

  margin: 0 0 15px;
}

.journal-big a,
.journal-small a {
  font-size: 10px;

  color: inherit;

  font-weight: bold;

  text-decoration: none;
}


/* =========================================================
   JOURNAL SMALL
========================================================= */

.journal-small {
  height: 445px;

  padding-bottom: 20px;
}

.journal-small img {
  width: 100%;
  height: 224px;

  object-fit: cover;

  transition: 0.7s;
}

.journal-small p {
  margin: 19px 18px 7px;

  color: #6a6f65;
}

.journal-small h3 {
  font: 500 23px / 1.12 var(--serif);

  margin: 0 18px 25px;
}

.journal-small a {
  color: var(--ink);

  margin-left: 18px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
  min-height: 480px;

  position: relative;

  overflow: hidden;

  background: var(--green);

  color: #f7f1e7;
}

.cta-image {
  position: absolute;

  inset: 0;

  opacity: 0.38;

  background: url("https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?auto=format&fit=crop&w=1600&q=85")
    center / cover;
}

.cta-content {
  position: relative;

  padding: 87px 14vw;
}

.cta-content .eyebrow {
  color: #e9e1d5;
}

.cta h2 {
  font-size: 62px;
}

.cta h2 em {
  color: #e5a77d;
}

.cta-content > p:not(.eyebrow) {
  color: #e6e1d5;

  max-width: 340px;
}


/* =========================================================
   LIGHT BUTTON
========================================================= */

.light-pill {
  background: #faf5ed;

  color: var(--ink);
}

.light-pill:hover {
  background: #d8a07c;

  transform: translateY(-3px);
}


/* =========================================================
   CTA ADDRESS
========================================================= */

.cta-address {
  position: absolute;

  bottom: 36px;
  right: 6vw;

  text-align: right;

  font: 10px / 1.7 var(--mono);

  letter-spacing: 1px;
}


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

footer {
  padding: 68px 8vw 20px;

  background: #d4c6b4;
}

.footer-top {
  display: grid;

  grid-template-columns: 1fr 1.5fr 1fr;

  align-items: start;

  padding-bottom: 60px;

  border-bottom: 1px solid #aa9e8f;
}

.footer-brand {
  align-self: start;
}

.footer-top h2 {
  font-size: 52px;

  margin: 0;
}

.footer-top h2 em {
  color: var(--clay);
}

.mail-link {
  justify-self: end;

  color: var(--ink);

  font: 500 14px var(--serif);

  border-bottom: 1px solid;

  padding-bottom: 8px;

  text-decoration: none;
}

.mail-link b {
  margin-left: 20px;
}


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

.footer-links {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr 1.7fr;

  padding: 44px 0;
}

.footer-links p {
  font: 9px var(--mono);

  letter-spacing: 1px;

  margin: 0 0 15px;
}

.footer-links a,
.footer-links span {
  display: block;

  color: #384036;

  text-decoration: none;

  font-size: 11px;

  line-height: 2;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter form {
  border-bottom: 1px solid #6f6a60;

  display: flex;

  margin-top: 14px;
}

.newsletter input {
  border: 0;

  background: transparent;

  outline: 0;

  padding: 9px 0;

  width: 100%;

  font: 11px var(--sans);
}

.newsletter button {
  border: 0;

  background: transparent;

  font-size: 18px;

  cursor: pointer;
}


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

.footer-bottom {
  border-top: 1px solid #aa9e8f;

  padding-top: 18px;

  display: flex;

  justify-content: space-between;

  font: 8px var(--mono);

  letter-spacing: 0.5px;
}

.footer-bottom div {
  display: flex;

  gap: 14px;
}

.footer-bottom a {
  color: var(--ink);

  text-decoration: none;
}


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

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;

  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}


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

@media (max-width: 800px) {

  /* -------------------------------------------------------
     Announcement
  ------------------------------------------------------- */

  .announcement {
    font-size: 8px;
    gap: 8px;
  }

  .announcement a {
    display: none;
  }


  /* -------------------------------------------------------
     Navbar
  ------------------------------------------------------- */

  .navbar {
    height: 70px;

    padding: 0 6vw;
  }

  .navbar nav {
    display: none;
  }

  .navbar nav.mobile-open {
    display: flex;

    position: absolute;

    top: 70px;
    left: 0;

    width: 100%;

    padding: 25px 7vw;

    flex-direction: column;

    gap: 19px;

    background: #f6f1e9;

    box-shadow: 0 12px 20px #2222;
  }

  .nav-actions {
    display: none;
  }

  .menu {
    display: block;

    border: 0;

    background: none;

    font-size: 23px;

    cursor: pointer;
  }


  /* -------------------------------------------------------
     Hero
  ------------------------------------------------------- */

  .hero {
    display: block;

    padding: 110px 7vw 65px;

    min-height: 820px;
  }

  .hero-copy {
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-bottom {
    margin-top: 35px;
  }

  .hero-visual {
    height: 365px;

    min-height: 0;

    margin-top: 35px;
  }

  .hero-main {
    height: 91%;

    width: 83%;
  }

  .hero-arch {
    height: 100%;

    width: 88%;
  }

  .floating-card {
    left: 0;

    bottom: 8px;

    transform: scale(0.84);

    transform-origin: left bottom;
  }

  .round-stamp {
    right: 0;
  }

  .scroll-indicator,
  .hero-sidenote {
    display: none;
  }


  /* -------------------------------------------------------
     Sections
  ------------------------------------------------------- */

  .section-pad {
    padding: 72px 7vw;
  }

  .intro-grid,
  .statement {
    display: block;
  }

  .intro h2,
  .section-head h2 {
    font-size: 40px;
  }

  .intro-right {
    margin-top: 24px;
  }


  /* -------------------------------------------------------
     Values
  ------------------------------------------------------- */

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

    margin-top: 38px;
  }

  .value-card {
    height: 180px;
  }


  /* -------------------------------------------------------
     Section Head
  ------------------------------------------------------- */

  .section-head {
    align-items: flex-start;

    gap: 15px;
  }

  .outline-pill {
    font-size: 9px;

    white-space: nowrap;
  }


  /* -------------------------------------------------------
     Collections
  ------------------------------------------------------- */

  .collection-grid,
  .journal-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .collection-grid a {
    height: 320px;
  }


  /* -------------------------------------------------------
     Statement
  ------------------------------------------------------- */

  .statement-image {
    height: 390px;
  }

  .statement-copy {
    padding: 70px 7vw;

    height: 460px;
  }

  .statement-copy h2 {
    font-size: 39px;
  }


  /* -------------------------------------------------------
     Product
  ------------------------------------------------------- */

  .product-showcase {
    display: block;
  }

  .product-side h2 {
    font-size: 52px;
  }

  .product-image {
    height: 400px;

    margin: 30px -2vw 0;
  }

  .product-meta {
    padding: 20px 0 0;

    display: grid;

    grid-template-columns: 1fr 1fr;
  }

  .product-meta span {
    grid-column: 1 / -1;
  }

  .product-meta .slider-next {
    margin: 0;

    justify-self: end;

    grid-row: 2 / 5;
  }


  /* -------------------------------------------------------
     Journal
  ------------------------------------------------------- */

  .journal-big,
  .journal-small {
    height: 370px;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .cta-content {
    padding: 70px 7vw;
  }

  .cta h2 {
    font-size: 47px;
  }

  .cta-address {
    display: none;
  }


  /* -------------------------------------------------------
     Footer
  ------------------------------------------------------- */

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

    gap: 27px;
  }

  .footer-top h2 {
    font-size: 43px;
  }

  .mail-link {
    justify-self: start;
  }

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

    gap: 28px;
  }

  .newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 10px;

    flex-wrap: wrap;
  }

  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #263522;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow:
    0 10px 30px rgba(29, 39, 28, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  transition:
    width 0.35s ease,
    border-radius 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-icon {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: #1d271c;
  color: #fff;
  padding: 11px 16px;
  border-radius: 30px;
  font: 10px var(--mono);
  letter-spacing: 0.5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #1d271c;
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 35px rgba(29, 39, 28, 0.30),
    0 0 0 5px rgba(38, 53, 34, 0.10);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


/* Nabız efekti */

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(38, 53, 34, 0.35);
  border-radius: 50%;
  animation: whatsappPulse 2.2s infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}


/* Mobil */

@media (max-width: 800px) {

  .whatsapp-float {
    width: 53px;
    height: 53px;
    right: 17px;
    bottom: 17px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }

}