/* ── Tokens ── */
:root {
  --beige:       #f5f0e8;
  --beige-dark:  #ede5d8;
  --beige-mid:   #d9cfc0;
  --brown:       #6b5744;
  --brown-light: #957c6a;
  --text:        #2e2620;
  --text-muted:  #7a6a5e;
  --white:       #fffdf9;
  --radius:      4px;
  --gap:         2rem;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--beige);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
p  { color: var(--text-muted); }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 5vw;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform 0.35s ease, background-color 0.3s ease, border-color 0.3s ease;
}
nav.scrolled {
  background: var(--beige);
  border-bottom-color: var(--beige-mid);
}
nav.hidden { transform: translateY(-100%); }
.nav-logo {
  display: block;
  width: 165px;
  height: 85px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 290px;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -63px;
  margin-top: -38px;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brown); }

/* ── Language switcher ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
  line-height: 1;
}
.lang-btn.active { color: #fff; }
.lang-btn:hover  { color: #fff; }
.lang-sep {
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  line-height: 1;
  pointer-events: none;
}

/* ── Hamburger (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Page wrapper ── */
main { padding-top: 101px; }
main.hero-page { padding-top: 0; }

/* ── Page background image (services, contact) ── */
body.page-bg {
  background: url('/assets/images/hero/home.png') center/cover fixed no-repeat;
}
body.page-bg .contact { background: rgba(237,229,216,0.82); }
body.page-bg .about-text h2,
body.page-bg .about-text .section-label { color: var(--brown); }
body.page-bg .about-text p { color: var(--brown); }
body.page-bg .about-text .divider { background: var(--brown-light); }

/* ── Section base ── */
section {
  padding: 6rem 5vw;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 5vw;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.18);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero h1 { color: var(--brown); margin-bottom: 1.5rem; }
.hero p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--beige-mid);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  color: var(--brown-light);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.tag:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}
.btn {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid var(--brown);
  color: var(--brown);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--brown); color: var(--white); }
.btn-solid {
  background: var(--brown);
  color: var(--white);
}
.btn-solid:hover { background: var(--brown-light); border-color: var(--brown-light); }
.hero .tag {
  background: rgba(255, 253, 249, 0.65);
  border-color: rgba(255, 253, 249, 0.65);
  color: var(--brown);
}
.hero .tag:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}
.hero .btn {
  background: rgba(255, 253, 249, 0.65);
  border-color: rgba(255, 253, 249, 0.65);
  color: var(--brown);
}
.hero .btn:hover { background: rgba(255, 253, 249, 0.85); border-color: rgba(255, 253, 249, 0.85); }
.hero .btn-solid {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}
.hero .btn-solid:hover { background: var(--brown-light); border-color: var(--brown-light); }
.hero-instagram {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 253, 249, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: var(--brown);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.hero-instagram:hover { background: rgba(255, 253, 249, 0.9); }
.hero-instagram svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Story / What we create ── */
.story-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 5vw;
}
.story-left { max-width: 380px; }
.story-left h2 { margin-bottom: 1.25rem; }
.story-left p  { margin-bottom: 2rem; }
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.story-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
}
.story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,14,0.75) 0%, rgba(30,20,14,0.1) 60%, transparent 100%);
}
.story-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1.5rem 1.25rem;
}
.story-card-body h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.story-card-body p {
  color: rgba(255,253,249,0.75);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.story-card-body a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,253,249,0.5);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.story-card-body a:hover { border-color: var(--white); }
@media (max-width: 900px) {
  .story-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-left { max-width: 100%; }
}
@media (max-width: 600px) {
  .story-cards { grid-template-columns: 1fr; }
  .story-card  { aspect-ratio: 4/3; }
}

/* ── Globe Banner ── */
.globe-banner {
  display: block;
  height: 300px;
  padding: 0;
  overflow: hidden;
}
.globe-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.globe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.globe-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,14,10,0.62) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem;
}
.globe-text .section-label { color: rgba(255,253,249,0.7); margin-bottom: 0.75rem; }
.globe-text h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.globe-text p { color: rgba(255,253,249,0.75); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 768px) {
  .globe-banner { height: 220px; }
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  width: 100%;
  background: var(--beige-dark);
}
.about-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-photo-stack img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { margin-bottom: 1rem; }

/* ── Web Design Banner ── */
.web-banner {
  position: relative;
  padding: 6rem 5vw;
  background: url('/assets/images/site.jpg') center/cover no-repeat;
}
.web-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.55);
}
.web-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
}
.web-banner-left h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.25rem;
}
.web-banner-left p { color: rgba(255,253,249,0.75); }
.web-banner-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}
.web-feature { text-align: center; }
.web-icon {
  width: 40px;
  height: 40px;
  color: rgba(255,253,249,0.8);
  margin: 0 auto 0.75rem;
  display: block;
}
.web-feature h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.web-feature p {
  font-size: 0.78rem;
  color: rgba(255,253,249,0.65);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .web-banner-inner { grid-template-columns: 1fr; gap: 3rem; }
  .web-banner-features { grid-template-columns: repeat(2, 1fr); }
}

