/* ============================
	GOSALON WEBSITES AND LANDERS 2026
	BASE
============================ */


/* ============================
	COLOR PALETTE
============================ */

:root {
	--color-black: #0F0F0E;
	--color-brown: #4B3D35;
	--color-brown-dark: #332922;
	--color-brown-light: #75665D;
	--color-brown-soft: #F0EAE6;
	--color-charcoal: #292725;
	--color-cream: #E7DED9;
	--color-gold: #C4A166;
	--color-gold-dark: #96733C;
	--color-gold-light: #DDC89F;
	--color-gold-soft: #F6F0E5;
	--color-grey: #3A3A38;
	--color-grey-dark: #20201F;
	--color-grey-light: #D9D9D5;
	--color-grey-medium: #A4A49F;
	--color-grey-white: #F9F9F7;
	--color-grey-soft: #F6F6F4;
	--color-grey-feather: #FAFAF9;
	--color-grey-warm: #E9E6E1;
	--color-grey-warm-soft: #F8F6F3;
	--color-midgrey: #686863;
	--color-off-white: #FCFAF7;
	--color-green-soft: #C9DE57;
	--color-olive: #89905E;
	--color-olive-dark: #5E6248;
	--color-olive-deep: #454936;
	--color-olive-light: #BFC3AA;
	--color-olive-soft: #EEF0E7;
	--color-sand: #D8C4AF;
	--color-sand-dark: #B99E82;
	--color-sand-light: #E9DCCF;
	--color-sand-soft: #F7F1EB;
	--color-taupe: #A59586;
	--color-taupe-dark: #806F62;
	--color-taupe-deep: #66574D;
	--color-taupe-light: #D3C8C0;
	--color-taupe-soft: #F1EBE7;
	--color-white: #FFFFFF;
}


/* ============================
	SEMANTIC COLORS
============================ */

:root {
	--color-accent: var(--color-gold);
	--color-background: var(--color-off-white);
	--color-border: #DED9D4;
	--color-border-soft: rgba(102, 87, 77, .14);
	--color-border-strong: #C8C0B9;
	--color-error: #A94442;
	--color-focus: rgba(165, 149, 134, .22);
	--color-info: #4C6B77;
	--color-primary: var(--color-taupe);
	--color-primary-dark: #66574D;
	--color-primary-light: var(--color-taupe-light);
	--color-primary-soft: var(--color-taupe-soft);
	--color-secondary: var(--color-olive);
	--color-secondary-dark: var(--color-olive-dark);
	--color-secondary-light: var(--color-olive-light);
	--color-secondary-soft: var(--color-olive-soft);
	--color-success: #5E7350;
	--color-surface: var(--color-white);
	--color-surface-muted: var(--color-grey-soft);
	--color-text: var(--color-charcoal);
	--color-text-muted: var(--color-midgrey);
	--color-warning: #A8782D;
}


/* ============================
	TYPOGRAPHY
============================ */

:root {
	--font-family-heading: 'Mark Pro', Arial, sans-serif;
	--font-family-script: 'Alex Brush', 'Times New Roman', cursive;
	--font-family-text: 'Eina 01', Arial, sans-serif;
	--font-size-base: 1rem;
	--font-weight-bold: 700;
	--font-weight-heading: 800;
	--font-weight-normal: 400;
	--letter-spacing-heading: -.025rem;
	--line-height-base: 1.7;
}


/* ============================
	SHAPE
============================ */

:root {
	--radius-full: 999px;
	--radius-lg: 1.75rem;
	--radius-md: 1.25rem;
	--radius-sm: .75rem;
	--radius-xl: 2.5rem;
}


/* ============================
	SHADOWS
============================ */

:root {
	--shadow-focus: 0 0 0 .22rem var(--color-focus);
	--shadow-hover: 0 18px 42px rgba(51, 41, 34, .11);
	--shadow-medium: 0 12px 32px rgba(51, 41, 34, .08);
	--shadow-soft: 0 8px 24px rgba(51, 41, 34, .06);
	--shadow-soft-equal: 0 0 20px rgba(51, 41, 34, .06);
}


/* ============================
	TRANSITIONS
============================ */

:root {
	--transition: all .3s ease;
	--transition-fast: all .2s ease;
	--transition-slow: all .45s ease;
}


/* ============================
	RESET
============================ */

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

html {
	background-color: var(--color-background);
	scroll-behavior: smooth;
	scroll-padding-top: 7rem;
	text-size-adjust: 100%;
}

body {
	background-color: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-family-text);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-base);
	margin: 0;
	min-height: 100vh;
	overflow-x: hidden;
	padding: 0;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[hidden] {
	display: none !important;
}


/* ============================
	SELECTION
============================ */

::selection {
	background-color: var(--color-primary);
	color: var(--color-white);
}


