/* CSS Variables for consistent theming */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #333333;
    --text-color: #000000;
    --text-color-light: #656565;
    --background-color: #ffffff;
    --tag-background-color: #f1f1f1;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.5;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 7rem;
    --border-radius: 0.25rem;
    --transition: all 0.3s ease;
    --bubble-left-adjust: -8px; /* fine-tune bubble horizontal position */
    --case-images-top-offset: 24px; /* fine-tune right images vertical alignment */
  --light-grey: #ebebeb;;
}

/* ===== Custom Fonts ===== */
@font-face {
  font-family: 'Patrician';
  src: url('../fonts/Patrician.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Utility to apply Patrician font where needed */
.font-patrician{ font-family: 'Patrician', serif; font-weight: 400; }

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  min-width: 1400px; /* enforce minimum page width across all devices */
}


body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background-color: #F4F4F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Space for fixed header so content isn't hidden */
  overflow-x: hidden; /* prevent horizontal scroll if something bleeds */
  min-width: 1400px; /* keep overall layout from shrinking */
}

.main{
  padding-top: 120px;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 1000;
    padding: 20px 0 12px 0;
  /* show subtle divider initially */
  border-bottom: 1px solid #EBEBEB;
  box-shadow: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Shadow state after user scrolls down */
.header--scrolled{
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.06);
  border-bottom-color: transparent; /* fade out line when elevated */
}

.nav{
  flex-shrink: 0;
}

.nav__item{
    margin-left: 27px;
}

.nav__list{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.nav__logo{
    color: #000;
    font-size: 21.445px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.max-width {
  max-width: 1536px;
  width: 100%;
  min-width: 1400px; /* maintain design canvas */
  height: 100%;
  margin: 0 auto;
  background-color: white;
  padding-bottom: 10px;
}

/* Fine‑tune variables */
:root {
  --user-flow-right-gutter: 24px; /* space between image right edge and viewport; adjust */
}

.container {
  min-width: 1325px;
  margin: 0 auto;
  width: 100%;
}

/* Make all images shrink within their parent to avoid horizontal overflow */
img { max-width: 100%; height: auto; }


.unico__brand {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-light);
}

.unico__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    padding-top: 15px;
}


.unico__section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-light);
    text-align: center;
}

.unico__overview {
    max-width: 940px;
    margin: 0 auto var(--spacing-xl);
}

.unico__overview-box{
    padding-top: 55px;
}

.unico__description-box{
    padding-top: 30px;
}

