:root {
  --gigi-ink: #241a1b;
  --gigi-ink-soft: #655a57;
  --gigi-pink: #e84767;
  --gigi-pink-deep: #d9365a;
  --gigi-pink-soft: #fff0f2;
  --gigi-gold: #bd8b43;
  --gigi-gold-light: #dfbe83;
  --gigi-ivory: #fffdf9;
  --gigi-pearl: #f9f5ee;
  --gigi-line: rgba(171, 128, 68, 0.24);
  --gigi-shadow: 0 24px 65px rgba(67, 39, 32, 0.12);
  --gigi-serif: "Bodoni MT", Didot, "Times New Roman", Georgia, serif;
  --gigi-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

html.gigi-web-document {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--gigi-ivory);
}

body.gigi-web-mode {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--gigi-ivory);
  color: var(--gigi-ink);
  font-family: var(--gigi-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.gigi-web-mode #app {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  overflow: clip;
}

body.gigi-web-mode * {
  box-sizing: border-box;
}

body.gigi-web-mode img {
  max-width: 100%;
}

body.gigi-web-mode a,
body.gigi-web-mode button {
  -webkit-tap-highlight-color: transparent;
}

body.gigi-web-mode a:focus-visible,
body.gigi-web-mode button:focus-visible {
  outline: 3px solid rgba(232, 71, 103, 0.32);
  outline-offset: 4px;
}

.gigi-web-shell {
  width: min(1480px, calc(100% - clamp(40px, 8vw, 140px)));
  margin-inline: auto;
}

.gigi-web-skip {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 12px;
  padding: 11px 17px;
  border-radius: 4px;
  background: var(--gigi-ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.gigi-web-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 108px;
  border-bottom: 1px solid rgba(190, 139, 67, 0.2);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
  transition: height 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.gigi-web-header.scrolled {
  height: 86px;
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 12px 38px rgba(58, 35, 29, 0.08);
}

.gigi-web-header-inner {
  width: min(1520px, calc(100% - clamp(30px, 6vw, 110px)));
  height: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 68px);
  margin-inline: auto;
}

.gigi-web-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 15px;
  color: var(--gigi-ink);
  text-decoration: none;
}

.gigi-web-logo-wrap {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(190, 139, 67, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(94, 53, 42, 0.08), inset 0 0 0 4px rgba(255, 255, 255, 0.72);
  transition: width 0.28s ease, height 0.28s ease;
}

.gigi-web-logo-wrap img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.gigi-web-header.scrolled .gigi-web-logo-wrap {
  width: 60px;
  height: 60px;
}

.gigi-web-header.scrolled .gigi-web-logo-wrap img {
  width: 55px;
  height: 55px;
}

.gigi-web-wordmark {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}

.gigi-web-wordmark b {
  color: var(--gigi-pink);
  font-family: var(--gigi-serif);
  font-size: clamp(30px, 2.3vw, 43px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.gigi-web-wordmark span {
  font-family: var(--gigi-serif);
  font-size: clamp(19px, 1.55vw, 28px);
  letter-spacing: -0.02em;
}

.gigi-web-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
}

.gigi-web-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #403736;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gigi-web-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 27px;
  left: 50%;
  height: 1px;
  background: var(--gigi-gold);
  content: "";
  transition: right 0.22s ease, left 0.22s ease;
}

.gigi-web-header.scrolled .gigi-web-nav a::after {
  bottom: 18px;
}

.gigi-web-nav a:hover,
.gigi-web-nav a.active {
  color: var(--gigi-pink);
}

.gigi-web-nav a:hover::after,
.gigi-web-nav a.active::after {
  right: 0;
  left: 0;
}

.gigi-web-header-book {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 10px;
  padding: 0 27px;
  border: 1px solid #c39655;
  border-radius: 3px;
  background: linear-gradient(135deg, #c99955, #ad7937);
  box-shadow: 0 10px 28px rgba(161, 112, 51, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gigi-web-header-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(161, 112, 51, 0.26);
}

.gigi-web-menu-button {
  display: none;
}

.gigi-web-hero {
  position: relative;
  min-height: min(740px, calc(100vh - 90px));
  isolation: isolate;
  overflow: hidden;
  background: #f7f0e8;
}

.gigi-web-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.002);
}

.gigi-web-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.92) 31%, rgba(255, 253, 249, 0.42) 50%, rgba(255, 253, 249, 0) 70%);
}