/* ============================
	HEADINGS
============================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-brown-dark);
	font-family: var(--font-family-heading);
	font-style: normal;
	font-weight: var(--font-weight-heading);
	letter-spacing: var(--letter-spacing-heading);
	line-height: 1.15;
	margin: 0;
	text-wrap: balance;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.4rem;
}

h3 {
	font-size: 1.35rem;
}

h4 {
	font-size: 1.15rem;
}

h5 {
	font-size: 1rem;
}

h6 {
	font-size: .9rem;
}


/* ============================
	TEXT
============================ */

p {
	color: var(--color-text);
	font-family: var(--font-family-text);
	font-size: 1rem;
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-base);
	margin: 0;
	text-wrap: pretty;
}

small {
	font-size: .875rem;
	line-height: 1.55;
}

strong {
	font-weight: var(--font-weight-bold);
}

.script--text {
	color: var(--color-taupe-deep);
	font-family: var(--font-family-script);
	font-size: 2rem;
	font-weight: var(--font-weight-normal);
	letter-spacing: 0;
	line-height: 1.15;
}


/* ============================
	LINKS
============================ */

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

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

a:focus-visible {
	border-radius: .25rem;
	box-shadow: var(--shadow-focus);
	outline: 0;
}


/* ============================
	MEDIA
============================ */

figure {
	margin: 0;
}

iframe {
	border: 0;
	display: block;
	max-width: 100%;
}

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

picture {
	display: block;
}

svg {
	display: inline-block;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}


/* ============================
	LISTS
============================ */

ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}


/* ============================
	BUTTON RESET
============================ */

button {
	background: none;
	border: 0;
	box-shadow: none;
	color: inherit;
	cursor: pointer;
	font: inherit;
	outline: none;
	padding: 0;
}

button:focus-visible {
	box-shadow: var(--shadow-focus);
	outline: 0;
}


/* ============================
	BUTTONS
============================ */

.button {
	align-items: center;
	background-color: var(--color-primary);
	border: 1.5px solid var(--color-primary);
	border-radius: var(--radius-sm);
	box-shadow: none;
	color: var(--color-white);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	justify-content: center;
	letter-spacing: -.025rem;
	line-height: 1;
	min-height: 48px;
	padding: .85rem 1.1rem .7rem 1.1rem;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
}

.button span {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	line-height: 1;
}

.button:hover {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	box-shadow: var(--shadow-medium);
	color: var(--color-white);
	text-decoration: none;
	transform: translateY(-2px);
}

.button:focus-visible {
	box-shadow: var(--shadow-focus);
	outline: 0;
}

.button:active {
	box-shadow: none;
	transform: translateY(0);
}

.button:disabled,
.button.is-disabled {
	cursor: not-allowed;
	opacity: .55;
	pointer-events: none;
	transform: none;
}

.button--dark {
	background-color: var(--color-brown-dark);
	border-color: var(--color-brown-dark);
	color: var(--color-white);
}

.button--dark:hover {
	background-color: var(--color-black);
	border-color: var(--color-black);
	color: var(--color-white);
}

.button--full {
	width: 100%;
}

.button--ghost {
	background-color: var(--color-white);
	border-color: var(--color-primary);
	color: var(--color-taupe-deep);
}

.button--ghost:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

.button--light {
	background-color: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-primary-dark);
}

.button--light:hover {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: var(--color-white);
}

.button--sand {
	background-color: var(--color-sand);
	border-color: var(--color-sand);
	color: var(--color-brown-dark);
}

.button--sand:hover {
	background-color: var(--color-sand-dark);
	border-color: var(--color-sand-dark);
	color: var(--color-brown-dark);
}

.button--secondary {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-white);
}

.button--secondary:hover {
	background-color: var(--color-secondary-dark);
	border-color: var(--color-secondary-dark);
	color: var(--color-white);
}



/* ============================
	FORMS
============================ */

form {
	margin: 0;
}

fieldset {
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}

legend {
	color: var(--color-brown-dark);
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
	font-weight: var(--font-weight-heading);
	line-height: 1.25;
	margin-bottom: 1rem;
	padding: 0;
}

label {
	color: var(--color-brown-dark);
	display: inline-block;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.35;
	margin: 0 0 .5rem;
}

input:not([type='checkbox']):not([type='radio']),
select,
textarea {
	background-color: var(--color-white);
	border: 1.5px solid var(--color-border);
	border-radius: .95rem;
	box-shadow: none;
	color: var(--color-text);
	font-family: var(--font-family-text);
	font-size: 1.025rem;
	font-weight: var(--font-weight-normal);
	line-height: 1.5;
	outline: none;
	padding: .9rem 1rem;
	transition: var(--transition);
	width: 100%;
}

input:not([type='checkbox']):not([type='radio']):hover,
select:hover,
textarea:hover {
	border-color: var(--color-primary-light);
}

