/* ===== FOUNDATION ===== */
:root {
     --beige: #dcc9b6;
     --beige-light: #ede0d4;
     --beige-dark: #c9b09a;
     --ink: #191A1E;
     --ink-muted: rgba(25, 26, 30, 0.55);
     --white: #ffffff;
     --off-white: #f7f1eb;
     --accent: #191A1E;
     --font-display: 'Cormorant Garamond', Georgia, serif;
     --font-body: 'DM Sans', Helvetica, sans-serif;
     --radius: 10px;
     --transition: all 0.3s ease;
}

html {
     scroll-behavior: smooth;
}

*, *::before, *::after {
     box-sizing: border-box;
}

body {
     margin: 0;
     font-family: var(--font-body);
     font-size: 16px;
     color: var(--ink);
     background-color: var(--beige);
     line-height: 1.6;
}

img {
     width: 100%;
     display: block;
}

h1, h2, h3, h4, h5, h6 {
     margin: 0;
     line-height: 1.1;
}

p {
     margin: 0 0 1rem;
     color: var(--ink-muted);
     font-weight: 300;
}

a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
}


/* ===== TYPOGRAPHY ===== */
.section-label {
     display: block;
     font-size: 0.7rem;
     font-weight: 500;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--ink-muted);
     margin-bottom: 1rem;
}

.text-link {
     font-size: 0.85rem;
     font-weight: 500;
     letter-spacing: 0.05em;
     color: var(--ink);
     display: inline-flex;
     align-items: center;
     gap: 4px;
}

.text-link span {
     display: inline-block;
     transition: transform 0.3s;
}

.text-link:hover span {
     transform: translateX(4px);
}

.round-corners {
     border-radius: var(--radius);
}


/* ===== BUTTONS ===== */
.primary-btn {
     background-color: var(--ink);
     color: var(--white);
     border: 1.5px solid var(--ink);
     padding: 12px 32px;
     font-size: 0.8rem;
     font-family: var(--font-body);
     font-weight: 500;
     letter-spacing: 0.08em;
     cursor: pointer;
     border-radius: 50px;
     transition: var(--transition);
}

.primary-btn:hover {
     background-color: transparent;
     color: var(--ink);
}

.secondary-btn {
     background-color: transparent;
     color: var(--ink);
     border: 1.5px solid var(--ink);
     padding: 12px 32px;
     font-size: 0.8rem;
     font-family: var(--font-body);
     font-weight: 500;
     letter-spacing: 0.08em;
     cursor: pointer;
     border-radius: 50px;
     transition: var(--transition);
}

.secondary-btn:hover {
     background-color: var(--ink);
     color: var(--white);
}


/* ===== HEADER ===== */
header {
     position: fixed;
     top: 0;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 5%;
     z-index: 998;
     background-color: transparent;
     transition: var(--transition);
}

.header-solid {
     background-color: rgba(220, 201, 182, 0.95);
     backdrop-filter: blur(8px);
     border-bottom: 1px solid rgba(25, 26, 30, 0.1);
}

.site-logo {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 600;
     letter-spacing: 0.02em;
     color: var(--ink);
}

nav {
     display: none;
     gap: 2.5rem;
     align-items: center;
}

nav a {
     font-size: 0.8rem;
     font-weight: 400;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--ink);
     opacity: 0.7;
     transition: var(--transition);
}

nav a:hover {
     opacity: 1;
}

@media (min-width: 800px) {
     nav {
          display: flex;
     }
}


/* ===== MOBILE MENU ===== */
.mobile-nav-input {
     display: none;
}

.menu--1 label {
     display: block;
     cursor: pointer;
     position: fixed;
     width: 25vw;
     height: 25vw;
     max-width: 70px;
     max-height: 70px;
     top: -5px;
     right: 0;
     z-index: 999;
     padding: 0 10px;
}

.menu--1 path {
     fill: none;
     stroke: var(--ink);
     stroke-width: 3;
     stroke-linecap: round;
     stroke-linejoin: round;
     --length: 24;
     --offset: -38;
     stroke-dasharray: var(--length) var(--total-length);
     stroke-dashoffset: var(--offset);
     transition: all .8s cubic-bezier(.645, .045, .355, 1);
}

.menu--1 circle {
     fill: transparent;
     opacity: 0;
}

.cross input:checked+svg .line--1,
.cross input:checked+svg .line--3 { --length: 22.627416998; }
.cross input:checked+svg .line--2 { --length: 0; }

.menu--1 .line--1,
.menu--1 .line--3 { --total-length: 126.64183044433594; }
.menu--1 .line--2 { --total-length: 70; }
.menu--1 input:checked+svg .line--1,
.menu--1 input:checked+svg .line--3 { --offset: -94.1149185097; }
.menu--1 input:checked+svg .line--2 { --offset: -50; }

