@charset "UTF-8";
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   Design Tokens — Carl Cronin Creative
   ========================================================================== */
/* === Fonts === */
/* === Font Sizes === */
/* === Spacing Scale === */
/* === Radii === */
/* === Colors === */
/* === Shadows === */
/* === Z-Index Layers === */
/* === Breakpoints === */
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _mixins.scss — Reusable Logic & Responsive Helpers
   ========================================================================== */
/* === Media Queries === */
/* === Aspect Ratio Helper === */
/* === Fluid Type (Clamp) === */
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _helpers.scss — Utility Classes (margin, padding, visibility)
   ========================================================================== */
/* === Margin Utilities === */
.mt-0 {
  margin-top: 0 !important;
}

.mt-sm {
  margin-top: 1rem !important;
}

.mt-md {
  margin-top: 2rem !important;
}

.mt-lg {
  margin-top: 4rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-sm {
  margin-bottom: 1rem !important;
}

.mb-md {
  margin-bottom: 2rem !important;
}

.mb-lg {
  margin-bottom: 4rem !important;
}

.my-0 {
  margin-block: 0 !important;
}

.my-md {
  margin-block: 2rem !important;
}

.mx-auto {
  margin-inline: auto !important;
}

/* === Padding Utilities === */
.pt-0 {
  padding-top: 0 !important;
}

.pt-md {
  padding-top: 2rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-lg {
  padding-bottom: 4rem !important;
}

.px-sm {
  padding-inline: 1rem !important;
}

.px-md {
  padding-inline: 2rem !important;
}

/* === Text Alignment === */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/* === Visibility === */
.hide {
  display: none !important;
}

@media (max-width: 480px) {
  .hide-sm {
    display: none !important;
  }
}

.show-sm {
  display: none;
}
@media (max-width: 480px) {
  .show-sm {
    display: block !important;
  }
}

/* === Display Shortcuts === */
.flex {
  display: flex !important;
}

.flex-col {
  flex-direction: column !important;
}

.items-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center !important;
}

/* === Mobile Nav === */
body.nav-open {
  overflow: hidden;
}

/* === 2. Base & Resets === */
/* ==========================================================================
   _reset.scss — CSS Reset + Baseline Fixes
   Built for: Carl Cronin Creative
   Source inspiration: Josh Comeau, Andy Bell, Eric Meyer resets
   ========================================================================== */
/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Remove default button styles */
button {
  all: unset;
  cursor: pointer;
}

/* Anchor tag reset */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}

/* Image & media elements — responsive by default */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Exception: Allow fixed-size images to opt out */
img.about-portrait,
img.about-portrait--small {
  max-width: none;
  height: auto;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Set default focus styles */
:focus-visible {
  outline: 2px dashed #aaa;
  outline-offset: 3px;
}

/* Remove all animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _typography.scss — Editorial Type System
   Built for: Carl Cronin Creative
   Inspired by: Kinfolk, Noah Kalina, Olivia Rae James
   ========================================================================== */
/* === Base Typography === */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  background-color: #fefcf9;
  line-height: 1.7;
  letter-spacing: 0.015em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* === Headings === */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}

/* === Paragraphs === */
p {
  font-size: 1rem;
  max-width: 64ch;
  margin-bottom: 2rem;
}
p:last-child {
  margin-bottom: 0;
}

/* === Lists === */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

li + li {
  margin-top: 0.25em;
}

/* === Links === */
a {
  color: #856a5d;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}
a:hover {
  border-color: #856a5d;
  opacity: 0.85;
}
a:focus {
  outline: 2px solid #856a5d;
  outline-offset: 2px;
}

/* === Blockquotes === */
blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #5f5f5f;
  border-left: 4px solid #eae6de;
  padding-left: 2rem;
  margin: 4rem 0;
  line-height: 1.6;
}

