/* Gil Artworks — static landing page */

:root {
  --bg: #fbfbfc;
  --panel: #f2f2f4;
  --ink: #2d2b33;
  --muted: #6c6a73;
  --card: #ffffff;
  --shadow: 0 10px 22px rgba(25, 23, 34, 0.12);
  --softShadow: 0 6px 18px rgba(25, 23, 34, 0.08);
  --radius-lg: 28px;
  --radius-xl: 38px;
  --max: 1200px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: 16px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--softShadow);
  transform: translateY(-150%);
  transition: transform 180ms ease;
  z-index: 50;
}

.skip:focus {
  transform: translateY(0);
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  background: rgba(251, 251, 252, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 43, 51, 0.06);
  z-index: 20;
}

.topbar__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 14px;
  letter-spacing: 0.2px;
  color: rgba(45, 43, 51, 0.85);
}

.social {
  display: flex;
  gap: 14px;
}

.social__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  transition: background 160ms ease, transform 160ms ease;
}

.social__icon:hover {
  background: rgba(45, 43, 51, 0.06);
  transform: translateY(-1px);
}

.social__icon svg {
  width: 18px;
  height: 18px;
  fill: rgba(45, 43, 51, 0.86);
}

/* Hero */
.hero {
  padding: 40px 0 22px;
}

.hero__title {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.2px;
  color: rgba(45, 43, 51, 0.92);
}

/* Intro */
.intro {
  background: var(--panel);
  padding: 64px 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 56px;
}

.artcard {
  width: 320px;
  margin-left: 12px;
  /* Remove the white frame; keep it clean like Wix */
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.artcard__img {
  width: 100%;
  height: 390px;
  border-radius: 10px;
  object-fit: cover;
  object-position: 50% 35%;
  box-shadow: 0 14px 30px rgba(25, 23, 34, 0.16);
}

.intro__copy {
  text-align: center;
  padding: 0 10px;
}

.intro__name {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 52px);
}

.intro__copy p {
  margin: 0;
  color: rgba(45, 43, 51, 0.9);
  font-size: 20px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.1px;
}

/* Collage */
.collage {
  background: var(--panel);
  padding: 46px 0 68px;
}

.collage__wrap {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.2fr;
  align-items: center;
  justify-items: center;
  gap: 22px;
  /* simpler + consistent: no absolute positioning */
}

.tile {
  position: relative;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--softShadow);
  width: 100%;
  max-width: 100%;
}

.tile--left {
  height: 260px;
  z-index: 1; /* smallest */
  border-radius: 40px;
  transform: translateX(18px); /* gentle overlap under center */
}

.tile--center {
  height: 400px;
  z-index: 3; /* biggest */
  border-radius: 58px;
}

.tile--right {
  height: 320px;
  z-index: 2; /* medium */
  border-radius: 46px;
  transform: translateX(-10px); /* subtle overlap under center */
}

/* Contact */
.contact {
  background: var(--panel);
  padding: 54px 0 70px;
}

.contact__head {
  text-align: center;
  margin-bottom: 26px;
}

.contact__title {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 20px;
  color: rgba(45, 43, 51, 0.9);
}

.contact__subtitle {
  margin: 0;
  color: rgba(45, 43, 51, 0.62);
  font-size: 15px;
}

.form {
  width: min(460px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(45, 43, 51, 0.06);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(25, 23, 34, 0.06);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field__label {
  font-size: 12px;
  color: rgba(45, 43, 51, 0.64);
}

.field__input {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(45, 43, 51, 0.10);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field__input--textarea {
  height: auto;
  resize: vertical;
  min-height: 104px;
}

.field__input:focus {
  border-color: rgba(45, 43, 51, 0.28);
  box-shadow: 0 0 0 4px rgba(45, 43, 51, 0.08);
}

.btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(45, 43, 51, 0.22);
  transition: transform 140ms ease, filter 140ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(45, 43, 51, 0.92);
  box-shadow: none;
  border: 1px solid rgba(45, 43, 51, 0.10);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  filter: none;
}

.contact-actions {
  width: min(520px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.contact-actions .btn {
  /* Make contact CTAs simpler + consistent */
  box-shadow: none;
  font-weight: 500;
}

.contact-actions__note {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  color: rgba(45, 43, 51, 0.65);
  text-decoration: none;
  margin-top: -2px;
}

.contact-actions__note:hover {
  color: rgba(45, 43, 51, 0.85);
  text-decoration: underline;
}

.form__note {
  margin: 12px 0 0;
  min-height: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(45, 43, 51, 0.72);
}

.form__note.is-error {
  color: #8b2b2b;
}

.form__note.is-ok {
  color: #1f6f3b;
}

/* Footer art */
.footer-art {
  background: var(--panel);
  padding: 12px 0 10px;
}

.footer-art__inner {
  display: grid;
  place-items: center;
  gap: 10px;
}

.footer-art__img {
  width: 260px;
  height: 210px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--softShadow);
}

.footer-art__social {
  display: flex;
  gap: 14px;
}

.footer-art__name {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: rgba(45, 43, 51, 0.9);
  margin-top: -2px;
}

.footer {
  background: var(--panel);
  border-top: 1px solid rgba(45, 43, 51, 0.25);
  padding: 12px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(45, 43, 51, 0.65);
}

/* Responsive */
@media (max-width: 980px) {
  .intro__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 26px;
  }

  .artcard {
    margin-left: 0;
  }

  .collage__wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tile--left {
    width: min(520px, 100%);
    height: 260px;
    transform: none;
  }

  .tile--center {
    width: min(720px, 100%);
    height: 380px;
  }

  .tile--right {
    width: min(600px, 100%);
    height: 320px;
    transform: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .artcard {
    width: 100%;
    max-width: 340px;
  }

  .artcard__img {
    height: 340px;
  }

  .tile--left,
  .tile--right {
    width: 92%;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
