/*-----------------------------------*\
  #style.css - Sweet Buzz
  Clean, Professional & Elegant
\*-----------------------------------*/

/*-----------------------------------*\
  #CUSTOM PROPERTIES
\*-----------------------------------*/

:root {
  /* Colors — warm, natural honey palette */
  --black: #111111;
  --charcoal: #1c1c1c;
  --dark: #2a2a2a;
  --text: #555555;
  --text-light: #888888;
  --border: #e5e0d8;
  --light: #f7f4ef;
  --cream: #faf8f4;
  --white: #ffffff;
  --amber: #c8922a;
  --amber-light: #d4a43d;
  --amber-dark: #a8781e;
  --amber-bg: rgba(200, 146, 42, 0.06);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-display: clamp(3rem, 8vw, 7rem);
  --fs-h1: clamp(2.4rem, 5vw, 4.2rem);
  --fs-h2: clamp(2rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: clamp(0.9rem, 1vw, 1rem);
  --fs-small: clamp(0.78rem, 0.85vw, 0.875rem);
  --fs-xs: 0.7rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --section-padding: clamp(48px, 6vw, 80px);

  /* Transitions */
  --ease: 0.3s ease;
  --ease-smooth: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

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

a, img, span, time, label, input, button, textarea, select, svg {
  display: block;
}

img { height: auto; }

input, button, textarea, select {
  background: none;
  border: none;
  font: inherit;
}

input, textarea, select { width: 100%; }

button { cursor: pointer; }

address { font-style: normal; }

html {
  font-family: var(--ff-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  color: var(--text);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background-color: var(--cream); }
::-webkit-scrollbar-thumb { background-color: var(--amber); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background-color: var(--amber-dark); }

::selection {
  background-color: var(--amber);
  color: var(--white);
}


/*-----------------------------------*\
  #REUSED STYLES
\*-----------------------------------*/

.container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 28px;
}

.section {
  padding-block: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  color: var(--charcoal);
  line-height: 1.2;
}

.section-description {
  font-size: var(--fs-body);
  color: var(--text-light);
  max-width: 520px;
  margin-inline: auto;
  margin-top: 16px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  transition: var(--ease);
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background-color: var(--amber);
  color: var(--white);
  border: 1px solid var(--amber);
}

.btn-primary:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline:hover {
  background-color: var(--charcoal);
  color: var(--white);
}

.btn-full { width: 100%; }


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-block: 10px;
  transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header.active {
  padding-block: 6px;
  box-shadow: 0 1px 0 var(--border);
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  object-position: center center;
  transition: var(--ease);
  border-radius: 4px;
}

.header.active .logo-img {
  height: 120px;
  width: auto;
}

.navbar-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-link {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: var(--fw-medium);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-block: 4px;
  transition: var(--ease);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--amber);
  transition: var(--ease);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--amber);
}

/* Mobile Nav Toggle */
.nav-toggle-btn {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 101;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--charcoal);
  transition: var(--ease);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle-btn.active .hamburger {
  background-color: transparent;
}

.nav-toggle-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle-btn.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--cream);
  padding-top: 220px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.hero-left {
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.1s forwards;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1;
}

.hero-title-main {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  line-height: 0.9;
}

.hero-title-accent {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  color: var(--amber);
  line-height: 0.9;
}

.hero-title-sub {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: var(--text-light);
  margin-top: 8px;
  letter-spacing: 1px;
}

.hero-description {
  font-size: var(--fs-body);
  color: var(--text);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  font-size: var(--fs-xs);
  padding: 14px 28px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.25s forwards;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 0.6s ease 1s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: var(--fw-medium);
}

.scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  background-color: var(--white);
  padding-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-lead {
  font-family: var(--ff-heading);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: var(--fw-regular);
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--amber-bg);
  border-radius: 50%;
  color: var(--amber);
  transition: var(--ease);
}