input:not([type='checkbox']):not([type='radio']):focus,
select:focus,
textarea:focus {
	background-color: var(--color-white);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-focus);
	color: var(--color-text);
	outline: none;
}

input:disabled,
select:disabled,
textarea:disabled {
	background-color: var(--color-grey-soft);
	color: var(--color-text-muted);
	cursor: not-allowed;
	opacity: .75;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='none' stroke='%23806F62' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m1 1 6 6 6-6'/%3E%3C/svg%3E");
	background-position: right 1rem center;
	background-repeat: no-repeat;
	background-size: 14px 8px;
	padding-right: 3rem;
}

textarea {
	min-height: 160px;
	resize: vertical;
}

::placeholder {
	color: var(--color-text-muted);
	opacity: .72;
}


/* ============================
	CHECKBOXES AND RADIOS
============================ */

input[type='checkbox'],
input[type='radio'] {
	accent-color: var(--color-primary);
	cursor: pointer;
	height: 1.1rem;
	margin: 0;
	width: 1.1rem;
}

.form--check {
	align-items: flex-start;
	display: flex;
	gap: .75rem;
}

.form--check label {
	cursor: pointer;
	font-family: var(--font-family-text);
	font-size: .975rem;
	font-weight: var(--font-weight-normal);
	line-height: 1.55;
	margin: -.15rem 0 0;
}


/* ============================
	FORM STATES
============================ */

.form--error {
	color: var(--color-error);
	display: block;
	font-size: .875rem;
	line-height: 1.45;
	margin-top: .45rem;
}

.form--help {
	color: var(--color-text-muted);
	display: block;
	font-size: .875rem;
	line-height: 1.5;
	margin-top: .45rem;
}

.is-invalid {
	border-color: var(--color-error) !important;
}

.is-invalid:focus {
	box-shadow: 0 0 0 .22rem rgba(169, 68, 66, .14) !important;
}

.is-valid {
	border-color: var(--color-success) !important;
}

.is-valid:focus {
	box-shadow: 0 0 0 .22rem rgba(94, 115, 80, .14) !important;
}


/* ============================
	TABLES
============================ */

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

td,
th {
	padding: .85rem 1rem;
	text-align: left;
	vertical-align: top;
}

th {
	color: var(--color-brown-dark);
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-bold);
}


/* ============================
	SECTIONS
============================ */

section {
	position: relative;
}

section[id] {
	scroll-margin-top: 7rem;
}

.section--label {
	color: var(--color-primary-dark);
	display: inline-flex;
	font-family: var(--font-family-heading);
	font-size: .9rem;
	font-weight: var(--font-weight-heading);
	letter-spacing: .075rem;
	line-height: 1;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.section--label--light {
	color: var(--color-white);
}

.section--label--secondary {
	color: var(--color-secondary-dark);
}


/* ============================
	IMAGE AND LOGO BOXES
============================ */

.img--box,
.logo--box {
	display: block;
	overflow: hidden;
	position: relative;
}

.img--box img,
.logo--box img {
	height: 100%;
	object-position: center center;
	width: 100%;
}

.img--box img {
	object-fit: cover;
}

.logo--box img {
	object-fit: contain;
}


/* ============================
	SURFACES
============================ */

.surface--dark {
	background-color: var(--color-brown-dark);
	color: var(--color-white);
}

.surface--light {
	background-color: var(--color-off-white);
}

.surface--olive {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.surface--sand {
	background-color: var(--color-sand-soft);
}

.surface--taupe {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.surface--white {
	background-color: var(--color-white);
}


/* ============================
	TEXT HELPERS
============================ */

.text--accent {
	color: var(--color-accent);
}

.text--balance {
	text-wrap: balance;
}

.text--dark {
	color: var(--color-brown-dark);
}

.text--muted {
	color: var(--color-text-muted);
}

.text--pretty {
	text-wrap: pretty;
}

.text--primary {
	color: var(--color-primary-dark);
}

.text--secondary {
	color: var(--color-secondary-dark);
}

.text--white {
	color: var(--color-white);
}


/* ============================
	GENERAL HELPERS
============================ */

.overflow--hidden {
	overflow: hidden;
}

.position--relative {
	position: relative;
}

.reveal--animating {
	transition: none !important;
}

.visually-hidden {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}


/* ============================
	ACCESSIBILITY
============================ */

:focus:not(:focus-visible) {
	outline: 0;
}

:focus-visible {
	outline: 0;
}

.skip--link {
	background-color: var(--color-brown-dark);
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	color: var(--color-white);
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-bold);
	left: 1rem;
	padding: .85rem 1.15rem;
	position: fixed;
	top: 0;
	transform: translateY(-120%);
	transition: var(--transition);
	z-index: 9999;
}

.skip--link:focus {
	color: var(--color-white);
	transform: translateY(0);
}


/* ============================
	REDUCED MOTION
============================ */

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto;
	}

	*,
	*::after,
	*::before {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

}


/* END CSS */