.gigi-web-hero-content {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 76px;
}

.gigi-web-hero-copy {
  width: min(630px, 48%);
  animation: gigi-web-hero-in 0.8s cubic-bezier(0.21, 0.78, 0.32, 1) both;
}

@keyframes gigi-web-hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gigi-web-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 23px;
  color: var(--gigi-gold);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.gigi-web-eyebrow span {
  font-size: 24px;
}

.gigi-web-hero h1 {
  margin: 0;
  color: #251a1b;
  font-family: var(--gigi-serif);
  font-size: clamp(52px, 5.15vw, 84px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.gigi-web-hero h1 em,
.gigi-web-about h2 em,
.gigi-web-contact h2 em {
  color: var(--gigi-pink);
  font-style: normal;
}

.gigi-web-gold-rule {
  width: min(425px, 80%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
  margin: 25px 0 20px;
  color: var(--gigi-gold);
}

.gigi-web-gold-rule span,
.gigi-web-heading-mark span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gigi-gold));
}

.gigi-web-gold-rule span:last-child,
.gigi-web-heading-mark span:last-child {
  background: linear-gradient(90deg, var(--gigi-gold), transparent);
}

.gigi-web-gold-rule b {
  font-size: 14px;
}

.gigi-web-hero-lead {
  margin: 0;
  color: #4f4542;
  font-size: clamp(16px, 1.35vw, 20px);
  letter-spacing: 0.01em;
  line-height: 1.65;
}