/* === Captions / Figcaptions === */
figcaption {
  font-size: 0.875rem;
  font-style: italic;
  color: #5f5f5f;
  font-family: "Manrope", sans-serif;
  margin-top: 0.5rem;
  max-width: 60ch;
  line-height: 1.5;
}

/* === Editorial Quote Block (Full-Width) === */
.editorial-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #5f5f5f;
  text-align: center;
  padding: 4rem 1rem;
  max-width: 720px;
  margin: 6rem auto;
  border-left: none;
}

/* === Call to Action / Link CTA === */
.link-cta {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #856a5d;
  text-decoration: none;
  border-bottom: 1px solid #856a5d;
  transition: opacity 0.3s ease;
}
.link-cta:hover {
  opacity: 0.8;
}

/* === Small Text / Fine Print === */
small {
  font-size: 0.75rem;
  color: #5f5f5f;
  line-height: 1.4;
}

/* === Visually Hidden for Accessibility === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _layout.scss — Page Structure & Rhythm
   Built for: Carl Cronin Creative
   ========================================================================== */
/* === Vertical Rhythm === */
section {
  padding-block: clamp(2.5rem, 6vw, 6rem);
}
section.tight {
  padding-block: clamp(2rem, 4vw, 4rem);
}
section.flush {
  padding-block: clamp(1.5rem, 3vw, 2rem);
}
section.bleed-top {
  padding-top: 0;
}
section.bleed-bottom {
  padding-bottom: 0;
}

/* === Max Width Containers === */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.container.narrow {
  max-width: 760px;
}
.container.tight {
  max-width: 640px;
}
.container.centered {
  text-align: center;
}
@media (max-width: 600px) {
  .container {
    padding-inline: 1rem;
  }
}

/* === Scroll Anchor Fix for Sticky Header === */
.scroll-anchor {
  scroll-margin-top: 5rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

/* === Alignment Utilities === */
.align-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

/* ==========================================================================
   Fixed White Side Framing Columns (Optional)
   ========================================================================== */
.frame-left,
.frame-right {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 120px;
  background-color: #fefcf9;
  z-index: 5;
  pointer-events: none;
}

.frame-left {
  left: 0;
}

.frame-right {
  right: 0;
}

/* ==========================================================================
   Layout Padding Adjustment (match site-logo width)
   ========================================================================== */
body {
  padding-left: 0px;
  padding-right: 0;
  background-color: #fefcf9;
}

/* Optional: constrain content area spacing if using layout modules */
.site-main {
  position: relative;
  z-index: 10;
  background-color: transparent;
}

/* === Grid System (Optional) === */
.grid {
  display: grid;
  gap: 4rem;
}
.grid.two-col {
  grid-template-columns: 1fr 1fr;
}
.grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.grid.centered {
  place-items: center;
}
.grid.auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid.auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.grid.gap-sm {
  gap: 1rem;
}
.grid.gap-md {
  gap: 2rem;
}
.grid.gap-xl {
  gap: 6rem;
}

/* === Flow Utility === */
.flow > * + * {
  margin-top: var(--flow-space, 2rem);
}

/* ==========================================================================
   Sticky Header Navigation
   ========================================================================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fefcf9;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eae6de;
}

/* === Logo Inline Styles === */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 28px;
  margin-right: 1rem;
}
.logo .logo-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === Responsive Header Enhancements for Mobile === */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 2rem;
  }
  .logo {
    margin-bottom: 1rem;
  }
  .logo img {
    height: 24px;
  }
  .logo .logo-text {
    font-size: 0.9rem;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
    z-index: 110;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-toggle .burger {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    position: relative;
    display: block;
  }
  .nav-toggle .burger::before,
  .nav-toggle .burger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    left: 0;
  }
  .nav-toggle .burger::before {
    top: -8px;
  }
  .nav-toggle .burger::after {
    top: 8px;
  }
}
.nav-toggle {
  display: none;
}

/* === 3. Components === */
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _logo-stack.scss — Left Vertical Identity Column
   ========================================================================== */