.unico__description{
    color: rgba(0, 0, 0, 1);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.unico__tags {
    padding-top: 55px;
}

.tag {
    background-color: var(--tag-background-color);
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 14px;
    height: 46px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

.home_kopcanka-tablet-img {
  width: 279px;
}


.unico__details {
    padding-top: 41px;
}

.card {
    background-color: var(--secondary-color);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.1);
    width: 444px;
    text-align: left;
    cursor: pointer;
}

.gap-52{
    gap: 52px;
}

.gap-14{
    gap: 14px;
}

.gap-40{
    gap: 40px;
}

.gap-100{
    gap: 100px;
}

.pt-50{
  padding-top: 50px;
}

.pt-200{
  padding-top: 200px;
}



.card__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.card__text {
    font-size: 14px;
    line-height: 1.5;
}

.branding__logo {
    flex: 0 0 auto;
    width: 400px;
    height: 500px;
    background-image: url('../images/unico/branding-logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.unico__branding{
    padding-top: 80px;
}

.color-swatch{
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.circle-1{
    background-color: #E8BA14;
}

.circle-2{
    background-color: #F3C946;
}

.circle-3{
    background-color: #3C3C3B;
}

.circle-4{
    background-color: #808B94;
}

.pattern-container{
    background-image: url('../images/unico/pattern.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 1015px;
}

/* ===== MERCHANDISE SECTION ===== */
.merchandise-section {
    background-color: var(--background-color);
}
  
.merchandise-header {
    text-align: center;
}

/* Unified section title styles (keep paddings in individual classes) */
.website-title,
.merchandise-title,
.valentine-title {
    font-size: 40px;
    font-weight: 700;
    color: #e8ba14;
    margin: 0;
    line-height: 1.25;
    text-align: center;
}

.website-title{
    padding-top: 100px;
    padding-bottom: 150px;
}

.merchandise-title {
    padding-top: 100px;
    padding-bottom: 50px;
}

/* Merchandise Showcase Section */
.merchandise-pictures {
    display: grid;
    grid-template-columns: 3fr 3fr;
    gap: 50px;
    margin-top: var(--spacing-lg);
    margin-left: auto;
    margin-right: auto;
  }
  
  .merchandise-image-container {
    width: 100%;
  }
  
  .merchandise-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Removed unused .merchandise-spacer empty rule */
  
  /* Merchandise Showcase Section */
  .merchandise-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 50px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0px;
  }
  
  .showcase-text {
    grid-row: 1/3;
    grid-column: 2 / 5; 
    align-self: self-end;
    justify-content: space-between;
    color: #000;
  }
  
  .showcase-pen {
    grid-row: 2/5;
    grid-column: 2 / 5;
    justify-self: center;
    align-self: self-end;
  }
  
  .showcase-van {
    grid-row: 3/13;
    grid-column: 1/ 7;
    /* justify-self: start;
    align-self: center; */
    align-self: self-end;
  }
  
  .showcase-cup {
    grid-column: 6 / 13; 
    grid-row: 1/4;
    /* grid-column: span 7; */
  }
  
  .showcase-bag-calendar {
    grid-column: 7 / 13; 
    grid-row: 4/13;
    justify-self: end;
  }
  
  .van-bottom{
   margin-top: 50px;
  }
  
  .showcase-cup-image {
    width: 100%;
    max-width: 857px;
    max-height: 796.875px;
    float: right;
  }
  
  .showcase-decorative-line {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    width: 250px;
    height: 80px;
    align-self: start;
  }
  
  
  .decorative-circles {
    width: 100%;
    height: 100%;
    background-image: url('../images/unico/decorative-circles.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  
  
  .showcase-pen-image {
    width: 100%;
    height: 100%;
    max-width: 344.25px;
    max-height: 719.3125px;
  }
  
  
  .showcase-bag-image {
    width: 100%;
    max-width: 737.375px;
    max-height: 652.375px;;
  }
  
  
  
  .showcase-van-image {
    width: 100%;
    max-width: 735.25px;
  }
  
  .showcase-calendar-image {
    width: 100%;
    height: 100%;
    max-height: 777.75px;
    max-width: 527px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
  }


  /* ===== COLORING BOOK SECTION ===== */
 .coloring-book-section {
    background-color: #e8ba14; /* Brand yellow */
    background-image: url('../images/unico/book-composeite.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 872.3125px;
  }
  
  .coloring-book-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
  }
  
  .coloring-book-image {
    width: 100%;
    max-width: 550px;
    height: auto;
  }
  
  .coloring-book-image-left {
    transform: rotate(-7deg);
  }
  
  .coloring-book-image-right {
    transform: rotate(7deg);
  }
  
  .coloring-book-text {
    max-width: 501px;
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
    position: absolute;
    left: 8%;
    bottom: 40px; /* moved slightly lower per feedback */
    margin: 0;
    color: #000;
  }
  
  .colorbook-decor-pen {
    position: absolute;
    top: 0;
    right: 5%;
    width: 260px;
    height: auto;
  }
  
  .colorbook-decor-shape {
    position: absolute;
    bottom: -30px;
    right: 25%;
    width: 150px;
    height: auto;
  }

  .website-vector-container {
    /* position: absolute;
    left: 863px;
    top: 0.5px; */
    width: 418px;
    height: 371px;
    position: relative;
    top: -110px;
    right: 30px;
  }

  .website-vector-redesign {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .website-text-redesign{
    padding-left: 55px;
    max-width: 426px;
    line-height: normal;
    margin-top: -45px;
  }

  .website-pages{
    padding-top: 100px;
  }

  .website-pages-image_frame9{
    padding-top: 92px;
  }

  .website-pages-image_arrow{
    display: inline-flex;
    padding-left: 50px;
    padding-top: 100px;
    align-items: center;
    flex-shrink: 0;
  }

  .website-pages-text{
    width: 501px;
    position: relative;
    padding-top: 100px;
    right: -100px;


  }

  .valetninte-text{
    text-align: center;
  }

.valentine-title {
    padding: 50px 0;
}

.valentine-postcards{
  margin-top:100px
}

.valentine-vector-impage{
  max-height: 1018px;
  margin-top: 50px;
}

.valentine-vector-impage2{
  /* background-image: url('../images/Vector_Valentines 2.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  max-height: 770px;
  margin-top: 100px;
}

.valentine-images-3{
  margin-top: 50px;
}

 .valentine-social-images-image{
  max-width: 1440px;
  background-image: url('../images/unico/Insta obr_txt_arrow.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; 
  width: 100%;
  height: 844px;
}

.valentine-awards{
  width: 100%;
  background: #F8C811;
  height: 528px;
  margin-top: 100px;
}

.valentine-awards-title{
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 50px */
  padding-top: 52px;
  padding-bottom: 52px;
}

.valentine-awards-text{
  text-align: center;
  padding-bottom: 52px;
}

/* Shared body copy styles across multiple components (no layout/alignment changes) */
.showcase-text,
.website-text-redesign,
.website-pages-text,
.valetninte-text,
.valentine-awards-text,
.unico__description {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

/* When used as an <img>, this class sizes and aligns the arrow */
.footer-arrow-right{
  width: 54.5px;
  height: 10px;
  margin-left: 10px;
  object-fit: contain;
  display: inline-block;
}

.button-whats-next{
  display: flex;
  width: 358px;
  height: 60px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 30px;
  border: 2px solid #000;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 25px */
  text-align: center;
  text-transform: uppercase;
}

.button-whats-next:hover .footer-arrow-right {
  transform: translateX(4px);
  transition: transform 150ms ease-in-out;
}

.footer-section{
  padding-top: 129px;
}

/* ===== GLOBAL FOOTER ===== */
.site-footer{background:#050404; color:#fff; padding:80px 0 60px; margin-top:150px;}
.footer-grid{align-items:flex-start;}
.footer-col{padding:0 40px; position:relative;}
.footer-col--contact{border-right:1px solid rgba(255,255,255,0.08);}
.footer-col--work{border-right:1px solid rgba(255,255,255,0.08);}
.footer-heading{text-transform:uppercase; font-size:12px; letter-spacing:.5px; font-weight:300; margin:0 0 28px; color:#fff;}
.footer-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; font-size:14px; font-weight:600;}
.footer-link{color:#fff; text-decoration:none; position:relative;}
.footer-link:focus, .footer-link:hover{text-decoration:underline;}
.footer-copy{font-size:14px; font-weight:600; margin:0 0 24px;}
.footer-made{font-size:12px; margin:0; color:#fff;}
.footer-made span{color:#fff;}
/* Intentionally no mobile override: design is fixed-width; mobile will show full-page scaled view without additional responsive adjustments. */

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal]{opacity:0; transform:translateY(42px); transition:opacity 1.1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);}
[data-reveal].in-view{opacity:1; transform:translateY(0);}
[data-reveal="fade"]{transform:none;}
[data-reveal="fade"].in-view{opacity:1;}

/* ===== KOPČIANKA SECTION ===== */

.colors{
  padding-top: 130px;
  padding-bottom: 105px;
}

.colors-image{
  width: 853px;
  object-fit: cover;
}

.logo-cartoon{
  padding-top: 105px;
  padding-bottom: 105px;
}

/* precise spacer between vector-logo and logo-cartoon only */
.vector-logo.logo-cartoon-spacer{ margin-top: 64px; }

.kopcianka-header{ padding-top: 140px; }
.kopcianka-header.iconography{ padding-top: 80px; }
.kopcianka-header.brochure{ padding-top: 140px; }
.kopcianka-header.website{ padding-top: 140px; }

.kopcianka-header-title{
  color: #08422A;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 50px */
}

.kopcianka-header-text{
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 50px;
  padding-bottom: 100px;
}
.kopcianka-header.iconography .kopcianka-header-text{ padding-top: 32px; padding-bottom: 64px; }
.kopcianka-header.brochure .kopcianka-header-text{ padding-top: 32px; padding-bottom: 64px; }
.kopcianka-header.website .kopcianka-header-text{ padding-top: 32px; padding-bottom: 64px; }

/* ===== KOPČIANKA: SPACING TWEAKS TO MATCH FIGMA ===== */
.iconography-image{ margin-top: 40px; }
.website-hero{ margin-top: 40px; }
.kopcianka-header .merchandise-image{ margin-top: 40px; }

/* Kopčianka: paragraph max-widths to match Figma text measures */
.kopcianka-header-text .iconography-text{ max-width: 818px; }
.kopcianka-header-text .brochure-text{ max-width: 706px; }
.kopcianka-header-text .merch-text{ max-width: 495px; }
.kopcianka-header .website-description{ max-width: 583px; }

.kopcianka-website-text{
  color: #000;
  /* removed non-standard properties from figma export */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

/* ===== WEBSITE SECTION (Kopčianka) ===== */
.website .website-description{ max-width: 583px; }
.website-hero-image{ width: 1440px; max-width: 1440px; height: auto; }

/* ===== IPHONE 3-UP SECTION ===== */
.kopcianka-iphones{ padding-top: 80px; }
.iphone-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}
.iphone-item{ display: flex; justify-content: center; }
.iphone-image{ width: 100%; height: auto; max-width: 386px; }

/* Removed responsive column changes for fixed layout */

/* ===== HOME PAGE ===== */
.home-hero{ padding: 0; margin-top: 93px; }
.home__eyebrow{ color: var(--text-color-light); font-weight: 600; font-size: 18px; }
.home__title{ font-size: 56px; font-weight: 800; line-height: 1.1; margin-top: 8px; }
.home__subtitle{ font-size: 20px; margin-top: 20px; color: var(--text-color); }
.home__hero-image{ width: 100%; height: auto; max-width: 640px; margin-left: auto; display: block; }

.home-projects{ padding-top: 40px; padding-bottom: 20px; }
.home-projects__title{ font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 40px; }
.project-grid{ display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; }
.project-card{ position: relative; grid-column: span 6 / span 6; display: block; border-radius: 16px; overflow: hidden; }
.project-card__image{ width: 100%; height: auto; display: block; object-fit: cover; }
.project-card__overlay{ position: absolute; inset: 0; display: flex; align-items: flex-end; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%); transition: var(--transition); }
.project-card__meta{ color: #fff; padding: 20px; }
.project-card__eyebrow{ display: block; font-size: 14px; opacity: 0.9; }
.project-card__title{ font-size: 28px; font-weight: 700; }
.project-card:hover .project-card__overlay{ background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.45) 100%); }

.home-about{ padding-top: 100px; padding-bottom: 80px; }
.home-about__portrait{ width: 100%; height: auto; max-width: 520px; border-radius: 24px; }
.home-about__title{ font-size: 40px; font-weight: 700; margin-bottom: 20px; }
.home-about__text{ font-size: 20px; color: #000; }

.home-contact{ padding-top: 60px; padding-bottom: 20px; text-align: center; }
.home-contact__title{ font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.home-contact__text{ font-size: 20px; margin-bottom: 32px; }

/* Removed responsive typography/grid adjustments for fixed layout */

.homepage-title{
  padding-bottom: 70px;
}

.section-divider{
  border-bottom:1px solid #EBEBEB;
  margin-top: 70px;
}
/* ===== HOME: FIGMA HERO ===== */
.hero-stage{ position: relative; height: 488px; }
.hero-content{ position: absolute; left: 226px; top: 0; width: 970px; height: 488px; }
.main-title{ font-size: 150px; font-weight: 400; line-height: 1; color: #000; position: relative; z-index: 1; }
.title-line{ display: inline-block; width: max-content; white-space: nowrap; word-break: keep-all; hyphens: none; overflow: visible; font-family: 'Patrician', serif; }
.title-slash{ padding-right: 16px; }
.title-line:first-child{ position: absolute; top: 72px; left: calc(50% - 485px); }
.title-line:last-child{ position: absolute; top: 218px; left: calc(50% - 161px); }

.hero-image{ position: absolute; top: 0; left: calc(50% + var(--bubble-left-adjust)); transform: translateX(-50%); width: 426px; height: 441px; z-index: 2; pointer-events: none; }
.portrait{ width: 100%; height: 100%; object-fit: cover; opacity: 0.6; display: block; mix-blend-mode: multiply; }
.diagonal-line{ position: absolute; top: 213px; left: 246px; width: 68px; height: 145px; z-index: 3; }
.line-svg{ width: 100%; height: 100%; object-fit: contain; }

.subtitle-section{ position: relative; }
.description{ position: absolute; top: 249px; left: calc(50% - 485px); font-size: 20px; font-weight: 400; color: var(--text-color-light); }
.ux-ui-label{ position: absolute; top: 213px; left: calc(50% + 306px); font-size: 30px; font-weight: 400; color: var(--text-color-light); }
.more-about{ position: absolute; top: 430px; left: calc(50% + 204px); font-size: 14px; color: var(--text-color-light); display: flex; align-items: center; gap: 10px; }
.underline-link{ color: var(--text-color-light); text-decoration: underline; text-decoration-skip-ink: none; text-underline-position: from-font; }
.arrow-container{ position: relative; margin-left: 20px; }
.arrow-down{ position: absolute; top: 455px; left: 801px; width: 23px; height: auto; z-index: 1; }
.arrow-right{ position: absolute; top: 431px; left: 676px; width: auto; height: 31px; z-index: 1; }

/* Skills bar */
.home-skills{ position: relative; margin-top: 131px; background: #000; height: 80px; display: flex; align-items: center; }
.skills-list{ display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; width: 100%; max-width: 100%; padding: 0; margin: 0 auto; }
.skill{ font-size: 14px; font-weight: 400; color: #fff; white-space: nowrap; }
.dot{ width: 5px; height: 5px; background: #fff; border-radius: 50%; flex-shrink: 0; }
.dot-img{ width: 5px; height: 5px; display: inline-block; }

/* ===== HOME: PROJECT SHOWCASE (Figma spacing) ===== */
.home-project-showcase{ position: relative; padding-top: 70px; }
.home-project-showcase__inner{ position: relative; width: 100%; max-width: 1324.5px; margin: 0 auto; }
.home-project-showcase__title{ text-transform: uppercase; font-size: 30px; font-weight: 500; text-align: center; }
.home-project-showcase__subtitle{ color: var(--text-color-light); font-size: 20px; text-align: center; margin-top: 28px; }

/* ===== HOME: CASE STUDY (Figma spacing) ===== */
.home-case-study{ position: relative; padding-top: 70px; }
.home-case-study__title{ font-family: 'Patrician', serif; font-size: 60px; text-align: center; font-weight: 400; word-spacing: -15px; }
.home-case-study__eyebrow{ color: var(--text-color-light); font-weight: 600; font-size: 20px; margin-bottom: 15px; }
.home-case-study__heading{ font-size: 40px; font-weight: 600; line-height: 1.25; }
.home-case-study__divider{ height: 1px; background: #EBEBEB; width: 534px; margin: 28px 0 24px 0; }
.home-case-study__chips {
  display: flex;
  flex-wrap: wrap;              /* Allow multiple rows */
  gap: 14px 20px;                /* Same row/column gap as grid */
  margin-top: 0;
  margin-bottom: 24px;
  align-items: flex-start;       /* Matches grid's align-items: start */
  width: 534px;
}
/* .chip{ background: var(--tag-background-color); border-radius: 30px; padding: 14px 20px; font-size: 14px; height: 46px; text-align: center; align-items: center; display: flex;} */
.chip{
  background: var(--tag-background-color);
  border-radius: 30px;
  padding: 0 20px;              /* No vertical padding */
  font-size: 14px;
  height: 46px;
  line-height: 46px;            /* Matches height for vertical centering */
  text-align: center;
}
.home-case-study__tools{ font-size: 14px; margin-top: 38px; }
.home-case-study__divider-tools{ height: 1px; background: #EBEBEB; width: 534px; margin: 28px 0 0 0; }
.home-case-study__desc{ margin-top: 50px; max-height: 144px; font-size: 20px; line-height: normal; }
.home-case-study__cta{ display: inline-flex; align-items: center; justify-content: center; background: #000; color: #fff; border-radius: 30px; height: 46px; padding: 0 28px; font-weight: 600; }
/* Exact spacing between description and CTA */
.home-case-study__cta-row{ margin-top: 38px; }
.mt-28{ margin-top: 28px; }
.mt-48{ margin-top: 48px; }
.mt-0{ margin-top: 0px !; }
.mt-90{margin: 100px;}
.mt-100{margin: 100px;}
.mt-150{margin-top: 150px;}
.mt-53{margin-top: 53px;}

/* Left image inside left column to match Figma placement */
.home-case-study__left-image{ position: relative; margin-top: 48px; }
.home-case-study__left-img{ width: 100%; max-width: 534px; border-radius: 28px; display: block; }

/* Image composition per Figma */
.home-case-study__images{ position: relative; height: 387px; overflow: visible; align-self: end; display: flex; justify-content: flex-start; align-items: flex-end; gap: 30px; }
.home-case-study__img-phone{ position: relative; width: 339px; object-fit: cover; border-radius: 40px; }
.home-case-study__img-appicon{ position: relative; width: 307px; object-fit: cover; border-radius: 40px; }

/* ===== HOME: CREATIVE HIGHLIGHTS (Figma-specific) ===== */
.creative-highlights .home-case-study__title{ font-size: 60px; font-weight: 400; text-align: center; }
.creative-highlights .home-case-study__eyebrow{ color: #656565; font-size: 20px; font-weight: 600; margin-bottom: 15px; }
.creative-highlights .home-case-study__heading{ font-size: 40px; font-weight: 600; line-height: 1.25; }
.creative-highlights .home-case-study__divider{ width: 535px; height: 1px; background: var(--light-grey); margin: 28px 0 24px 0; }
.creative-highlights .home-case-study__tools{ font-size: 14px; margin-top: 24px; }
.creative-highlights .home-case-study__divider-tools{ width: 535px; height: 1px; background: var(--light-grey); margin-top: 24px; }
.creative-highlights .home-case-study__desc{ font-size: 20px; margin-top: 50px; max-width: 675px; }
.creative-highlights .home-case-study__cta-row{ margin-top: 50px; }
.creative-highlights .home-case-study__cta{ height: 46px; padding: 0 28px; border-radius: 30px; font-weight: 600; }
.creative-highlights .creative-highlights__main-image{ width: 685.5px; height: auto; display: block; }
/* For Creative Highlights rows that use a single hero image on the right */
.creative-highlights .home-case-study__images{ height: auto; display: block; overflow: visible; }
/* Kopčianka: two images side-by-side on the left within Creative Highlights */
.kopcianka-left-images{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.kopcianka-left-images .home-case-study__left-img{ width: 100%; height: auto; display: block; }
/* Removed responsive single-column fallback for fixed layout */

/* Kopčianka row: match Figma proportions — left text column 5, right image column 7 */
.kopcianka-row .col-span-12.lg\:col-span-5{ max-width: 534px; }
.kopcianka-row .home-case-study__divider,
.kopcianka-row .home-case-study__chips,
.kopcianka-row .home-case-study__divider-tools{ width: 534px; }
.kopcianka-row .home-case-study__desc{ max-width: 675px; }

/* ===== EDI CASE STUDY ===== */
.edi-phone { padding-top: 100px; }
.edi-phone-bg{
  width: 100%;
  height: 1037px;
  background-image: url('../images/casestudy/13004e1e0f376b41ba158f48f8fe3eae31572229.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.edi-quote__text{
  font-size: 40px;
  line-height: 1.25;
  max-width: 1325px; /* container width to match site grid */
  margin: 0 auto;
  margin-top: 60px;
}

.edi__section-title{
  color: #08422a;
  font-size: 40px;
  font-weight: 700;
}

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

.edi-label{
  color: #656565;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.edi-problem-title{
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.edi-problem-text p, .edi-solution-text p{ color: #656565; font-size: 20px; }
.edi-problem-text{ max-width: 759px; }
.edi-solution-text{ max-width: 761px; }

.edi-illustration-img{ width: 100%; height: auto; }

.rounded-20{ border-radius: 20px; }

/* EDI: precise widths per Figma */
.edi__overview-text{ max-width: 706px; margin: 0 auto; }
.edi__tags-wrap{ width: 1020px; max-width: 100%; margin: 0 auto; }

/* EDI: feature cards (646 x 244) */
.edi-card{
  background-color: var(--secondary-color);
  padding: var(--spacing-md);
  border-radius: 20px;
  box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 646px;
  min-height: 244px;
  margin-left: auto;
  margin-right: auto;
}

/* EDI: solutions side visual block */
.edi-solution-card{
  width: 420px;
  height: 395px;
  background: #F5F5F5; /* neutral-100 approximation */
  border-radius: 20px;
}

.edi-course-app-section{
  margin-top: 250px;
}

.edi-logo-branidng-img{
  width: 915.49px;
  height: 812.37px;
  margin-top: 90px;
  text-align: center;
}

.edi-branidng-img{
  width: 100%;
  margin-top: 90px;
  text-align: center;
}

.edi-widget{
  border-radius: 20px;
  background-color: #FFFFFF;
  font-weight: 400;
  padding-top: 35px;
  padding-left: 60px;
  padding-right: 60px;
  color: #656565;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  height: 244px;

}

.edi-widget-title{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.edi-widget-description{
  font-size: 16px;
  line-height: 1.5;
}

.edi-widget-description_subtitle{
  font-weight: 600;
}


.edi__section-description{
  width: 700px;
}

.edi-problem-solution-img{
  width: 90%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.edi-research-img,.edi-define-img,.edi-research-img{
  width: 90%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.edi-design-process-img,.edi-define-img{
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.edi-emphatize-img {
 
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.edi-analysis-img{
  max-width: 565px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.edi-plus-img{
  width: 690px;
}

.about-text-table{
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  border-top: 2px solid #EBEBEB;
  border-bottom: 2px solid #EBEBEB;
  margin-top: 20px;
}

.edi__design-process-title{
  color: #000000;
}

.edi-visual-img{
  width: 1326px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.edi-typo-img{
  width: 1325px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.edi-grid-img{
  width: 554px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.edi-mockup-img{
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.edi-custom-illustration-img{
    width: 325px;
    margin-top: 20px;
}

.edi-custom-illustration-gif-img{
  width: 390px;
  height: 811px;
}

/* User Flow image: align left with inner container content (after padding) and bleed to viewport right only */
.edi-user-flow-img{
  display:block;
  width:100%; /* base: just fill container */
  height:auto;
  position:relative;
}


/* Wrapper utility if needed for future adjustments */
.edi-user-flow-wrapper{ position: relative; overflow: visible; }

.bg-black{
  background-color: #000000;
  color: #FFFFFF;
  padding-bottom: 150px;
}

.color-white{
  color: white;
}

.about-page{padding-top:140px;max-width:874px;width:100%;margin:0 auto;}
.about-page .container{max-width:874px;min-width:0;width:100%;margin:0 auto;padding:0;}
.about-hero__inner{max-width:100%;}
.about-name{font-size:28px;font-weight:600;margin:0 0 18px;color:#000;}
.about-intro{font-size:20px;line-height:1.5;color:#565656;margin:0 0 56px;font-weight:300;}
.about-accordion{max-width:100%;}
.accordion-item{border-bottom:1px solid #EBEBEB;}
.accordion-item + .accordion-item{border-top:1px solid #EBEBEB;} /* ensure visible divider when previous panel open */
.accordion-trigger{padding:28px 0;}
.accordion-row{display:flex;align-items:center;justify-content:space-between;width:100%;padding:28px 0;}
.accordion-title{font-size:20px;font-weight:600;cursor:pointer;}
/* Animated accordion panels */
.accordion-panel{overflow:hidden;height:0;opacity:0;padding:0;transition:height .38s cubic-bezier(.4,0,.2,1), opacity .35s ease;} /* shorter height ease */
.accordion-panel.is-open{opacity:1;}
.accordion-panel__inner{padding:0 0 32px;}
@media (prefers-reduced-motion: reduce){.accordion-panel{transition:none !important;}}

.accordion-toggle{cursor:pointer;}
.accordion-toggle:focus{outline:none;}
.accordion-toggle .accordion-icon-img{width:28px;height:28px;}

#work{scroll-margin-top:150px;} /* ensure section not hidden under fixed header when using native hash navigation */


