:root {
    /* ── Fonts ── */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Manrope', sans-serif;
    --font-script:  'Allura', cursive;

    /* ── Brand Colors ── */
    --cream:        #FFF9F7;
    --cream-dark:   #F3D8C7;
    --pink:         #F2C9D2;
    --pink-light:   #F7DDE4;
    --brown:        #3C302C;
    --brown-light:  #373433;

    /* ── Supporting Colors ── */
    --sage:         #D7E2D8;
    --blue:         #D9E4F2;
    --lavender:     #E5DEF0;
    --peach:        #F3D8C7;

    /* ── Semantic ── */
    --bg:           #FFF9F7;
    --ink:          #373433;
    --muted:        #6B5E5A;
    --btn-bg:       #E49DB1;
    --btn-hover:    #D98AA0;
    --accent:       #E49DB1;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden;
  }

  /* SCROLL TO TOP */
  #scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    background: var(--btn-bg);
    color: white; border: none;
    border-radius: 8px; font-size: 18px;
    cursor: pointer; z-index: 999;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  #scroll-top:hover { background: var(--btn-hover); }

  /* ── HERO SPLASH ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 60px 40px;
    background: var(--cream);
  }

  .hero-logo {
    width: clamp(400px, 60vw, 780px);
    animation: fadeIn 1.2s ease forwards;
  }

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

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
  }

  .hero-arrow {
    margin-top: 40px;
    color: var(--ink);
    font-size: 28px;
    animation: bounce 1.8s infinite;
  }

  @keyframes bounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }

  /* ── INTRO ── */
  #intro {
    padding: 80px 8vw;
    background: var(--cream);
  }

  .intro-flex {
    max-width: 1100px;
    display: flex; 
    align-items: center;

  }

  .intro-text { flex: 1; }

  .intro-hello {
    font-family: var(--font-script);
    font-size: clamp(64px, 6vw, 110px);
    color: var(--btn-bg);
    line-height: 1.1;
  }

  .intro-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(90px, 6vw, 180px);
    color: var(--ink);
    line-height: 0.9;
    margin-top: -10px;
  }

  .intro-meta {
    margin-top: 30px;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
  }

  .intro-social {
    display: flex; gap: 22px; margin-top: 28px;
    align-items: center;
  }

  .intro-social a {
    color: var(--ink); font-size: 28px;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
  }

  .intro-social a:hover { color: var(--btn-hover); transform: scale(1.15); }

  .btn {
    display: inline-block;
    margin-top: 32px;
    padding: 18px 48px;
    background: var(--btn-bg);
    color: white; border-radius: 50px;
    font-size: 17px; font-weight: 500;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    border: none; cursor: pointer;
    font-family: var(--font-body);
  }

  .btn:hover { background: var(--btn-hover); transform: translateY(-2px); }

  .intro-photo {
    flex: 0 0 480px;
    height: 540px;
    background: linear-gradient(145deg, var(--pink-light) 0%, var(--cream-dark) 100%);
    border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 64px;
  }

  /* ── SECTION BASE ── */
  .section { padding: 80px 40px; }
  .inner { max-width: 1200px; margin: 0 auto; }

  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 54px);
    color: var(--ink);
    margin-bottom: 44px;
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .service-card {
    text-align: center;
    background: var(--cream);
    border-radius: 20px;
    padding: 32px 20px 28px;
    border: 1.5px solid var(--pink-light);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(242,201,210,0.5);
  }

  .service-icon-wrap {
    width: 80px; height: 80px;
    background: var(--brown);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
  }

  .service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
  }

  .service-icon-wrap svg {
    width: 40px; height: 40px;
    color: var(--cream);
  }

  .service-pill {
    display: inline-block;
    padding: 8px 18px;
    border: 2px dashed var(--btn-bg);
    border-radius: 50px;
    background: transparent;
    color: var(--btn-bg);
    font-size: 13px; font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-family: var(--font-body);
  }

  .service-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
  }

  /* ── WORK GRID ── */
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .work-item {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #c8d0d8, #dfe5e9);
    border-radius: 10px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 38px; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.13);
  }

  /* ── APPROACH BENTO ── */
  #approach .section-title {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0;
  }

  .bento-outer {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 16px;
    align-items: stretch;
  }

  .bento-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .bento-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
  }

  .bento-card {
    border-radius: 20px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .bento-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  }

  .bento-card.lavender { background: var(--lavender); }
  .bento-card.gold     { background: var(--sage); }
  .bento-card.orange   { background: var(--brown); }
  .bento-card.blue     { background: var(--blue); }
  .bento-card.lime     { background: var(--pink-light); }
  .bento-card.sand     { background: var(--peach); }

  .bento-plus {
    position: absolute;
    top: 16px; right: 16px;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    line-height: 1;
  }

  .bento-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }

  .bento-icon svg { width: 80px; height: 80px; opacity: 0.85; }

  .bento-label {
    font-family: var(--font-heading);
;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.15;
    margin-top: 8px;
  }

  .bento-card.lavender .bento-label { color: var(--ink); }
  .bento-card.gold     .bento-label { color: var(--ink); }
  .bento-card.orange   .bento-label { color: var(--cream); }
  .bento-card.blue     .bento-label { color: var(--ink); }
  .bento-card.lime     .bento-label { color: var(--ink); }
  .bento-card.sand     .bento-label { color: var(--ink); }

  .bento-card.blue {
    height: 500px;
    flex-shrink: 0;
    justify-content: flex-end;
  }

  .bento-photo-blob {
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 160px; height: 160px;
    border-radius: 50% 40% 55% 45% / 45% 55% 40% 60%;
    background: linear-gradient(145deg, #e8e0d0, #d0c8b8);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .bento-photo-blob svg { width: 60px; height: 60px; color: #a09080; opacity: 0.5; }

  .bento-dots {
    position: absolute;
    bottom: 100px; left: 18px;
    display: flex; gap: 5px;
  }

  .bento-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brown);
    opacity: 0.7;
  }

  @media (max-width: 960px) {
    .bento-outer { grid-template-columns: 1fr; }
    .bento-left { flex-direction: row; flex-wrap: wrap; }
    .bento-card.blue { min-height: 260px; flex: 1 1 200px; }
    .bento-right { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 540px) {
    .bento-right { grid-template-columns: 1fr; }
  }

  /* ── BLOG ── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--pink-light);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(242,201,210,0.5);
  }

  .blog-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
  }

  .blog-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .blog-card:hover .blog-thumb img { transform: scale(1.04); }

  .blog-thumb-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--peach) 100%);
    display: flex; align-items: center; justify-content: center;
  }

  .blog-thumb-placeholder svg {
    width: 48px; height: 48px;
    color: var(--ink);
    opacity: 0.5;
  }

  .blog-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--btn-bg);
    margin-bottom: 10px;
    font-weight: 500;
  }

  .blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .blog-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
  }

  .blog-read-more {
    display: inline-block;
    align-self: flex-start;
    padding: 9px 22px;
    border: 2px dashed var(--btn-bg);
    border-radius: 50px;
    color: var(--btn-bg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.25s, color 0.25s;
    font-family: var(--font-body);
  }

  .blog-read-more:hover {
    background: var(--btn-hover);
    border-color: var(--btn-hover);
    color: white;
  }

  /* ── CONNECT ── */
  .connect-flex {
    display: flex; align-items: center; gap: 80px;
  }

  .connect-left { flex: 1; }

  .connect-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    color: var(--ink); margin-bottom: 30px;
  }

  .connect-pill {
    display: block;
    width: fit-content;
    margin-bottom: 16px;
    padding: 12px 28px;
    border: 2px dashed var(--btn-bg);
    border-radius: 50px;
    color: var(--btn-bg); text-decoration: none;
    font-size: 15px; font-weight: 500;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: var(--font-body);
  }

  .connect-pill:hover { background: var(--btn-hover); border-color: var(--btn-hover); color: white; }

  .connect-photo {
    flex: 0 0 500px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #c8d0d8, #dfe5e9);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--cream-dark);
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
    color: var(--muted);
  }

  footer a { color: var(--btn-bg); text-decoration: none; }

  /* ── REVEAL ── */
  .reveal {
    opacity: 1; transform: none;
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.visible { opacity: 1; transform: none; }

  /* ── SECTION BACKGROUNDS ── */
  #services  { background: var(--cream-dark); }
  #approach  { background: white; }
  #connect   { background: var(--cream-dark); }

  /* ── APPROACH TITLE SPACING ── */
  #approach .section-title { margin-bottom: 16px; }

  /* ── BENTO CARD VARIANTS ── */
  .bento-card.dark-orange        { background: var(--pink); }
  .bento-card.dark-orange .bento-label { color: var(--ink); }

  .bento-plus.on-lime {
    border-color: rgba(60,48,44,0.3);
    color: rgba(60,48,44,0.4);
  }

  .bento-plus.on-sand {
    border-color: rgba(60,48,44,0.3);
    color: rgba(60,48,44,0.4);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .intro-flex, .connect-flex { flex-direction: column; gap: 40px; }
    .intro-photo, .connect-photo { flex: none; width: 100%; max-width: 480px; height: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
  }

  .hide {
    display: none;
  }