.site-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  background-color: #fefcf9;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-block: 4rem;
  padding-inline: 1rem;
  border-right: 1px solid #eae6de;
  pointer-events: none;
}
.site-logo .logo-stack-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-transform: uppercase;
  text-align: center;
  pointer-events: all;
  text-decoration: none;
  line-height: 1.6;
  max-height: 80vh;
  white-space: nowrap;
  opacity: 0.9;
}
.site-logo img {
  width: 32px;
  height: auto;
  pointer-events: all;
  margin-top: auto;
  opacity: 0.8;
}

/* === Mobile: Hide Vertical Branding === */
@media (max-width: 768px) {
  .site-logo {
    display: none;
  }
}
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _nav.scss — Navigation System
   Built for: Carl Cronin Creative
   ========================================================================== */
/* === Fixed Right Vertical Nav (Legacy / Desktop Edge Nav) === */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 120px;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: all;
}
.site-nav li {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.site-nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}
.site-nav a:hover {
  color: #856a5d;
}
.site-nav a.active {
  color: #856a5d;
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
}
/* === Top Nav — Desktop Only === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}
.nav-links a,
.nav-links .dropdown-toggle {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links .dropdown-toggle:hover {
  text-decoration: underline;
}
.nav-links .nav-dropdown {
  position: relative;
}
.nav-links .nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 240px;
  padding: 0.5rem 0;
  background-color: #fefcf9;
  border: 1px solid #eae6de;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nav-links .nav-dropdown .dropdown-menu li {
  list-style: none;
}
.nav-links .nav-dropdown .dropdown-menu li a {
  display: block;
  padding: 0.65rem 2rem;
  font-size: 0.9rem;
  color: #1a1a1a;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.nav-links .nav-dropdown .dropdown-menu li a:hover {
  background-color: #fcf9f3;
  color: #856a5d;
}
.nav-links .nav-dropdown.open .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* === Mobile Nav Toggle Button === */
.nav-toggle {
  display: none;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle .burger {
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  display: block;
  position: relative;
  transition: background-color 0.3s ease;
}
.nav-toggle .burger::before, .nav-toggle .burger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  transition: transform 0.3s ease;
}
.nav-toggle .burger::before {
  top: -8px;
}
.nav-toggle .burger::after {
  bottom: -8px;
}
.nav-toggle.open .burger {
  background-color: transparent;
}
.nav-toggle.open .burger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open .burger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Mobile Nav Drawer === */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fefcf9;
  z-index: 1000;
  padding: 6rem 2rem;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
.mobile-nav a {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  color: #1a1a1a;
  text-transform: uppercase;
}
.mobile-nav a:hover {
  color: #856a5d;
}
.mobile-nav.open {
  display: flex;
}

/* === Responsive Layout Adjustments === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _button.scss — Reusable Button Styles
   Built for: Carl Cronin Creative
   ========================================================================== */
/* === Base Button === */
.button {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  background-color: #856a5d;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.button:hover {
  background-color: rgb(114.9920353982, 91.6477876106, 80.4079646018);
  transform: translateY(-1px);
}
.button:active {
  transform: scale(0.98);
}

/* === Outline Button Variant === */
.button-outline {
  background-color: transparent;
  color: #856a5d;
  border: 1px solid #856a5d;
}
.button-outline:hover {
  background-color: #856a5d;
  color: white;
}

/* === Ghost (Text-Only) Variant === */
.button-ghost {
  background-color: transparent;
  border: none;
  color: #856a5d;
  padding: 0.25rem 0;
  font-weight: 500;
}
.button-ghost:hover {
  opacity: 0.7;
  border-bottom: 1px solid #856a5d;
}

/* === Small Variant === */
.button-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _cta.scss — Link CTAs / Text-Based Microinteractions + Buttons
   Built for: Carl Cronin Creative
   ========================================================================== */
