/* ===================================================================
   FORWIN DIGITAL AGENCY — style.css
   Based on Kreative by Styleshout (CC BY 3.0)
   Adapted for Forwin, Hong Kong
=================================================================== */

/* ----------------------------------------------------------------
   TABLE OF CONTENTS
   01. Webfonts & Reset
   02. General Styles
   03. Typography
   04. Header / Navigation
   05. Intro / Hero
   06. Services
   07. Portfolio
   08. Journal
   09. About
   10. Testimonials
   11. CTA Banner
   12. Contact
   13. Footer
   14. Animations & Keyframes
   15. Media Queries
------------------------------------------------------------------ */

/* ----------------------------------------------------------------
   01. Webfonts & Reset
------------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
  background: #fff;
}

/* ----------------------------------------------------------------
   02. General Styles
------------------------------------------------------------------ */

:root {
  --accent: #ffce33;
  --accent-dark: #e6b800;
  --dark: #111111;
  --mid: #333333;
  --light: #f5f5f5;
  --text: #555555;
  --white: #ffffff;
  --border: #e0e0e0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--accent-dark); }

ul, ol { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.row { display: flex; flex-wrap: wrap; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title h2 span { color: var(--accent); }
.section-title p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.8;
}
.section-title .separator {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 24px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--dark);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ----------------------------------------------------------------
   03. Typography
------------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

p { margin-bottom: 1.6rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------
   04. Header / Navigation
------------------------------------------------------------------ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#header .logo {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}
#header .logo span { color: var(--accent); }

#nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

#nav-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.3s ease, background 0.3s ease;
}
#nav-menu a:hover,
#nav-menu a.active {
  color: var(--accent);
  background: rgba(255, 206, 51, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ----------------------------------------------------------------
   05. Intro / Hero
------------------------------------------------------------------ */

#intro {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.intro-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,206,51,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,206,51,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.intro-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.intro-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.intro-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 80px 80px;
}

.intro-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 206, 51, 0.3);
}

.intro-content h1 {
  font-size: clamp(3.6rem, 6vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}
.intro-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.intro-content p {
  font-size: 1.7rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.intro-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.intro-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.intro-scroll .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ----------------------------------------------------------------
   06. Services
------------------------------------------------------------------ */

#services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(255, 206, 51, 0.04);
  transition: height 0.3s ease;
}
.service-card:hover {
  border-top-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  position: relative;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-card p {
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.8;
}

/* ----------------------------------------------------------------
   07. Portfolio
------------------------------------------------------------------ */

#portfolio {
  padding: 100px 0;
  background: var(--light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.35s ease;
  padding: 20px;
  text-align: center;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h5 {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.portfolio-overlay .tag {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.portfolio-overlay .view-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.portfolio-overlay .view-btn:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Portfolio Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--white);
  max-width: 680px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-box img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}
.modal-body { padding: 32px 36px 36px; }
.modal-body h4 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--dark);
}
.modal-body p { font-size: 1.4rem; color: var(--text); margin-bottom: 20px; }
.modal-body .category {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  z-index: 10;
  transition: background 0.3s;
}
.modal-close:hover { background: var(--accent); color: var(--dark); }

/* ----------------------------------------------------------------
   08. Journal
------------------------------------------------------------------ */

#journal {
  padding: 100px 0;
  background: var(--white);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.journal-card {
  border-top: 3px solid var(--border);
  padding-top: 28px;
  transition: border-color 0.3s ease;
}
.journal-card:hover { border-top-color: var(--accent); }

.journal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.journal-meta .author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.journal-meta .meta-info { font-size: 1.2rem; }
.journal-meta .meta-info .author { font-weight: 700; color: var(--dark); display: block; }
.journal-meta .meta-info .date { color: #999; }

.journal-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--dark);
}
.journal-card h3 a {
  color: var(--dark);
  transition: color 0.3s ease;
}
.journal-card h3 a:hover { color: var(--accent); }

.journal-card p { font-size: 1.4rem; color: var(--text); margin-bottom: 20px; }

.read-more {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}
.read-more:hover { color: var(--accent); gap: 10px; }

/* ----------------------------------------------------------------
   09. About
------------------------------------------------------------------ */

#about {
  padding: 100px 0;
  background: var(--dark);
}

#about .section-title h2 { color: var(--white); }
#about .section-title p { color: rgba(255,255,255,0.6); }

.about-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.process-step:hover {
  border-color: rgba(255, 206, 51, 0.4);
  background: rgba(255, 206, 51, 0.04);
}

.step-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 206, 51, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Lora', serif;
}
.process-step h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.process-step p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* Team */
.about-team h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s ease, transform 0.3s ease;
  margin-bottom: 18px;
}
.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.team-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ----------------------------------------------------------------
   10. Testimonials
------------------------------------------------------------------ */

#testimonials {
  padding: 100px 0;
  background: var(--accent);
}

#testimonials .section-title h2 { color: var(--dark); }
#testimonials .section-title p { color: rgba(17,17,17,0.7); }
#testimonials .section-title .separator { background: var(--dark); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 32px;
  font-size: 8rem;
  font-family: 'Lora', serif;
  color: rgba(255, 206, 51, 0.25);
  line-height: 1;
}

.testimonial-card p {
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testimonial-author .author-name {
  font-weight: 700;
  color: var(--dark);
  display: block;
  font-size: 1.4rem;
}
.testimonial-author .author-role {
  font-size: 1.2rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------------
   11. CTA Banner
------------------------------------------------------------------ */

#cta {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}
#cta h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
#cta h2 span { color: var(--accent); }
#cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1.6rem;
  margin-bottom: 36px;
}
#cta .btn { margin: 0 8px; }

/* ----------------------------------------------------------------
   12. Contact
------------------------------------------------------------------ */

#contact {
  padding: 100px 0;
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 206, 51, 0.15);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.3rem;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.contact-info p { font-size: 1.4rem; color: var(--text); margin-bottom: 30px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail .info strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-detail .info span {
  font-size: 1.4rem;
  color: var(--text);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.social-links svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----------------------------------------------------------------
   13. Contact
------------------------------------------------------------------ */
.form-group {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
}
.form-group label {
    flex: 1;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 3px;
}
.form-group textarea {
    height: 100px;
}

/* ----------------------------------------------------------------
   13. Footer
------------------------------------------------------------------ */

#footer {
  background: var(--dark);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

#footer .footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#footer .footer-logo span { color: var(--accent); }

#footer p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
#footer a { color: var(--accent); }

/* ----------------------------------------------------------------
   14. Animations
------------------------------------------------------------------ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ----------------------------------------------------------------
   15. Media Queries
------------------------------------------------------------------ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .about-process { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 56%; }

  #header { padding: 0 20px; }

  #nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-top: 2px solid var(--accent);
  }
  #nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  #nav-menu a { padding: 12px 16px; width: 100%; }

  .nav-toggle { display: flex; }

  .intro-content {
    padding: 120px 30px 80px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .about-process { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }

  #footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .intro-actions { flex-direction: column; }
  .intro-actions .btn { text-align: center; }
}