.gigi-web-hero-actions,
.gigi-web-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gigi-web-button {
  min-width: 188px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gigi-web-button span {
  font-size: 20px;
  font-weight: 400;
}

.gigi-web-button.primary {
  border-color: var(--gigi-pink);
  background: linear-gradient(135deg, #ef5271, #dc365c);
  box-shadow: 0 12px 30px rgba(217, 54, 90, 0.18);
  color: #fff;
}

.gigi-web-button.secondary {
  border-color: rgba(183, 128, 53, 0.68);
  background: rgba(255, 253, 249, 0.74);
  color: #a17032;
  backdrop-filter: blur(8px);
}

.gigi-web-button:hover {
  transform: translateY(-3px);
}

.gigi-web-button.primary:hover {
  box-shadow: 0 17px 38px rgba(217, 54, 90, 0.26);
}

.gigi-web-button.secondary:hover {
  background: #fff;
  box-shadow: 0 14px 34px rgba(74, 48, 39, 0.09);
}

.gigi-web-hero-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 21px;
  color: #625753;
  font-size: 13px;
}

.gigi-web-stars {
  color: #c99749;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.gigi-web-promo {
  width: fit-content;
  max-width: 100%;
  min-height: 47px;
  display: flex;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(190, 139, 67, 0.16);
  border-radius: 4px;
  background: rgba(255, 240, 238, 0.82);
  box-shadow: 0 10px 28px rgba(83, 43, 35, 0.07);
  color: var(--gigi-ink);
  font-size: 13px;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(9px);
}

.gigi-web-promo b {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 17px;
  background: linear-gradient(135deg, #c99b59, #b27d3a);
  color: #fff;
}

.gigi-web-promo span {
  padding: 0 18px;
}

.gigi-web-hero-wave {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: -78px;
  left: -4%;
  height: 145px;
  border-top: 2px solid rgba(188, 138, 67, 0.42);
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
  background: var(--gigi-ivory);
  transform: rotate(-1.2deg);
}

.gigi-web-section {
  position: relative;
  padding: clamp(80px, 8vw, 126px) 0;
}

.gigi-web-services {
  padding-top: 75px;
  background: linear-gradient(180deg, var(--gigi-ivory), #fdf9f4 92%);
}

.gigi-web-section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.gigi-web-section-heading > p {
  margin: 0 0 10px;
  color: var(--gigi-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.gigi-web-section-heading h2 {
  margin: 0;
  font-family: var(--gigi-serif);
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.gigi-web-heading-mark {
  width: 230px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  margin: 18px auto;
  color: var(--gigi-gold);
}

.gigi-web-section-heading > div:last-child {
  color: var(--gigi-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.gigi-web-section-heading.compact {
  max-width: 650px;
}

.gigi-web-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.gigi-web-service-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 260px 1fr;
  border: 1px solid rgba(189, 139, 67, 0.23);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(75, 45, 37, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gigi-web-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(75, 45, 37, 0.14);
}

.gigi-web-service-photo {
  overflow: hidden;
}

.gigi-web-service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gigi-web-service-card:hover .gigi-web-service-photo img {
  transform: scale(1.045);
}

.gigi-web-service-copy {
  position: relative;
  min-height: 275px;
  padding: 30px clamp(22px, 2.2vw, 34px) 27px;
}

.gigi-web-card-mark {
  position: absolute;
  top: -27px;
  right: 26px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 139, 67, 0.25);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(77, 48, 38, 0.12);
  color: var(--gigi-gold);
  font-size: 22px;
}

.gigi-web-service-copy > p:first-of-type {
  margin: 0 0 8px;
  color: var(--gigi-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.gigi-web-service-copy h3 {
  margin: 0;
  font-family: var(--gigi-serif);
  font-size: clamp(30px, 2.2vw, 39px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.gigi-web-card-line {
  width: 65px;
  height: 1px;
  margin: 14px 0;
  background: var(--gigi-gold);
}

.gigi-web-card-description {
  margin: 0;
  color: var(--gigi-ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.gigi-web-service-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  color: var(--gigi-pink-deep);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.gigi-web-service-copy > a span {
  transition: transform 0.2s ease;
}

.gigi-web-service-copy > a:hover span {
  transform: translateX(5px);
}

.gigi-web-service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 32px;
}

.gigi-web-service-tags span {
  padding: 10px 15px;
  border: 1px solid rgba(189, 139, 67, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.75);
  color: #6e5e56;
  font-size: 12px;
}

.gigi-web-gallery {
  padding-top: clamp(42px, 4vw, 64px);
  background: #fff;
}

.gigi-web-gallery .gigi-web-section-heading {
  margin-bottom: 28px;
}

.gigi-web-before-after {
  margin-bottom: 18px;
}

.gigi-web-before-after-title {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  align-items: center;
  gap: 14px;
  margin: 0 auto 12px;
  color: var(--gigi-gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gigi-web-before-after-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 139, 67, 0.56));
}

.gigi-web-before-after-title span:last-child {
  background: linear-gradient(90deg, rgba(189, 139, 67, 0.56), transparent);
}

.gigi-web-before-after figure {
  position: relative;
  width: 100%;
  min-height: 300px;
  max-height: 540px;
  aspect-ratio: 16 / 7;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background: linear-gradient(135deg, #fbf5f1, #f3e8e1);
  isolation: isolate;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.gigi-web-before-after img[data-gallery-image-id] {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.7s ease;
}

.gigi-web-before-after figure::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(33, 21, 20, 0.58), transparent 34%);
  content: "";
  opacity: 0.72;
}

.gigi-web-before-after figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-family: var(--gigi-serif);
  font-size: 23px;
}

.gigi-web-before-after figure[role="button"] {
  cursor: zoom-in;
  user-select: none;
  -webkit-touch-callout: none;
}

.gigi-web-before-after figure[role="button"]:focus-visible {
  outline: 3px solid var(--gigi-pink);
  outline-offset: 4px;
}

.gigi-web-before-after.is-changing figure {
  opacity: 0;
  transform: translateX(12px);
}

.gigi-web-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 16px;
}

.gigi-web-gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  isolation: isolate;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.gigi-web-gallery-grid.is-changing figure {
  opacity: 0;
  transform: translateX(-12px);
}

.gigi-web-gallery-grid.is-changing figure:nth-child(even) {
  transform: translateX(12px);
}

.gigi-web-gallery-grid figure.wide {
  grid-row: span 2;
}

.gigi-web-gallery-grid figure:nth-child(4n) {
  grid-column: span 2;
}

.gigi-web-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gigi-web-gallery-grid figure.wide img {
  object-position: 70% center;
}

.gigi-web-gallery-grid figure.uploaded-photo > img {
  object-position: left top;
}

.gigi-web-gallery-grid figure::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(33, 21, 20, 0.66), transparent 44%);
  content: "";
  opacity: 0.8;
}

.gigi-web-gallery-grid figure:hover img {
  transform: scale(1.045);
}

.gigi-web-gallery-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-family: var(--gigi-serif);
  font-size: 23px;
}

.gigi-web-gallery-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px solid rgba(189, 139, 67, 0.24);
  border-radius: 5px;
  background: #fffaf5;
  color: #79645a;
  font-family: var(--gigi-serif);
  font-size: 24px;
}

.gigi-web-gallery-grid figure[role="button"] {
  cursor: zoom-in;
  -webkit-touch-callout: none;
  user-select: none;
}

.gigi-web-gallery-grid figure[role="button"]:focus-visible {
  outline: 3px solid var(--gigi-pink);
  outline-offset: 4px;
}

.gigi-web-gallery-watermark {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  width: 82px;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  box-sizing: border-box;
  padding: 0;
  pointer-events: none;
}

.gigi-web-gallery-watermark[hidden] {
  display: none;
}

.gigi-web-gallery-grid .gigi-web-gallery-watermark img,
.gigi-web-gallery-grid figure:hover .gigi-web-gallery-watermark img,
.gigi-web-before-after .gigi-web-gallery-watermark img,
.gigi-web-before-after figure:hover .gigi-web-gallery-watermark img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transform: none;
  transition: none;
}

.gigi-web-gallery-view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.gigi-web-gallery-view-all {
  min-width: 220px;
  height: 52px;
  border: 1px solid rgba(189, 139, 67, 0.7);
  border-radius: 2px;
  background: #fff;
  color: #6d4d35;
  font-family: var(--gigi-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gigi-web-gallery-view-all span {
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  margin-left: 8px;
  place-items: center;
  border-radius: 50%;
  background: rgba(236, 58, 98, 0.1);
  color: var(--gigi-pink);
  letter-spacing: 0;
}

.gigi-web-gallery-view-all:hover {
  background: #bd8b43;
  color: #fff;
  transform: translateY(-2px);
}

.gigi-web-gallery-view-all:hover span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

body.gigi-web-gallery-open {
  overflow: hidden;
}

.gigi-web-gallery-modal[hidden] {
  display: none;
}

.gigi-web-gallery-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  padding: 26px;
  place-items: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gigi-web-gallery-modal.open {
  opacity: 1;
}

.gigi-web-gallery-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(20, 12, 12, 0.9);
}

.gigi-web-gallery-viewer {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100svh - 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #140e0d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.gigi-web-gallery-viewer > header {
  display: grid;
  grid-template-columns: 1fr auto 46px;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px 18px 12px 24px;
  background: #fffaf5;
}

.gigi-web-gallery-viewer > header small {
  display: block;
  color: #bd8b43;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gigi-web-gallery-viewer > header h2 {
  margin: 2px 0 0;
  color: #291b17;
  font-family: var(--gigi-serif);
  font-size: 25px;
  font-weight: 500;
}

.gigi-web-gallery-counter {
  color: #816e65;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gigi-web-gallery-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(189, 139, 67, 0.32);
  border-radius: 50%;
  background: #fff;
  color: #402d27;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.gigi-web-gallery-stage {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  min-height: min(62svh, 680px);
  padding: 18px 0;
  background: radial-gradient(circle at center, #2d211e 0%, #100b0a 72%);
}

.gigi-web-gallery-watermark.viewer {
  top: 14px;
  left: 14px;
  width: 82px;
  padding: 0;
}

.gigi-web-gallery-watermark.viewer img {
  width: 100%;
  height: auto;
  display: block;
}

.gigi-web-gallery-viewer-photo {
  grid-column: 2;
  position: relative;
  width: fit-content;
  max-width: 100%;
  max-height: min(58svh, 630px);
  justify-self: center;
  overflow: hidden;
}

.gigi-web-gallery-viewer-photo > img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(58svh, 630px);
  display: block;
  object-fit: contain;
}

.gigi-web-gallery-arrow {
  width: 48px;
  height: 48px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.gigi-web-gallery-arrow:hover,
.gigi-web-gallery-arrow:focus-visible {
  background: var(--gigi-pink);
}

.gigi-web-gallery-viewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 2px;
}

.gigi-web-gallery-viewer-caption {
  min-height: 42px;
  flex: 1 1 auto;
  padding: 8px 0 2px;
  color: #fff;
  font-family: var(--gigi-serif);
  font-size: 20px;
  text-align: center;
}

.gigi-web-gallery-download {
  min-width: 112px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(233, 183, 97, 0.72);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gigi-web-gallery-download:hover,
.gigi-web-gallery-download:focus-visible {
  background: #e9b761;
  color: #251a18;
}

.gigi-web-gallery-download:disabled {
  cursor: wait;
  opacity: 0.62;
}

.gigi-web-gallery-thumbnails {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 10px 18px 18px;
  scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

.gigi-web-gallery-thumb {
  width: 88px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #251a18;
  opacity: 0.58;
  padding: 0;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.gigi-web-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gigi-web-gallery-thumb.active,
.gigi-web-gallery-thumb:hover,
.gigi-web-gallery-thumb:focus-visible {
  border-color: #e9b761;
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .gigi-web-gallery-watermark:not(.viewer) {
    width: 64px;
  }

  .gigi-web-gallery-modal {
    padding: 0;
  }

  .gigi-web-gallery-viewer {
    width: 100%;
    max-height: 100svh;
    border: 0;
    border-radius: 0;
  }

  .gigi-web-gallery-viewer > header {
    grid-template-columns: 1fr auto 42px;
    min-height: 68px;
    padding: 9px 10px 9px 16px;
  }

  .gigi-web-gallery-viewer > header h2 {
    font-size: 21px;
  }

  .gigi-web-gallery-stage {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    min-height: 58svh;
    padding: 8px 0;
  }

  .gigi-web-gallery-watermark.viewer {
    top: 10px;
    left: 10px;
    width: 64px;
    padding: 0;
  }

  .gigi-web-gallery-viewer-photo,
  .gigi-web-gallery-viewer-photo > img {
    max-height: 56svh;
  }

  .gigi-web-gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }

  .gigi-web-gallery-viewer-caption {
    font-size: 18px;
  }

  .gigi-web-gallery-viewer-meta {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 6px 12px 2px;
  }

  .gigi-web-gallery-viewer-meta .gigi-web-gallery-viewer-caption {
    min-height: 30px;
    padding: 4px 0 0;
  }

  .gigi-web-gallery-download {
    width: 100%;
    height: 36px;
  }

  .gigi-web-gallery-thumbnails {
    padding-right: 10px;
    padding-left: 10px;
  }

  .gigi-web-gallery-thumb {
    width: 72px;
    height: 54px;
  }
}

.gigi-web-about {
  background: radial-gradient(circle at 12% 78%, rgba(231, 176, 148, 0.12), transparent 31%), linear-gradient(140deg, #f8f2ea, #fffaf5 52%, #fff);
}

.gigi-web-about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(440px, 1.14fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.gigi-web-about-visual {
  position: relative;
  padding: 0 0 58px 45px;
}

.gigi-web-about-visual::before {
  position: absolute;
  z-index: 0;
  top: 40px;
  right: 45px;
  bottom: 5px;
  left: 0;
  border: 1px solid rgba(189, 139, 67, 0.44);
  content: "";
}

.gigi-web-about-photo {
  position: relative;
  z-index: 1;
  height: 560px;
  border-radius: 4px;
  box-shadow: var(--gigi-shadow);
  overflow: hidden;
}

.gigi-web-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gigi-web-about-note {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: 0;
  width: min(300px, 70%);
  display: grid;
  gap: 5px;
  padding: 22px 25px;
  border-left: 3px solid var(--gigi-gold);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(72, 43, 36, 0.13);
}

.gigi-web-about-note b {
  font-family: var(--gigi-serif);
  font-size: 21px;
  font-weight: 400;
}

.gigi-web-about-note span {
  color: var(--gigi-ink-soft);
  font-size: 12px;
}

.gigi-web-about-copy .gigi-web-eyebrow,
.gigi-web-contact-copy .gigi-web-eyebrow {
  margin-bottom: 20px;
}

.gigi-web-about h2,
.gigi-web-contact h2 {
  margin: 0;
  font-family: var(--gigi-serif);
  font-size: clamp(45px, 4.7vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.gigi-web-about-copy > p:not(.gigi-web-eyebrow) {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--gigi-ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.gigi-web-values {
  display: grid;
  gap: 4px;
  margin-top: 32px;
}

.gigi-web-values article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gigi-line);
}

.gigi-web-values article > b {
  color: var(--gigi-gold);
  font-family: var(--gigi-serif);
  font-size: 25px;
  font-weight: 400;
}

.gigi-web-values h3 {
  margin: 0 0 4px;
  font-family: var(--gigi-serif);
  font-size: 22px;
  font-weight: 400;
}

.gigi-web-values p {
  margin: 0;
  color: var(--gigi-ink-soft);
  font-size: 13px;
}

.gigi-web-contact {
  isolation: isolate;
  overflow: hidden;
  background: #fffaf5;
}

.gigi-web-contact::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 250, 245, 0.98), rgba(255, 242, 242, 0.82));
  content: "";
}

.gigi-web-contact-glow {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -90px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(189, 139, 67, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 71, 103, 0.09), rgba(232, 71, 103, 0) 67%);
}

.gigi-web-contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(410px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.gigi-web-contact-copy > p:not(.gigi-web-eyebrow) {
  max-width: 540px;
  margin: 23px 0 0;
  color: var(--gigi-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.gigi-web-contact-card {
  display: grid;
  padding: 13px 30px;
  border: 1px solid rgba(189, 139, 67, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--gigi-shadow);
  backdrop-filter: blur(14px);
}

.gigi-web-contact-card > a,
.gigi-web-contact-hours {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gigi-line);
  color: var(--gigi-ink);
  text-decoration: none;
}

.gigi-web-contact-card > :last-child {
  border-bottom: 0;
}

.gigi-web-contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gigi-pink-soft);
  color: var(--gigi-pink-deep);
  font-size: 21px;
}

.gigi-web-contact-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--gigi-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gigi-web-contact-card b {
  display: block;
  font-family: var(--gigi-serif);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 400;
  line-height: 1.28;
}

.gigi-web-contact-card strong {
  color: var(--gigi-gold);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.gigi-web-contact-card a:hover strong {
  transform: translateX(5px);
}

.gigi-web-contact-hours {
  grid-template-columns: 50px minmax(0, 1fr);
}

.gigi-web-contact-hours p {
  margin: 4px 0 0;
  color: var(--gigi-ink-soft);
  font-size: 12px;
}

.gigi-web-footer {
  padding: 54px 0 22px;
  background: #251d1c;
  color: rgba(255, 255, 255, 0.76);
}

.gigi-web-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  padding-bottom: 40px;
}

.gigi-web-footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.gigi-web-footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.16));
}

.gigi-web-footer-brand div {
  display: grid;
}

.gigi-web-footer-brand b {
  color: #f05b7a;
  font-family: var(--gigi-serif);
  font-size: 26px;
  font-weight: 400;
}

.gigi-web-footer-brand span {
  font-family: var(--gigi-serif);
  font-size: 15px;
}

.gigi-web-footer nav {
  display: flex;
  gap: 27px;
}

.gigi-web-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  text-decoration: none;
}

.gigi-web-footer a:hover {
  color: #fff;
}

.gigi-web-footer-contact {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.gigi-web-footer-contact a {
  color: #fff;
  font-family: var(--gigi-serif);
  font-size: 20px;
}

.gigi-web-footer-contact span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.gigi-web-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.gigi-web-footer-bottom a {
  color: var(--gigi-gold-light);
}

.gigi-web-back-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 139, 67, 0.45);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.93);
  box-shadow: 0 10px 28px rgba(57, 35, 29, 0.14);
  color: var(--gigi-gold);
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gigi-web-back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-web-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-web-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .gigi-web-header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 26px;
  }

  .gigi-web-wordmark span {
    display: none;
  }

  .gigi-web-nav {
    gap: 26px;
  }

  .gigi-web-hero-copy {
    width: 54%;
  }

  .gigi-web-service-card {
    grid-template-rows: 230px 1fr;
  }

  .gigi-web-about-grid,
  .gigi-web-contact-grid {
    gap: 65px;
  }
}