/* === Text-Based Link CTA === */
.link-cta {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #856a5d;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}
.link-cta:hover {
  opacity: 0.75;
}
.link-cta::after {
  content: "→";
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 0.3s ease;
}
.link-cta:hover::after {
  transform: translateX(3px);
}
.link-cta.muted {
  color: #5f5f5f;
}
.link-cta.muted:hover {
  opacity: 0.6;
}

/* === Full Button CTA === */
.cta-button {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #856a5d;
  color: #856a5d;
  background-color: transparent;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin: 1.25rem auto 0 auto;
  text-align: center;
}
.cta-button:hover {
  background-color: #856a5d;
  color: #fefcf9;
}

/* === Container for CTA Block (Optional Utility for Centered Layouts) === */
.cta-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem auto;
}
.cta-block .cta-button {
  display: inline-block;
}
.cta-block .secondary-tagline {
  font-size: 0.95rem;
  color: #5f5f5f;
  margin-top: 0.75rem;
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
.scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  height: 40px;
}
.scroll-cue .arrow {
  width: 18px;
  height: 18px;
  border-left: 2px solid #5f5f5f;
  border-bottom: 2px solid #5f5f5f;
  transform: rotate(-45deg);
  animation: scroll-down 2s infinite ease-in-out;
  opacity: 0.7;
}

@keyframes scroll-down {
  0% {
    transform: translateY(0) rotate(-45deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px) rotate(-45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(-45deg);
    opacity: 0.6;
  }
}
@media (max-width: 480px) {
  .scroll-cue {
    display: none;
  }
}
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* === 4. Sections === */
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _hero.scss — Fullscreen Hero Section
   For: Carl Cronin Creative — Emotional, Cinematic, Warm
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #fefcf9;
  overflow: hidden;
}
.hero-section .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.6s ease;
}
.hero-section .hero-text {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 800px;
  text-align: center;
  background-color: rgba(254, 252, 249, 0.4);
  backdrop-filter: blur(2px);
  border-radius: 4px;
}
.hero-section .hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.25;
  color: #1a1a1a;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0;
}
.hero-section .hero-text p {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  color: #5f5f5f;
  margin-top: 2rem;
  line-height: 1.6;
  max-width: 60ch;
}

/* === Mobile Layout === */
@media (max-width: 768px) {
  .hero-text {
    padding: 2rem 1rem;
    border-radius: 0;
    background-color: rgba(254, 252, 249, 0.65);
    backdrop-filter: blur(1px);
  }
  .hero-text h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
  .hero-text p {
    font-size: 1rem;
  }
}
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _about.scss — About / Bio Section
   Built for: Carl Cronin Creative
   ========================================================================== */