#nav.mobile-full {
     display: flex;
     position: fixed;
     top: 0;
     right: -110%;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100vh;
     width: 100vw;
     background-color: var(--off-white);
     z-index: 997;
     font-size: 1.8em;
     gap: 2rem;
     transition: right 0.8s cubic-bezier(.645, .045, .355, 1);
}

#nav.mobile-full.show-nav-mob {
     right: 0;
}

#nav.mobile-full a {
     font-family: var(--font-display);
     font-size: 1.8rem;
     opacity: 1;
     text-transform: none;
     letter-spacing: 0.02em;
}

@media (min-width: 800px) {
     .menu--1 {
          display: none;
     }
     #nav.mobile-full {
          position: fixed;
          top: 0;
          right: 0;
          flex-direction: row;
          height: auto;
          width: auto;
          background-color: transparent;
          font-size: 1em;
          gap: 2.5rem;
          padding: 18px 5%;
          justify-content: flex-end;
          align-items: center;
     }
     #nav.mobile-full a {
          font-family: var(--font-body);
          font-size: 0.8rem;
          text-transform: uppercase;
          letter-spacing: 0.08em;
     }
}


/* ===== HERO ===== */
.hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 120px 5% 80px;
     background-color: var(--beige);
}

.hero-inner {
     max-width: 700px;
     width: 100%;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
}

.hero-text {
     width: 100%;
}

.hero-label {
     display: block;
     font-size: 0.7rem;
     font-weight: 500;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--ink-muted);
     margin-bottom: 1.5rem;
}

.hero-title {
     font-family: var(--font-display);
     font-size: clamp(3.5rem, 8vw, 7rem);
     font-weight: 300;
     line-height: 0.95;
     color: var(--ink);
     margin-bottom: 1.5rem;
}

.hero-sub {
     font-size: 0.95rem;
     line-height: 1.7;
     color: var(--ink-muted);
     max-width: 420px;
     margin: 0 auto 2rem;
}

.hero-social {
     display: flex;
     gap: 1.5rem;
     margin-bottom: 2.5rem;
     justify-content: center;
}

.social-link {
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--ink-muted);
     border-bottom: 1px solid currentColor;
     padding-bottom: 2px;
     transition: var(--transition);
}

.social-link:hover {
     color: var(--ink);
}

.hero-btns {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
     justify-content: center;
}

.hero-image {
     flex: 0 0 auto;
     width: min(340px, 100%);
}

.hero-image img {
     border-radius: 200px 200px 200px 200px;
     object-fit: cover;
     aspect-ratio: 3/4;
}




/* ===== SKILLS ===== */
.skills-section {
     padding: 80px 5%;
     background-color: var(--off-white);
}

.skills-inner {
     max-width: 1200px;
     margin: 0 auto;
}

.skills-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-top: 0.5rem;
}

.skill-item {
     padding: 2rem 1.5rem;
     background: var(--beige-light);
     border-radius: var(--radius);
     transition: var(--transition);
}

.skill-item:hover {
     background: var(--beige-dark);
}

.skill-icon {
     margin-bottom: 1rem;
     opacity: 0.7;
}

.skill-item h4 {
     font-family: var(--font-display);
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
}

.skill-item p {
     font-size: 0.85rem;
     line-height: 1.6;
     margin: 0;
}


/* ===== REEL ===== */
.reel-section {
     padding: 80px 5%;
     background-color: var(--beige);
}

.reel-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     gap: 4rem;
     flex-wrap: wrap;
}

.reel-text {
     flex: 1;
     min-width: 240px;
}

.reel-text h2 {
     font-family: var(--font-display);
     font-size: clamp(2rem, 4vw, 3.5rem);
     font-weight: 300;
     margin-bottom: 1rem;
}

.reel-text p {
     max-width: 300px;
     margin-bottom: 1.5rem;
}

.reel-video {
     flex: 0 0 auto;
     width: min(500px, 100%);
}

.video-placeholder {
     aspect-ratio: 16/9;
     background-color: var(--ink);
     border-radius: var(--radius);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 1rem;
     color: var(--white);
     cursor: pointer;
     transition: var(--transition);
}

.video-placeholder:hover {
     opacity: 0.85;
}

.play-btn {
     width: 56px;
     height: 56px;
     border: 2px solid rgba(255,255,255,0.6);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
}

.video-placeholder span {
     font-size: 0.7rem;
     letter-spacing: 0.2em;
     font-weight: 500;
     opacity: 0.6;
}

@media (max-width: 799px) {
     .reel-inner {
          flex-direction: column;
     }
     .reel-video {
          width: 100%;
     }
}


/* ===== PROJECTS ===== */
.projects-section {
     padding: 80px 5%;
     background-color: var(--off-white);
}

.projects-header {
     max-width: 1200px;
     margin: 0 auto 2rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
}

.projects-header .section-label {
     margin: 0;
}

.grid-wrapper {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr;
     gap: 0;
}

.grid-item {
     position: relative;
     overflow: hidden;
     display: block;
     border: 0.5px solid rgba(25, 26, 30, 0.15);
}