@media (max-width: 980px) {
  html.gigi-web-document {
    scroll-padding-top: 82px;
  }

  .gigi-web-header,
  .gigi-web-header.scrolled {
    height: 82px;
  }

  .gigi-web-header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .gigi-web-logo-wrap,
  .gigi-web-header.scrolled .gigi-web-logo-wrap {
    width: 60px;
    height: 60px;
  }

  .gigi-web-logo-wrap img,
  .gigi-web-header.scrolled .gigi-web-logo-wrap img {
    width: 55px;
    height: 55px;
  }

  .gigi-web-wordmark b {
    font-size: 32px;
  }

  .gigi-web-menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 10px;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }

  .gigi-web-menu-button span {
    width: 100%;
    height: 1px;
    background: var(--gigi-ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .gigi-web-menu-button.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .gigi-web-menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .gigi-web-menu-button.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .gigi-web-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    height: auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px clamp(28px, 6vw, 60px) 22px;
    border-bottom: 1px solid var(--gigi-line);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 22px 45px rgba(67, 39, 32, 0.11);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-9px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .gigi-web-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gigi-web-nav a {
    height: auto;
    padding: 13px 0;
    border-bottom: 1px solid rgba(189, 139, 67, 0.11);
  }

  .gigi-web-nav a:last-child {
    border-bottom: 0;
  }

  .gigi-web-nav a::after {
    display: none;
  }

  .gigi-web-header-book {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }

  .gigi-web-hero {
    min-height: 690px;
  }

  .gigi-web-hero-image {
    object-position: 59% center;
  }

  .gigi-web-hero-shade {
    background: linear-gradient(90deg, rgba(255, 253, 249, 0.98), rgba(255, 253, 249, 0.93) 38%, rgba(255, 253, 249, 0.2) 78%);
  }

  .gigi-web-hero-copy {
    width: 62%;
  }

  .gigi-web-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gigi-web-service-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
  }

  .gigi-web-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 220px;
  }

  .gigi-web-gallery-grid figure.wide {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 350px;
  }

  .gigi-web-gallery-grid figure:nth-child(4n) {
    grid-column: auto;
  }

  .gigi-web-about-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 45px;
  }

  .gigi-web-about-visual {
    padding-left: 25px;
  }

  .gigi-web-about-photo {
    height: 500px;
  }

  .gigi-web-about-note {
    right: -10px;
  }

  .gigi-web-contact-grid {
    grid-template-columns: 1fr;
  }

  .gigi-web-contact-card {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .gigi-web-shell {
    width: min(100% - 36px, 620px);
  }

  .gigi-web-header-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .gigi-web-logo-wrap,
  .gigi-web-header.scrolled .gigi-web-logo-wrap {
    width: 54px;
    height: 54px;
  }

  .gigi-web-logo-wrap img,
  .gigi-web-header.scrolled .gigi-web-logo-wrap img {
    width: 50px;
    height: 50px;
  }

  .gigi-web-wordmark b {
    font-size: 29px;
  }

  .gigi-web-header-book {
    display: none;
  }

  .gigi-web-menu-button {
    grid-column: 2;
  }

  .gigi-web-hero {
    min-height: auto;
    display: grid;
    padding-bottom: 0;
    overflow: visible;
    background: #fffaf5;
  }

  .gigi-web-hero-image {
    position: relative;
    z-index: -1;
    grid-row: 2;
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: 71% center;
  }

  .gigi-web-hero-shade {
    display: none;
  }

  .gigi-web-hero-content {
    min-height: 560px;
    grid-row: 1;
    padding-top: 64px;
    padding-bottom: 70px;
    background: radial-gradient(circle at 82% 16%, rgba(231, 117, 137, 0.07), transparent 28%), #fffaf5;
  }

  .gigi-web-hero-copy {
    width: 100%;
  }

  .gigi-web-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  .gigi-web-hero h1 {
    font-size: clamp(48px, 14vw, 65px);
    line-height: 1;
  }

  .gigi-web-gold-rule {
    margin-top: 22px;
  }

  .gigi-web-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gigi-web-button {
    min-width: 0;
    min-height: 53px;
    gap: 12px;
    padding: 0 16px;
    font-size: 13px;
  }

  .gigi-web-promo {
    font-size: 11px;
  }

  .gigi-web-hero-wave {
    right: -10%;
    bottom: -70px;
    left: -10%;
    height: 100px;
  }

  .gigi-web-section {
    padding: 78px 0;
  }

  .gigi-web-services {
    padding-top: 75px;
  }

  .gigi-web-section-heading {
    margin-bottom: 32px;
  }

  .gigi-web-section-heading h2 {
    font-size: 42px;
  }

  .gigi-web-service-grid {
    grid-template-columns: 1fr;
  }

  .gigi-web-service-card,
  .gigi-web-service-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 245px 1fr;
  }

  .gigi-web-service-copy {
    min-height: 250px;
  }

  .gigi-web-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 250px;
  }

  .gigi-web-gallery-grid figure.wide,
  .gigi-web-gallery-grid figure:nth-child(4n) {
    grid-column: auto;
  }

  .gigi-web-gallery-grid figure.wide {
    min-height: 370px;
  }

  .gigi-web-about-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .gigi-web-about-visual {
    max-width: 520px;
    padding: 0 0 42px 20px;
  }

  .gigi-web-about-photo {
    height: 460px;
  }

  .gigi-web-about-note {
    right: -4px;
  }

  .gigi-web-about h2,
  .gigi-web-contact h2 {
    font-size: clamp(45px, 13vw, 61px);
  }

  .gigi-web-contact-grid {
    gap: 48px;
  }

  .gigi-web-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gigi-web-contact-card {
    padding: 10px 20px;
  }

  .gigi-web-contact-card > a,
  .gigi-web-contact-hours {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .gigi-web-contact-hours {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .gigi-web-contact-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .gigi-web-contact-card b {
    font-size: 17px;
  }

  .gigi-web-footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .gigi-web-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gigi-web-footer-contact {
    justify-items: center;
  }
}

@media (max-width: 430px) {
  .gigi-web-brand {
    gap: 9px;
  }

  .gigi-web-logo-wrap,
  .gigi-web-header.scrolled .gigi-web-logo-wrap {
    width: 49px;
    height: 49px;
  }

  .gigi-web-logo-wrap img,
  .gigi-web-header.scrolled .gigi-web-logo-wrap img {
    width: 46px;
    height: 46px;
  }

  .gigi-web-wordmark b {
    font-size: 26px;
  }

  .gigi-web-hero-content {
    min-height: 575px;
  }

  .gigi-web-hero h1 {
    font-size: 48px;
  }

  .gigi-web-hero-actions,
  .gigi-web-contact-actions {
    grid-template-columns: 1fr;
  }

  .gigi-web-button {
    width: 100%;
  }

  .gigi-web-hero-detail {
    display: grid;
    gap: 8px;
  }

  .gigi-web-hero-image {
    height: 330px;
  }

  .gigi-web-promo b {
    padding: 0 14px;
  }

  .gigi-web-section-heading h2 {
    font-size: 39px;
  }

  .gigi-web-about-visual {
    padding-left: 12px;
  }

  .gigi-web-about-photo {
    height: 400px;
  }

  .gigi-web-about-note {
    width: 82%;
  }

  .gigi-web-contact-card > a,
  .gigi-web-contact-hours {
    padding: 19px 0;
  }

  .gigi-web-footer-bottom {
    align-items: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.gigi-web-document {
    scroll-behavior: auto;
  }

  .gigi-web-hero-copy,
  [data-web-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gigi-web-service-card,
  .gigi-web-service-photo img,
  .gigi-web-before-after figure,
  .gigi-web-gallery-grid figure,
  .gigi-web-gallery-grid img,
  .gigi-web-button {
    transition: none;
  }
}