.about-intro {
  background-color: #fcf9f3;
  padding-block: 4rem;
}
.about-intro .about-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 2rem;
  overflow-x: hidden;
}
.about-intro .about-portrait {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
.about-intro .about-portrait:hover {
  transform: scale(1.02);
}
.about-intro .about-text {
  flex: 1 1 300px;
  max-width: 600px;
  margin: 0 auto;
}
.about-intro .about-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.about-intro .about-text .link-cta {
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid #856a5d;
}
.about-intro .about-text .link-cta:hover {
  opacity: 0.8;
}

/* ========= Responsive Adjustments ========= */
@media (max-width: 768px) {
  .about-intro {
    padding-block: 2rem;
  }
  .about-inner {
    flex-direction: column;
    text-align: center;
    padding-inline: 1rem;
  }
  .about-portrait {
    width: 90vw;
    max-width: 280px;
    height: auto;
    margin-bottom: 1rem;
  }
  .about-text {
    max-width: 90vw;
    margin-inline: auto;
  }
  .about-text p {
    font-size: 1rem;
  }
}
/* ========= Final Standalone Portrait Section ========= */
.about-final {
  text-align: center;
  padding-block: 4rem;
}
.about-final .about-portrait--small {
  width: 90vw;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-inline: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.about-final .about-portrait--small:hover {
  transform: scale(1.02);
}
.about-final .quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: #5f5f5f;
  margin-top: 1rem;
}

.about-detail-section {
  padding-block: 6rem;
  padding-inline: 2rem;
  max-width: 800px;
  margin-inline: auto;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
}
.about-detail-section h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _portfolio.scss — Narrative Grid Layout
   Built for: Carl Cronin Creative
   ========================================================================== */
.portfolio-section {
  padding-block: 6rem;
  padding-inline: 2rem;
}
.portfolio-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin-inline: auto;
}
.portfolio-section .story-block {
  position: relative;
}
.portfolio-section .story-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: block;
}
.portfolio-section .story-block figcaption {
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 0.875rem;
  color: #5f5f5f;
}
.portfolio-section .story-block.small {
  grid-column: span 1;
}
.portfolio-section .story-block.medium {
  grid-column: span 2;
}
.portfolio-section .story-block.wide {
  grid-column: span 3;
}
.portfolio-section .story-block.tall {
  grid-row: span 2;
}
.portfolio-section .editorial-quote {
  grid-column: 1/-1;
  text-align: center;
  font-style: italic;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", serif;
  color: #5f5f5f;
  padding: 4rem 1rem;
  max-width: 720px;
  margin-inline: auto;
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 768px) {
  .portfolio-section .container {
    grid-template-columns: 1fr;
  }
  .portfolio-section .story-block {
    grid-column: span 1 !important;
    grid-row: auto !important;
    margin-bottom: 4rem;
  }
  .portfolio-section .story-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }
  .portfolio-section .story-block.mobile-inset {
    max-width: 90%;
    margin-inline: auto;
  }
  .portfolio-section .story-block.mobile-align-left {
    margin-left: 0;
    margin-right: auto;
  }
  .portfolio-section .story-block.mobile-align-right {
    margin-right: 0;
    margin-left: auto;
  }
  .portfolio-section .story-block.mobile-small {
    max-width: 80%;
  }
  .portfolio-section .story-block.mobile-wide {
    max-width: 100%;
  }
  .portfolio-section .editorial-quote {
    padding: 2rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
    margin: 4rem 0;
    max-width: 90%;
    margin-inline: auto;
  }
}
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _services.scss — Service Sections (Homepage + Full Pages)
   Built for: Carl Cronin Creative
   ========================================================================== */
/* --------------------------------------------
   Homepage #services Section
--------------------------------------------- */
.services-section {
  background-color: #fcf9f3;
  padding-block: 6rem;
}
.services-section .container {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.services-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: left;
}
.services-section .service-block {
  margin-bottom: 4rem;
}
.services-section .service-block p {
  margin-bottom: 0.5rem;
}
.services-section .service-block .service-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #856a5d;
  text-decoration: none;
}
.services-section .service-block .service-link:hover {
  text-decoration: underline;
}
.services-section .service-block .service-link .scroll-anchor {
  display: block;
  height: 1px;
  margin-top: -26rem;
  visibility: hidden;
}

/* Mobile-specific adjustments for homepage */
@media (max-width: 768px) {
  .services-section {
    text-align: center;
    padding-inline: 1rem;
  }
  .services-section h2 {
    text-align: center;
    font-size: 1.25rem;
  }
  .services-section .service-block {
    margin-bottom: 6rem;
  }
  .services-section .service-block p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .services-section .service-block .service-link {
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
  }
  .services-section .services-list {
    padding-left: 0;
  }
  .services-section .services-list li {
    padding-left: 0;
  }
  .services-section .services-list li::before {
    display: none;
  }
}
/* ==========================================================================
   Service Page Layouts (e.g., branding.html, weddings.html)
   ========================================================================== */
.section-pad {
  padding-block: 6rem;
}
@media (max-width: 768px) {
  .section-pad {
    padding-block: 4rem;
  }
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.25rem;
    text-align: center;
  }
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #5f5f5f;
}
@media (max-width: 768px) {
  .lead {
    font-size: 1rem;
  }
}