.feature:hover .feature-icon {
  background-color: var(--amber);
  color: var(--white);
}

.feature h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--charcoal);
  margin-bottom: 2px;
}

.feature p {
  font-size: var(--fs-small);
  color: var(--text-light);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/*-----------------------------------*\
  #HONEY POUR ANIMATION
\*-----------------------------------*/

.honey-animation-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

.honey-anim-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 340px;
  width: 100%;
  padding-inline: 20px;
}

.honey-anim-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.honey-anim-caption {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: var(--fw-medium);
  font-style: italic;
  color: var(--amber);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* ======== Steam — gentle float-up ======== */
.steam {
  stroke-dasharray: 8 12;
  opacity: 0;
}
.s1 { animation: steamFloat 3.5s ease-in-out infinite; }
.s2 { animation: steamFloat 3.5s ease-in-out 1.1s infinite; }
.s3 { animation: steamFloat 3.5s ease-in-out 2.2s infinite; }

@keyframes steamFloat {
  0%   { opacity: 0; stroke-dashoffset: 0; transform: translateY(0); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.2; }
  100% { opacity: 0; stroke-dashoffset: -35; transform: translateY(-18px); }
}

/* ======== Spoon — very subtle gentle rock, pivot at handle-bowl junction ======== */
.spoon-group {
  transform-origin: 210px 104px;
  animation: spoonRock 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes spoonRock {
  0%, 100% { transform: rotate(0deg); }
  30%      { transform: rotate(1.2deg); }
  60%      { transform: rotate(-0.8deg); }
  80%      { transform: rotate(0.4deg); }
}

/* ======== Honey strand — smooth drip from bowl to cup ======== */
.honey-strand {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  animation: strandFlow 6s ease-in-out infinite;
}

.honey-strand-thin {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: strandFlow 6s ease-in-out 0.3s infinite;
}

@keyframes strandFlow {
  0%          { stroke-dashoffset: 110; opacity: 0; }
  10%         { opacity: 0.6; }
  35%         { stroke-dashoffset: 0; opacity: 1; }
  55%         { stroke-dashoffset: 0; opacity: 0.7; }
  78%         { stroke-dashoffset: -110; opacity: 0.15; }
  88%, 100%   { stroke-dashoffset: -110; opacity: 0; }
}

/* ======== Drip blob at spoon bowl tip ======== */
.drip-blob {
  opacity: 0;
  transform-origin: 180px 145px;
  animation: blobForm 6s ease-in-out infinite;
}

@keyframes blobForm {
  0%, 3%    { opacity: 0; transform: scale(0.2); }
  10%       { opacity: 0.85; transform: scale(1.15); }
  18%       { opacity: 0.85; transform: scale(1); }
  26%       { opacity: 0; transform: scale(0.3) translateY(10px); }
  100%      { opacity: 0; }
}

/* ======== Falling drops — gravity acceleration (ease-in) ======== */
.fall-drop {
  opacity: 0;
}

.fd1 { animation: dropFall 6s ease-in 0.8s infinite; }
.fd2 { animation: dropFall 6s ease-in 1.6s infinite; }
.fd3 { animation: dropFall 6s ease-in 2.4s infinite; }

@keyframes dropFall {
  0%   { opacity: 0; transform: translateY(-25px) scale(0.5); }
  5%   { opacity: 1; transform: translateY(-10px) scale(1); }
  14%  { opacity: 1; transform: translateY(15px) scale(0.95); }
  20%  { opacity: 0.6; transform: translateY(35px) scale(0.7); }
  24%  { opacity: 0; transform: translateY(45px) scale(0.3); }
  100% { opacity: 0; }
}

/* ======== Honey swirl dissolving in tea ======== */
.honey-swirl {
  opacity: 0;
  animation: swirlDissolve 6s ease-in-out infinite;
}

.honey-swirl ellipse {
  transform-origin: 195px 233px;
}

@keyframes swirlDissolve {
  0%, 35%     { opacity: 0; transform: scale(0.4) rotate(0deg); }
  48%         { opacity: 0.8; transform: scale(1) rotate(0deg); }
  65%         { opacity: 0.5; transform: scale(1.08) rotate(120deg); }
  82%         { opacity: 0.15; transform: scale(1.25) rotate(270deg); }
  92%, 100%   { opacity: 0; transform: scale(1.35) rotate(360deg); }
}

/* ======== Splash ripples on tea ======== */
.splash-ring,
.splash-ring-2 {
  opacity: 0;
  transform-origin: 195px 232px;
}

.splash-ring {
  animation: ripple 6s ease-out infinite;
}

.splash-ring-2 {
  animation: ripple 6s ease-out 0.35s infinite;
}

@keyframes ripple {
  0%, 35% { opacity: 0; transform: scale(0.3); }
  43%     { opacity: 0.6; transform: scale(1); }
  56%     { opacity: 0.2; transform: scale(1.5); }
  66%, 100% { opacity: 0; transform: scale(1.9); }
}

/* ======== Tea surface gentle wobble ======== */
.tea-surface {
  animation: teaRipple 4s ease-in-out infinite;
  transform-origin: 195px 232px;
}

@keyframes teaRipple {
  0%, 100% { transform: scaleX(1); }
  50%      { transform: scaleX(1.02); }
}

/* ======== Responsive ======== */
@media (min-width: 768px) {
  .honey-anim-container {
    max-width: 400px;
  }
  .honey-anim-svg {
    max-width: 340px;
  }
}

@media (max-width: 400px) {
  .honey-anim-container {
    max-width: 280px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .steam,
  .spoon-group,
  .honey-strand,
  .honey-strand-thin,
  .drip-blob,
  .fall-drop,
  .honey-swirl,
  .splash-ring,
  .splash-ring-2,
  .tea-surface {
    animation: none;
    opacity: 0.6;
  }
  .honey-strand,
  .honey-strand-thin {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
}


/*-----------------------------------*\
  #THE EXPERIENCE (Cinematic How It Works)
\*-----------------------------------*/

.experience {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.experience .section-header {
  position: relative;
  z-index: 2;
}

.experience .section-label {
  color: var(--amber);
}

.experience .section-title {
  color: var(--charcoal);
}

.experience-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.experience-reel {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 80px);
  position: relative;
  z-index: 2;
}

/* Connecting line between frames */
.experience-reel::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200, 146, 42, 0.15) 15%, rgba(200, 146, 42, 0.15) 85%, transparent);
  transform: translateX(-50%);
  z-index: 0;
  display: none;
}

.reel-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
}