.grid-item figure {
     margin: 0;
     aspect-ratio: 4/3;
     overflow: hidden;
}

.grid-item figure img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
}

.grid-item:hover figure img {
     transform: scale(1.04);
}

.grid-item-text {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: calc(100% - 90px);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 1.5rem;
     background: linear-gradient(to top, rgba(25,26,30,0.75) 0%, transparent 60%);
     color: var(--white);
}

.grid-item-text h4 {
     font-family: var(--font-display);
     font-size: 1.5rem;
     font-weight: 400;
}

.grid-item-text h5 {
     font-size: 0.75rem;
     font-weight: 400;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     opacity: 0.75;
     margin-top: 2px;
}

.grid-item-desc {
     padding: 1.25rem 1.5rem;
     background: var(--beige-light);
     height: 90px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
}

.grid-item-desc p {
     font-size: 0.82rem;
     margin: 0;
     line-height: 1.5;
     flex: 1;
}

.view-project {
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.05em;
     white-space: nowrap;
     color: var(--ink);
     opacity: 0.6;
     transition: var(--transition);
}

.grid-item:hover .view-project {
     opacity: 1;
}

@media (min-width: 700px) {
     .grid-wrapper {
          grid-template-columns: repeat(2, 1fr);
     }
}

@media (min-width: 1024px) {
     .grid-wrapper {
          grid-template-columns: repeat(3, 1fr);
     }
}


/* ===== ABOUT ===== */
.about-section {
     padding: 100px 5%;
     background-color: var(--beige);
}

.about-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     gap: 5rem;
     flex-wrap: wrap;
}

.about-image {
     flex: 0 0 auto;
     width: min(320px, 100%);
     margin: 0;
}

.about-image img {
     aspect-ratio: 3/4;
     object-fit: cover;
     border-radius: var(--radius);
}

.about-text {
     flex: 1;
     min-width: 280px;
}

.about-text h2 {
     font-family: var(--font-display);
     font-size: clamp(2rem, 3.5vw, 3rem);
     font-weight: 300;
     margin-bottom: 1.5rem;
}

.about-text p {
     margin-bottom: 1rem;
     line-height: 1.8;
}

.about-text .primary-btn {
     margin-top: 0.5rem;
}

@media (max-width: 799px) {
     .about-inner {
          flex-direction: column;
     }
     .about-image {
          width: 240px;
          margin: 0 auto;
     }
}


/* ===== CTA ===== */
.cta-section {
     padding: 100px 5%;
     background-color: var(--ink);
     color: var(--white);
     text-align: center;
}

.cta-section h2 {
     font-family: var(--font-display);
     font-size: clamp(2rem, 4vw, 3.5rem);
     font-weight: 300;
     color: var(--white);
     margin-bottom: 1rem;
}

.cta-section p {
     color: rgba(255,255,255,0.55);
     max-width: 400px;
     margin: 0 auto 2.5rem;
}

.cta-section .primary-btn {
     background: transparent;
     color: var(--white);
     border-color: rgba(255,255,255,0.5);
}

.cta-section .primary-btn:hover {
     background: var(--white);
     color: var(--ink);
     border-color: var(--white);
}


/* ===== FOOTER ===== */
footer {
     background-color: var(--ink);
     padding: 30px 5%;
     border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 1rem;
}

.footer-name {
     font-family: var(--font-display);
     font-size: 1.1rem;
     color: var(--white);
     margin: 0;
     opacity: 0.9;
}

.footer-links {
     display: flex;
     gap: 1.5rem;
}

.footer-link {
     font-size: 0.75rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.45);
     transition: var(--transition);
}

.footer-link:hover {
     color: var(--white);
}

#copyright {
     font-size: 0.75rem;
     color: rgba(255,255,255,0.35);
     margin: 0;
}
/* ===== CENTER 2 PROJECTS PROPERLY ===== */

.grid-wrapper {
     max-width: 900px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
     justify-content: center;
}

@media (max-width: 800px) {
     .grid-wrapper {
          grid-template-columns: 1fr;
     }
}
.about-btns {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
     margin-top: 0.5rem;
}
/* ── Tools & Software ────────────────────────────── */
.tools-section {
     padding: 4rem 0 5rem;
     border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.tools-inner {
     max-width: 960px;
     margin: 0 auto;
     padding: 0 2rem;
}

.tools-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 1.5rem;
}

.tool-pill {
     display: flex;
     align-items: center;
     gap: 9px;
     padding: 7px 15px 7px 10px;
     border: 1px solid rgba(0, 0, 0, 0.11);
     border-radius: 100px;
     background: #ffffff;
     font-family: 'DM Sans', sans-serif;
     font-size: 13px;
     font-weight: 400;
     color: #333;
     transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tool-pill:hover {
     border-color: rgba(0, 0, 0, 0.25);
     box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.tool-icon {
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
}

@media (max-width: 600px) {
     .tool-pill {
          font-size: 12px;
          padding: 6px 12px 6px 9px;
     }
}