/* ── Services ── */
.service-card-detail:target {
  scroll-margin-top: 110px;
}
.service-card-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: rgba(245,240,232,0.88);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}
.service-card-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card-info h3 { color: var(--brown); margin-bottom: 0.25rem; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .service-card-detail { grid-template-columns: 1fr; }
  .service-card-photo { min-height: 200px; max-height: 220px; }
}

.services { background: var(--beige-dark); }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.services-header h2 { margin-bottom: 1rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--beige);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  padding: 2rem;
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.5rem; color: var(--brown); }

/* ── About approach section ── */
.about-approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: rgba(237,229,216,0.92);
  min-height: 420px;
}
.about-approach-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw;
}
.about-approach-content h2 { margin-bottom: 0; }
.about-approach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-approach-img-placeholder {
  background: var(--beige-dark);
  width: 100%;
  height: 100%;
  min-height: 420px;
}
@media (max-width: 768px) {
  .about-approach-section { grid-template-columns: 1fr; }
  .about-approach-img-placeholder { min-height: 260px; }
}

/* ── Process cards (about page) ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.process-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.process-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brown);
}
.process-card h3 { margin-bottom: 0.6rem; color: var(--brown); }
.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brown);
  padding: 1.75rem 2.5rem;
  border-radius: var(--radius);
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}
.process-cta p {
  color: var(--beige);
  margin: 0;
}
.process-cta .btn {
  border-color: var(--beige);
  color: var(--beige);
  white-space: nowrap;
  flex-shrink: 0;
}
.process-cta .btn:hover {
  background: var(--beige);
  color: var(--brown);
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-cta { flex-direction: column; text-align: center; }
}

/* ── Highlights Banner ── */
.highlights-banner {
  padding: 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 440px;
  background: var(--beige-dark);
  overflow: hidden;
}
.highlights-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem;
}
.highlights-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0;
}
.highlights-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 100%;
  overflow: hidden;
}
.highlights-mosaic .portfolio-item {
  aspect-ratio: unset;
  border-radius: 0;
  height: 100%;
}
.highlights-mosaic .portfolio-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.highlights-mosaic .portfolio-item:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.highlights-mosaic .portfolio-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.highlights-mosaic .portfolio-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.highlights-mosaic .portfolio-item:nth-child(n+5) { display: none; }
@media (max-width: 900px) {
  .highlights-banner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .highlights-text { padding: 3rem 5vw; }
  .highlights-mosaic { height: 320px; }
}
@media (max-width: 600px) {
  .highlights-mosaic { height: 240px; }
}

/* ── Portfolio ── */
.portfolio-header { text-align: center; max-width: 600px; margin: 0 auto 1rem; }
.portfolio-header h2 { margin-bottom: 0.75rem; }

.filter-bar {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--beige-mid);
  background: none;
  color: var(--text-muted);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--beige-dark);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img,
.portfolio-item:hover video { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,38,32,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
/* Placeholder tile when no media */
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--beige-dark);
  color: var(--beige-mid);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Contact ── */
.contact { background: var(--beige-dark); }
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner h2 { margin-bottom: 1rem; }
.contact-inner > p { margin-bottom: 3rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.phone-row { display: grid; grid-template-columns: 160px 1fr; gap: 1rem; }
.phone-code { width: 100%; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--beige);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--brown-light); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  align-self: flex-start;
  cursor: pointer;
  font-family: var(--font-sans);
}
.form-success {
  display: none;
  padding: 1rem;
  background: var(--beige);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  color: var(--brown);
  text-align: center;
  font-size: 0.9rem;
}

/* ── Footer ── */
footer {
  background: var(--brown);
  color: var(--beige-mid);
  text-align: center;
  padding: 2rem 5vw;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
footer a { color: var(--beige); }

/* ── Divider ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--beige-mid);
  margin: 1.5rem auto;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30,22,18,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--beige);
  font-size: 1.5rem;
  cursor: pointer;
  letter-spacing: 0.1em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    transform: none;
    background: var(--beige);
    border-bottom: 1px solid var(--beige-mid);
    padding: 1.5rem 5vw;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Reduce section vertical padding */
  section { padding: 3.5rem 5vw; }

  /* Hero */
  .hero { padding: 3rem 5vw; }
  .hero-content { padding: 0 0.5rem; }
  .hero-instagram span { display: none; }
  .hero-instagram { gap: 0; padding: 0.55rem; border-radius: 50%; bottom: 1.5rem; left: 1.25rem; }

  /* Web banner */
  .web-banner { padding: 3.5rem 5vw; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/9; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .phone-row { grid-template-columns: 1fr; }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero p { font-size: 1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn, .hero-btns .btn-solid { width: 100%; text-align: center; }
  .web-banner-features { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .highlights-mosaic { height: 200px; }
  .story-cards { grid-template-columns: 1fr; }
}