.reel-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(200, 146, 42, 0.1);
}

.reel-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reel-frame:hover .reel-image-wrap img {
  transform: scale(1.04);
}

.reel-image-glow {
  position: absolute;
  bottom: -20%;
  left: 10%;
  right: 10%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(200, 146, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.reel-caption {
  text-align: center;
  position: relative;
  z-index: 2;
}

.reel-step {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: var(--fw-bold);
  color: rgba(200, 146, 42, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.reel-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  color: var(--charcoal);
  margin-bottom: 12px;
}

.reel-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: var(--fs-body);
  max-width: 380px;
  margin-inline: auto;
}

.reel-tagline {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: var(--amber);
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
  letter-spacing: 1px;
  opacity: 0.7;
  position: relative;
  z-index: 2;
}


/*-----------------------------------*\
  #PRODUCTS / PORTFOLIO
\*-----------------------------------*/

.products {
  background-color: var(--white);
}

/* Minimal 2-item product grid */
.portfolio-grid--minimal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.portfolio-grid--minimal .portfolio-item {
  border-radius: 16px;
}

.portfolio-grid--minimal .portfolio-item .portfolio-image {
  aspect-ratio: 16 / 10;
}

/* Gallery grid — uniform equal-size images, 2x2 */
.portfolio-grid--gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin-inline: auto;
}

.portfolio-grid--gallery .portfolio-item {
  border-radius: 16px;
}

.portfolio-grid--gallery .portfolio-item .portfolio-image {
  aspect-ratio: 3 / 4;
}

.portfolio-grid--gallery .portfolio-item .portfolio-image img {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 480px) {
  .portfolio-grid--gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .portfolio-grid--gallery .portfolio-item .portfolio-image {
    aspect-ratio: 3 / 4;
  }

  .portfolio-grid--gallery .portfolio-item .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.portfolio-grid.portfolio-grid--gallery {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin-inline: auto;
  grid-auto-rows: auto;
  grid-auto-flow: row;
}

@media (max-width: 991px) {
  .portfolio-item:nth-child(5) { order: 6; }
  .portfolio-item:nth-child(6) { order: 5; }
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.portfolio-item.wide .portfolio-image { aspect-ratio: 16 / 9; }
.portfolio-item.tall .portfolio-image { aspect-ratio: 3 / 4; }
.portfolio-item.square .portfolio-image { aspect-ratio: 1 / 1; }

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.03);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--ease-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  color: var(--white);
}


/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
  background-color: var(--cream);
  text-align: left;
  overflow: hidden;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.cta-left .section-label {
  text-align: left;
}

.cta-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-text {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 450px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image-wrap {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--white);
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.cta-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


/*-----------------------------------*\
  #MEET THE TEAM
\*-----------------------------------*/

.team {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin-inline: auto;
}

.team-card {
  text-align: center;
  transition: var(--ease-smooth);
}

.team-photo {
  width: 320px;
  height: 400px;
  margin: 0 auto 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: var(--ease);
}

.team-card:hover .team-photo {
  box-shadow: 0 16px 50px rgba(200, 146, 42, 0.15);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
}


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact {
  background-color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-intro {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--amber);
  transition: var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card:hover .contact-icon {
  background-color: var(--amber);
  color: var(--white);
}

.contact-card h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact-card a {
  font-size: var(--fs-small);
  color: var(--text-light);
  transition: var(--ease);
}

.contact-card a:hover {
  color: var(--amber);
}

/* Contact Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background-color: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--cream);
  border: 1px solid transparent;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  color: var(--charcoal);
  transition: var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 8px;
}

.form-input:focus {
  border-color: var(--amber);
  background-color: var(--white);
}

.form-input::placeholder {
  color: var(--text-light);
  font-weight: var(--fw-regular);
  font-size: var(--fs-small);
}

.form-select {
  cursor: pointer;
  color: var(--text-light);
}

.form-select option {
  font-size: var(--fs-body);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 4px;
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--white);
  color: var(--text);
  position: relative;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(10px, 1.5vw, 16px);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 8px;
  transition: var(--ease);
}

.footer-logo-link:hover {
  opacity: 0.7;
}

.footer-logo-img {
  height: clamp(120px, 16vw, 180px);
  width: auto;
  border-radius: 8px;
}

.footer-tagline {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--ease);
}

.footer-social a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.footer-divider {
  position: relative;
  height: 1px;
  background-color: var(--border);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-description {
  font-size: var(--fs-small);
  line-height: 1.8;
  max-width: 300px;
  color: var(--text-light);
}

.footer-heading {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--text-light);
  transition: var(--ease);
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--text-light);
}

.footer-contact-item a {
  font-size: var(--fs-small);
  color: var(--text-light);
  transition: var(--ease);
}

.footer-contact-item a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  padding-bottom: 16px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

.footer-credit {
  font-style: italic;
}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 50%;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.back-top-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}


/*-----------------------------------*\
  #FLOATING WHATSAPP
\*-----------------------------------*/

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  z-index: 1;
  animation: whatsappPulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.35; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--charcoal);
}

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


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/* Mobile: 576px+ */
@media (min-width: 576px) {

  .portfolio-grid:not(.portfolio-grid--gallery) {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .portfolio-item.wide {
    grid-column: 1 / -1;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .full-width {
    grid-column: 1 / -1;
  }

  .cta-content {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablet: 768px+ */
@media (min-width: 768px) {

  .nav-toggle-btn {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-list {
    all: unset;
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }

  /* Experience — side-by-side alternating layout */
  .experience-reel::before {
    display: block;
  }

  .reel-frame {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .reel-frame:nth-child(even) {
    direction: rtl;
  }

  .reel-frame:nth-child(even) > * {
    direction: ltr;
  }

  .reel-caption {
    text-align: left;
  }

  .reel-text {
    margin-inline: 0;
  }

  .reel-image-wrap {
    max-width: 100%;
  }

  .portfolio-grid:not(.portfolio-grid--gallery) {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .portfolio-item.wide {
    grid-column: 1 / -1;
  }

  .portfolio-grid--minimal {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .portfolio-grid--minimal .portfolio-item.wide {
    grid-column: auto;
  }

  .portfolio-grid--minimal .portfolio-item .portfolio-image {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
  }

  .footer-bottom-inner {
    flex-direction: row;
  }
}

/* Below 768px: Mobile nav */
@media (max-width: 767px) {

  .nav-toggle-btn {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease-smooth);
    z-index: 100;
  }

  .navbar.active {
    opacity: 1;
    visibility: visible;
  }

  .navbar-list {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .navbar-link {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  .nav-toggle-btn {
    z-index: 101;
  }

  .hero-right {
    order: -1;
  }

  .hero-image-wrap {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-title-main,
  .hero-title-accent {
    font-size: clamp(4rem, 16vw, 6rem);
  }

  .hero-title-sub {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.8rem, 3vw, 1rem);
    letter-spacing: 4px;
  }

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

  .container {
    padding-inline: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .about-visual {
    order: -1;
  }

  /* Mobile logo size */
  .logo-img {
    height: 120px;
  }

  .header.active .logo-img {
    height: 80px;
  }

  /* Mobile team photos */
  .team-photo {
    width: 260px;
    height: 340px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Desktop: 992px+ */
@media (min-width: 992px) {

  .container {
    max-width: 1100px;
  }

  .hero-content {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }

  .reel-frame {
    gap: 70px;
  }

  .portfolio-grid:not(.portfolio-grid--gallery) {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 14px;
  }

  .portfolio-item.wide {
    grid-column: span 2;
  }

  .portfolio-item.tall {
    grid-row: span 2;
  }

  .portfolio-grid--minimal {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 24px;
  }

  .portfolio-grid--minimal .portfolio-item.wide {
    grid-column: auto;
  }

  .portfolio-grid--minimal .portfolio-item .portfolio-image {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .portfolio-item .portfolio-image {
    height: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
  }

  .cta-content {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
  }
}

/* Large Desktop: 1200px+ */
@media (min-width: 1200px) {

  .container {
    max-width: 1200px;
    padding-inline: 40px;
  }

  .about-grid {
    gap: 70px;
  }

  .contact-grid {
    gap: 70px;
  }

  .hero-image-wrap {
    max-width: 420px;
  }
}

/* Extra-narrow devices */
@media (max-width: 400px) {
  .container {
    padding-inline: 16px;
  }

  .hero-title-main,
  .hero-title-accent {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .hero-title-sub {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

  .hero-subtitle {
    font-size: clamp(0.8rem, 3vw, 1rem);
    letter-spacing: 4px;
  }

  .hero-btn {
    font-size: 0.62rem;
    padding: 12px 18px;
    letter-spacing: 1.5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo-img {
    height: 100px;
  }
}

/* After the experience-reel section styles, before the PRODUCTS section comment */

/* Gallery section */
.gallery {
  background-color: var(--cream);
}