.package {
  margin-bottom: 4rem;
}
.package h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.package ul {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.package ul li {
  margin-bottom: 0.5rem;
}
.package blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: #5f5f5f;
}

.service-image {
  margin-block: 2rem;
}
.service-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.service-image figcaption {
  font-size: 0.85rem;
  color: #5f5f5f;
  margin-top: 0.5rem;
  text-align: center;
}

.divider {
  border: none;
  height: 1px;
  background-color: #eae6de;
  margin-block: 4rem;
}

.section-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5f5f5f;
  margin-bottom: 0.5rem;
}

.add-ons,
.booking-process,
.what-you-get {
  margin-bottom: 2rem;
}
.add-ons li,
.booking-process li,
.what-you-get li {
  margin-bottom: 0.5rem;
}

.cta-area {
  text-align: center;
  margin-top: 4rem;
}
.cta-area .button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #856a5d;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}
.cta-area .button:hover {
  background-color: rgb(102.9867256637, 82.0796460177, 72.0132743363);
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _contact.scss — Inquiry / CTA Section
   Built for: Carl Cronin Creative
   ========================================================================== */
.contact-section {
  background-color: #fcf9f3;
  padding-block: 6rem;
}
.contact-section .container {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.contact-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.contact-section .contact-intro {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
}
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  padding: 0.5rem;
  font-family: "Manrope", sans-serif;
  border: 1px solid #eae6de;
  border-radius: 4px;
  background-color: #fefcf9;
  color: #1a1a1a;
}
.contact-section .contact-form .button {
  margin-top: 1rem;
  align-self: flex-start;
}
.contact-section .alt-contact {
  margin-top: 2rem;
  font-size: 0.9rem;
  font-style: italic;
}
.contact-section .alt-contact a {
  color: #856a5d;
  text-decoration: underline;
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _footer.scss — Site Footer
   Built for: Carl Cronin Creative
   ========================================================================== */
.site-footer {
  background-color: #fcf9f3;
  padding-block: 2rem;
  font-size: 0.875rem;
  color: #5f5f5f;
  text-align: center;
}
.site-footer .container {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.site-footer p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _faq.scss — Expandable FAQ Section
   Built for: Carl Cronin Creative
   ========================================================================== */
.faq-section {
  background-color: #fcf9f3;
  padding-block: 6rem;
}
.faq-section .faq-inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.faq-section .faq-block {
  border-bottom: 1px solid #eae6de;
  padding-block: 1rem;
}
.faq-section .faq-block .faq-question {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  background: none;
  border: none;
  color: #1a1a1a;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.5rem;
}
.faq-section .faq-block .faq-answer {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #5f5f5f;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section .faq-block.open .faq-answer {
  margin-top: 0.25rem;
}
.faq-section .faq-block ul, .faq-section .faq-block ol {
  padding-left: 1.25rem;
  margin: 0;
}
.faq-section .faq-block p, .faq-section .faq-block li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.faq-section .faq-cta {
  margin-top: 4rem;
  text-align: center;
}
.faq-section .faq-cta p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.faq-section .faq-cta a {
  font-weight: 600;
  color: #856a5d;
  text-decoration: underline;
}
.faq-section .faq-cta a:hover {
  opacity: 0.85;
}

/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _wedding.scss — Weddings Service Page
   Carl Cronin Creative
   ========================================================================== */
.wedding-page {
  background-color: #fcf9f3;
  padding-block: 6rem;
  /* ===============================
     Typography & Headings
     =============================== */
  /* ===============================
     Visuals
     =============================== */
  /* ===============================
     Sections
     =============================== */
  /* ===============================
     Subtle Scroll Animations
     =============================== */
}
.wedding-page .container {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.wedding-page h1.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.wedding-page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  margin-top: 6rem;
}
.wedding-page h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #856a5d;
  margin-top: 6rem;
  margin-bottom: 0.5rem;
}
.wedding-page .section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f5f5f;
  margin-bottom: 0.5rem;
  margin-top: 4rem;
}
.wedding-page p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.wedding-page ul,
.wedding-page ol {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  margin-bottom: 6rem;
  padding-left: 1.5rem;
}
.wedding-page ul li,
.wedding-page ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.wedding-page blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: #5f5f5f;
  margin: 2rem 0 6rem;
  padding-left: 2rem;
  border-left: 2px solid #856a5d;
}
.wedding-page .service-image {
  margin-block: 8rem;
}
.wedding-page .service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.wedding-page .service-image .image-caption {
  font-size: 0.875rem;
  font-style: italic;
  color: #5f5f5f;
  margin-top: 0.5rem;
}
.wedding-page .add-ons,
.wedding-page .booking-process,
.wedding-page .what-you-get,
.wedding-page .package {
  margin-top: 2rem;
}
.wedding-page .divider {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
  margin-block: 4rem;
}
.wedding-page .margin-tight {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.wedding-page .section-break {
  margin-top: 8rem;
  margin-bottom: 6rem;
}
.wedding-page .cta-area {
  text-align: center;
}
.wedding-page .cta-area .button {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.wedding-page .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.wedding-page .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   Responsive — Mobile Optimization
   =============================== */
@media (max-width: 768px) {
  .wedding-page .container {
    padding-inline: 1rem;
  }
  .wedding-page h1,
  .wedding-page h2,
  .wedding-page .section-label {
    text-align: center;
  }
  .wedding-page blockquote {
    padding-left: 1rem;
  }
  .wedding-page .cta-area {
    margin-top: 4rem;
  }
  .wedding-page .service-image {
    margin-block: 6rem;
  }
}
/* ==========================================================================
   main.scss — Master SCSS Entry Point
   For Carl Cronin Creative (Vertical Scroll MVP)
   ========================================================================== */
/* === 1. Utilities & Tokens === */
/* ==========================================================================
   _about-page.scss — About Page
   Carl Cronin Creative
   ========================================================================== */
.about-page {
  background-color: #fefcf9;
  padding-block: 6rem;
  /* ===============================
     Typography & Layout
     =============================== */
  /* ===============================
     Portrait Section
     =============================== */
  /* ===============================
     Mission Statement
     =============================== */
  /* ===============================
     Animations
     =============================== */
}
.about-page .container {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 4rem;
}
@media (max-width: 768px) {
  .about-page .container {
    padding-inline: 2rem;
  }
}
.about-page h1.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4rem;
  text-align: left;
}
@media (max-width: 768px) {
  .about-page h1.page-title {
    text-align: center;
  }
}
.about-page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #856a5d;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-page h2 {
    text-align: center;
  }
}
.about-page p {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.about-page .bio-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .about-page .bio-intro {
    font-size: 1rem;
  }
}
.about-page blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: #5f5f5f;
  margin: 4rem 0 6rem;
  padding-left: 2rem;
  border-left: 2px solid #856a5d;
}
@media (max-width: 768px) {
  .about-page blockquote {
    padding-left: 1rem;
  }
}
.about-page .portrait {
  margin-block: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-page .portrait img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-page .portrait .caption {
  font-size: 0.875rem;
  font-style: italic;
  color: #5f5f5f;
  margin-top: 1rem;
  max-width: 500px;
}
@media (max-width: 768px) {
  .about-page .portrait img {
    max-width: 100%;
  }
  .about-page .portrait .caption {
    max-width: 90%;
  }
}
.about-page .mission {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 4rem;
  margin-top: 6rem;
}
.about-page .mission h2 {
  text-align: left;
}
@media (max-width: 768px) {
  .about-page .mission h2 {
    text-align: center;
  }
}
.about-page .mission p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.about-page .mission .cta-button {
  margin-top: 2rem;
  display: inline-block;
}
.about-page .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.about-page .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=main.css.map */
